由买买提看人间百态

topics

全部话题 - 话题: uniformity
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
s*****5
发帖数: 31
1
看看一些评论:
Jared Keller
JROTC freshman Peter Wang may not have actually served in the U.S. armed
forces, but that's not stopping the members of r/military from arranging a
uniformed presence at his funeral。
septembergurl
What a loss to our country and to his family this wonderful young man is.
Laocoon
Well done Cadet...you've honorably executed your duty...and gave all of your
tomorrows to do it. We all thank you...
To fallen soldiers let us sing
Where no rockets fly nor bullets wing
Our broken bro... 阅读全帖
s******y
发帖数: 17
2
这个是OHIO的法律~你在google上搜索 ohio revised code 就能看到~估计是每个法律
的编号~~
我注意的这个法律主要是因为我咨询过学校的律师~因为当时警察的report上写他当时
正在回家~
学校的律师就叫我上庭的时候问他当时是不是在on duty 然后给我copy 4549.15 是关
于执勤的
uniform的问题,律师说只要他的uniform不全(任何东西都要在包括警徽),因为明天
上庭,下
午稍微研究了一下法律,在律师copy给我的纸上前两条就是4549.13 4549.14 当时我
没注意~律
师也没问关于车的事~~
我今天看到了觉得这个很重要~~就在这里问下知道的人~给点意见我~明天早上可能要去
找找学校
的律师~不过我们是要预约的~不知道他会不会见我~
谢谢了~~

these
N*********6
发帖数: 2302
3
来自主题: Family版 - 有关给个人捐款的管理条例
Fundraising for an Individual
This advisory summarizes the major issues involved with fundraising for an
individual. It is not meant to be a substitute for legal counsel but, rather
, an introduction to the issues you will need to think about. The Attorney
General's Office (AGO) is not authorized to provide legal representation to
individuals: you should consider consulting a private attorney regarding
fundraising for an individual.
A "donor" is someone who donates or gives money or property to ... 阅读全帖
m*********t
发帖数: 1250
4
来自主题: Investment版 - 把美元转到国内理财
The Gift Tax
Updated for Tax Year: 2013
If you give people a lot of money, you might have to pay a federal gift tax.
But the IRS also allows you to give up to $14,000 in 2013 to any number of
people without facing any gift taxes, and without the recipient owing any in
come tax on the gifts.Why it pays to understand the federal gift tax law
If you give people a lot of money or property, you might have to pay a feder
al gift tax. But most gifts are not subject to the gift tax. For instance, y
ou c... 阅读全帖
b***e
发帖数: 269
5
来自主题: JobHunting版 - 问个问题
Given a function randfive() that generates a number between 1 to 5, with
uniform probability. Use this to write a function randseven() which
generates a number with uniform probability between 1 to 7.
l*******g
发帖数: 8
6
来自主题: JobHunting版 - google intern 电面面经
你这样两个rand31()相加,得到的数应该不是uniformly distributed, 就好比用rand2
()+rand2()得到一个rand4()肯定不是uniformly distributed.
楼上提出的这种解法:(a<<1)+(c>>30)应该是对的。
i**r
发帖数: 40
7
num = 5*(rand5() -1) + rand5()- 1
Using two rand5() to generate uniformly distributed random number in the
range of [0, 24]
if (num < 21) return num % 7;
Discard num >= 21 so that rand7() will output random number [0..6] uniformly
.
i**r
发帖数: 40
8

you are right.
let me break down the expression:
r1 = rand5()-1; // r1 is in {0,1,2,3,4}
r2 = 5*r1; // r2 is in { 0,5,10,15,20 }
r3 = rand5()-1; // another random num in { 0,1,2,3,4}
r4 = r2+r3 ; // r4 could be any element of { 0, 1, ..., 24}
The key is to maintain the uniform distribution property of random number
generator. Using 6 or 4 will either bring in an gap or an overlap in the
expanded range,then the distribution will not be uniform.
w******g
发帖数: 67
9
来自主题: JobHunting版 - 一道概率题目
A,C are iid random numbers uniformly distributed in (0,1)
B is random number uniformly distributed in (1/2,1)
What is the probability P(A>B,A>C)?
My answer is (1/2)*(3/8)=3/16. Is it correct? Thanks.
h**6
发帖数: 4160
10
来自主题: JobHunting版 - G家onsite面经
最后一题。
19楼demon的结果和22楼gate的结果是不同的,只是两人都没有错,一个是直角坐标系
的uniform分布,一个是极坐标系的uniform分布。
这是一个著名的悖论:
http://en.wikipedia.org/wiki/Bertrand_paradox_(probability)
m**q
发帖数: 189
11
来自主题: JobHunting版 - G家onsite面经
就是说是否均匀分布是依赖于坐标系的, 直角坐标系的
uniform分布拿到极坐标系就不是uniform了,反之亦然?
r******n
发帖数: 170
12
来自主题: JobHunting版 - guangyi的面经和总结
顶!!
同时请问楼主,这几题大致怎么答的:
4.find intersections of two sorted/unsorted arrays? what if the sorted
arrays follows uniform distribution?
假如是sorted, 两个指针遍历,优先移动小的那个,time: O(min(m,n)), space: O(1)
unsorted的话,建两个hashset,互相查一遍 time:O(max(m,n)), space:O(m+n)
uniform distributed是什么意思?对算法有影响吗?
5.data structure for arithmatic expression? What OOD principal should you
use? What design pattern to use if you need to add many functions to your
data structure?
拿stack去做? 这个有什么部分要coding吗? 这题写起来似乎会很麻烦。 OOD问这个
似乎也不好答。
... 阅读全帖
r******n
发帖数: 170
13
来自主题: JobHunting版 - guangyi的面经和总结
顶!!
同时请问楼主,这几题大致怎么答的:
4.find intersections of two sorted/unsorted arrays? what if the sorted
arrays follows uniform distribution?
假如是sorted, 两个指针遍历,优先移动小的那个,time: O(m+n)), space: O(1)
unsorted的话,建两个hashset,互相查一遍 time:O(m+n), space:O(m+n)
uniform distributed是什么意思?对算法有影响吗?
5.data structure for arithmatic expression? What OOD principal should you
use? What design pattern to use if you need to add many functions to your
data structure?
拿stack去做? 这个有什么部分要coding吗? 这题写起来似乎会很麻烦。 OOD问这个
似乎也不好答。
6. server... 阅读全帖
q******8
发帖数: 848
14
来自主题: JobHunting版 - guangyi的面经和总结
find intersections of two sorted/unsorted arrays? what if the sorted
arrays follows uniform distribution?
什么follows uniform distribution?
5.data structure for arithmatic expression? What OOD principal should you
use? What design pattern to use if you need to add many functions to your
data structure?
这个第二问是什么design pattern?
k****n
发帖数: 369
15
来自主题: JobHunting版 - A家第一次电面
亚麻的电面,三哥说话我都经常听不清楚。
因为已经拿了另外一个offer,所以这个也不怎么上心
跑去芝加哥玩了,发现没带耳机,只好一手托着手机一手写字。
先问项目,说了一半就被打断了说算了,做题吧。
第一道是老题,输入一个字符串,把连续的空格合并成一个。
写好了读给他。第一版写的很屎,怒了直接重新写第二遍才写对
第二道是算法题,一个有序的整数list,没有duplicates
问怎样查找最快。我说binary search,他说能不能更快?
我就有点晕,问他说这个是不是uniformly distributed
他说不能做这种假定
然后我就彻底晕了,这他妈根本不可能啊
只好硬着头皮说,如果是uniformly distributed,
可以做线性插值,会比bsearch更快,不是的话就难说了
磨叽了半天,也没听明白他的解法,好像也是线性插值
顿时就感觉被阴了
最后是设计,问怎么设计file system,简化版,只考虑file和directory
这个我一向很弱,就是胡说了些接口什么的,不懂design pattern
没法吹概念
昨天收到信说要Onsite,还好没被阴。
k****n
发帖数: 369
16
来自主题: JobHunting版 - A家第一次电面
亚麻的电面,三哥说话我都经常听不清楚。
因为已经拿了另外一个offer,所以这个也不怎么上心
跑去芝加哥玩了,发现没带耳机,只好一手托着手机一手写字。
先问项目,说了一半就被打断了说算了,做题吧。
第一道是老题,输入一个字符串,把连续的空格合并成一个。
写好了读给他。第一版写的很屎,怒了直接重新写第二遍才写对
第二道是算法题,一个有序的整数list,没有duplicates
问怎样查找最快。我说binary search,他说能不能更快?
我就有点晕,问他说这个是不是uniformly distributed
他说不能做这种假定
然后我就彻底晕了,这他妈根本不可能啊
只好硬着头皮说,如果是uniformly distributed,
可以做线性插值,会比bsearch更快,不是的话就难说了
磨叽了半天,也没听明白他的解法,好像也是线性插值
顿时就感觉被阴了
最后是设计,问怎么设计file system,简化版,只考虑file和directory
这个我一向很弱,就是胡说了些接口什么的,不懂design pattern
没法吹概念
昨天收到信说要Onsite,还好没被阴。
w****o
发帖数: 2260
17
来自主题: JobHunting版 - 问一道google面试题
什么是uniform probability?
比如抛硬币,正反面的概率相同,可是当你作实验的话,你抛10次,有可能这10次都是
正面,难道你能说不是uniform distribution?除非做大量实验,大数定律才能保证有
一半的正面和一半的反面。
h********3
发帖数: 2075
18
来自主题: JobHunting版 - G电面被拘。。郁闷中。求安慰。
你按照你的均匀密度产生的点集。在极坐标空间内不是均匀的。
在极坐标空间了,球体被转换成了一个3维的立方体。r从0到半径, theta从0到PI, phi
从0到PI。这个立方体的体积是多少?
X,Y,Z任意一个点有且仅有一个点跟极坐标空间内的一个点对应。既然我在极坐标内
uniform产生的点,为什么在X,Y,Z内就不是uniform产生的?
u******g
发帖数: 89
19
来自主题: JobHunting版 - 关于那个随机数的
……如果原先不是uniform的话可以用一对搭配成uniform的。。然后再用原来的解法。
。。
i****1
发帖数: 445
20
来自主题: JobHunting版 - 关于那个随机数的
能展开来讲讲吗?
譬如原先的rand01()不uniform
怎么样用一对保证uniform?
a***m
发帖数: 5037
21
来自主题: JobHunting版 - amazon 新鲜面筋
phone coding questions :
1 - Write a function that takes an integer N and returns the Nth number of a
Fibonacci suite.
2 - Given a list of Integer. Write a function that takes an integer and
returns all the pair of integers included in the given list that sum up with
this integer.
Face to face coding questions :
1 - Write a function that takes an integer and return a string of this
integer in Roman number format.
2 - Go game. Write a function that takes a position (x,y) in a go game graph
and re... 阅读全帖
z**********r
发帖数: 86
22
以下是面经:
电面一:主要是research相关的东西,比如简历上的东西。由于面试官的背景是kalman
filter的,所以问了不少这个问题。另外问了一个Bayesian rule,Gaussian
distribution,sampling method,compressive sensing,bag of words, ransac:
A有两个孩子,问都是男孩的概率,另外如果已知一个是男孩,问另外一个也是男孩的
概率;
如果x是高斯分布,然后问y=2x的分布和y=x^2的分布;
假定有一个data stream,如何uniform sample k个sample;
eigenvalue在corner detection的用处;
little/big endian
电面二:主要是research的问题,比如compressive sensing的各种solver,bagging/
boosting,corner detector,how to detect periodic pattern, convex
optimization, lagrange multiplier
onsi... 阅读全帖
s***f
发帖数: 226
23
来自主题: JobHunting版 - 请教一道careercup上面的概率题
原题是:
Implement below function.
int getRandom(int N, int K[])
Constraints:
->K is sorted and contains elements in range [0,N)
->Output should be a random number between [0,N) excuding elements from K
->probability of generated number should be 1/(N-K.length) and not 1/N
-->int uniform(int N) is given which returns random number [0,N) with 1/N
probability for each number.
->No more than O(1) memory
->No more than O(N) time
提供的解法是:
public int randomNumber(int N, int[] K) { // K is sorted
int x ... 阅读全帖
r**h
发帖数: 1288
24
来自主题: JobHunting版 - g phone interv--有没有o(n) 解法
直接swap就可以了呀
随机generate了500个test case,没有问题
import random
def ShouldSwap(test_case, i):
if i % 2 == 0 and test_case[i] > test_case[i+1]:
return True
elif i % 2 == 1 and test_case[i] < test_case[i+1]:
return True
else:
return False
def Validate(test_case):
i = 0
while i < len(test_case) - 1:
if ShouldSwap(test_case, i):
return False
i = i + 1
return True
def FuzzySort(test_case):
i = 0
while i < len(test_case) - 1:
... 阅读全帖
e*******s
发帖数: 1979
25
没那么复杂 投2次就投了
第一次3个uniform 1/3
第二次2个uniform 1/2
e.g.
第一次
{1, 2, {3 or 4 or 5 or 6} }
第二次
{ {1 or 3 or 4}, {2 or 5 or 6} }
g******2
发帖数: 234
26
One way is to use one fixed set, say 1,2,3 and then use all permutations of
it. Every time you roll the die 3 times, and discard any other patterns.
A better way is to use all sets (6 choose 3 -> 20). Then you can create a
map of permutation to number (1-6). Also discard any other patterns.
A more efficient way might be to create uniform 0,1 function first. Here you
can also use permutation: roll a die twice, 0 if first roll < second roll
and 1 if first roll > second roll. discard ties.
Then it'... 阅读全帖

发帖数: 1
27
来自主题: JobHunting版 - 一道统计面试题
应该是用central limit theorem.
每次生成1000或者更多的数,计算他的standardized sum, 这个sum就是服从标准正态
分布的。
楼上说的是从uniform distribution转化到Gaussian.题目中是个Bernoulli
distribution.
我有次面试就是被问到怎么从uniform distribution到Gaussian,那时候不知道Box-
Muller transform,也没想起来Inverse transform sampling...
输出排序的整数数组中缺失的数是 LC 268 Missing Number吗?
i****a
发帖数: 36252
28
来自主题: Living版 - TVs: 10 things you need to know
http://reviews.cnet.com/2795-6482_7-399.html
LED TVs compared: Local dimming, edge-lit, and full array
If you thought all LED TVs were created equal, you're underestimating the
power of confusion as a marketing tool. In their continuing efforts to
compete against the picture quality advantages of plasma-based flat-panel
TVs, makers of LCDs TVs have introduced numerous new technologies. The most
successful in our opinion is full-array LED backlighting with local dimming.
When you see the words "L... 阅读全帖
m**********g
发帖数: 2661
29
This article is the archived version of a report that appeared in August
2009 Consumer Reports magazine.
Quartz
Best for busy kitchens and baths. It's stain- and heat-resistant and low-
maintenance. It doesn't need sealing and is available in vibrant colors and
in styles that mimic natural stone.
But edges and corners can chip. Rounded edges help. Stone finishes can
appear more uniform than natural.
Price $50 to $100 per sq. ft.
Granite
Best for a natural stone look. It can withstand heavy use i... 阅读全帖
c********n
发帖数: 731
30
来自主题: Living版 - 求教:没有HOA的房子
No HOA means owner can paint white color to his house when his neighbor
paint red. No HOA means no uniformity and could be very ugly neighborhood.
The highest value of the property comes from certain extent of uniformity,
such as single family will increase its value when it is next to a similar
single family and will decrease in value when it is next to a dry cleaner,
etc. same thing for exteriors.
a*******a
发帖数: 4233
31
来自主题: Parenting版 - 有谁象我一样喜欢娃上学穿校服?
这是 Trinity的dress code.
Students may only wear solid white t-shirts under their uniform polos
Only Trinity sweatshirts are allowed during school hours. Sweatshirts must
be worn on the outside of regular uniform shirts
还要找 Eton或者 Harrow的么
f****e
发帖数: 923
32
Coupons Shouldn't Be Taxed, but Government Vouchers Should
http://taxfoundation.org/blog/coupons-shouldnt-be-taxed-governm
大家有这个有关注吗?
July 09, 2008
By Josh Barro
Recently, Best Buy sent checks for a few dollars to customers in
Pennsylvania, Texas and Wisconsin. The checks are refunds for sales tax
charged on the portion of their digital television converter boxes they paid
for with federal government vouchers.* Those states' departments of
revenue have ruled that the $40 voucher should be exe... 阅读全帖
k**i
发帖数: 10191
33
来自主题: PennySaver版 - The Children's Place 女娃毛衣DEAL~
学校什么时候会要求家长买SCHOOL UNIFORM呀?不是学校统一订吗?

uniforms
s**u
发帖数: 9035
34
发信人: shmu (shmu), 信区: Biology
标 题: UCSF Postdoc Fellowships in Tobacco Control Research
发信站: BBS 未名空间站 (Tue Oct 18 07:39:49 2011, 美东)
Postdoctoral Fellowships in Tobacco Control Research
The purpose of the fellowship is to attract diverse individuals from a
wide variety of backgrounds in medical, biological, social,
behavioral, and policy sciences to develop a new generation of
academic leaders in tobacco control. Upon completion of training,
fellows will be well positioned to be active partici... 阅读全帖
f******s
发帖数: 89
35
OK, it may be true based on government public written regulations.:) However
, the reality is not.
My relatives in Shanghai have a grade 5 kid. The kid is also learning some
music instrument and olympic math. They are worrying most of the time and
know all details of 初中 entrance.
They told me that government doesn't allow any test to judge 初中 entrance.
But middle schools actually look at the last city-wide uniform midterm exam
score of grade 6 in primary schools.
The full score of Chinese, Engli... 阅读全帖
g***l
发帖数: 18555
36
来自主题: shopping版 - LCD厂家正在CLEAR INVENTORY
Unfortunately for TV shoppers, the confusion just increases from there. To
help cut through the clutter we're going to lengthen our descriptions beyond
the "LED TV" shorthand, and tell you how picture quality generally compares
with standard LCD. More details are available in our LED TVs: 10 things you
need to know companion piece as well as the individual reviews.
Full-array without local dimming: The rarest of the bunch but the most
familiar in concept. These models are just like standard LCD-... 阅读全帖
M***n
发帖数: 5815
37
来自主题: Stock版 - 没人买tesla是为省钱
谢谢小武!
uniformity, swapping & refurbishing
uniformity是指的多个电池的电流总输出even, 在不同时刻?
swapping & refurbishing 不懂。refurbishing 我知道的是蓄电池有记忆,然后用的
时间长了,就会慢慢满了,无法再充电。

Nv
c*********o
发帖数: 1734
38
I will recommend the first three responds with the right background to the
editor.
There is no guarantee you will be picked by the editor.
Send email to c*********[email protected] with the following information:
You official name
Your degree
Your official organization
Your business email address
You business title
And brief introduction of your background.
Most important: register with CES as a reviewer with your business email
address before you send me email
I will not recommend you if you miss any... 阅读全帖
y******o
发帖数: 195
39
来自主题: Boston版 - 大家有上学都不顺利的吗
看了你这个贴,我都无语了
第一,你“不小心错过了orientation”,orientation多么重要啊,是让你了解整节课
的唯一机会,你都能错过。如果是我,路上被车撞或者健康原因错过,那么也要立即去
找老师,解释清楚,然后重新了解一下重要事项。
第二,练习的时候你“不小心忘记穿uniform”,我不是学你那个专业的,不过我估计
其他人都有穿uniform吧,你这就跟穿睡衣去面试一样---自己找打
通过这两件事来看,明显就是你不上心,做事没有条理
而且看来智商也不行,自己这么明显的问题竟然发帖问大家是不是也不顺利
我这里明确的告诉你吧:NO你在美国不需要“时时刻刻把老师伺候好了才可以”。
上课认真听讲,老师让你干嘛就干嘛就是
我希望你通过这件事可以学到一个life lesson,以后put your acts together。然后
在仔细考虑一下这条路到底适不适合你,美国med school里面都是精英,想象一下你将
来医治病人的时候再来个“不小心”忘这忘那导致弄出医疗事故,那么就不是开玩笑的
了。
d***w
发帖数: 1209
40
You can call 911 to verify that a police officer is actually the person
stopping you. Authorities suggest doing this when you are being stopped
by an unmarked car or if the officer is not in uniform. Many traffic
officers drive unmarked cars, but should be in uniform
喜欢这段:警察和贫民停到路边后分别向警察局打电话汇报情况,平等了。
s*****n
发帖数: 134
41
http://www.latimes.com/news/la-recruiting-scam12-m,0,6248907.st
track=rss&utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+lat
imes%2Fmostviewed+%28L.A.+Times+-+Most+Viewed+Stories%29
'Supreme Commander' of phony army unit that recruited Chinese nationals
charged
By Andrew Blankstein
Los Angeles Times Staff Writer
April 12, 2011, 2:18 p.m.
An El Monte man has been arrested and charged for allegedly recruiting
100 Chinese nationals to join a phony Army special forces unit that he
led as... 阅读全帖
c******n
发帖数: 5697
42
来自主题: LosAngeles版 - 同学离婚了
If there is anything that is bad or unkind to women, it is the space-time
continuum. The uniform and unidirectional progression of time – where
time only moves in one direction and all of us uniformly get older – is
the only thing that is detrimental to women and beneficial to men. No
matter how much they wish, women cannot reverse the course of time; they
have to get older, heavier, and have more sexual partners as time
progresses. In contrast, men can at least hope and dream of making more
... 阅读全帖
D********L
发帖数: 4
43
Because it’s unique history, Gun control is a very controversy topic in USA
. Many American think owning guns is their inherited right. The emotion to
have right carrying gun come from that: in early western exploration time,
there is security provided by government, people have to carry guns to
protect themselves.
I remember to watch one film called: Canadian’s mounted police. In that
movie, there are two policemen, one from Canadian who are very care about
his appearance, always keep his unifo... 阅读全帖
C*******r
发帖数: 10345
44
来自主题: LosAngeles版 - LAPD疯了,开枪乱打无辜了 (转载)
【 以下文字转载自 GunsAndGears 讨论区 】
发信人: Commissar (柯宓同志), 信区: GunsAndGears
标 题: LAPD疯了,开枪乱打无辜了
发信站: BBS 未名空间站 (Thu Feb 7 14:51:26 2013, 美东)
LAPD, Torrance Police Shot At Innocent People In Frenzied Hunt For Former
Cop Christopher Dorner
LOS ANGELES -- Police officers shot innocent people during the frenzied
manhunt for Christopher Dorner, a former cop suspected of murdering 3 people
and shooting several more.
Officers from the Los Angeles and Torrance police departments engaged in two
separate shoot... 阅读全帖
j**4
发帖数: 10425
45
in came a really old man, about 60 year old? but his mouth area, looks like
a dude i knew...
so i just stared at him and pictured having sex with him in my mind...
i guess he felt that i was staring at him, so he looked my way couple times
then i came out of sapporo, saw a couple chinese sailors in the yankees
clubhouse store, browsing stuff. those coupld chinese sailors, in the
sailors uniform. those sailors uniforms are hot! and they dont look like
ABC, they look like real chinese ppl...
W*******a
发帖数: 1769
46
来自主题: SanFrancisco版 - CA Lifeguard年薪>12万,硅工情何以堪
http://biggovernment.com/dspady/2011/05/06/200000-lifeguards-to
millions-in-retirement/
$200,000 Lifeguards to Receive Millions in Retirement
by David Spady
Public outrage over lavish government employee compensation and pensions
is becoming more heated as new revelations about excesses seem to crop
up every week. The latest: Newport Beach, California, where some
lifeguards have compensation packages that exceed $200,000 and where
these “civil servants” can retire with lucrative government pens... 阅读全帖
u*****a
发帖数: 6276
47
看了一下纽约地区检察官汤姆森的简历,很牛的主:出身贫农,单亲家庭,其母亲是警
察,他自己是NYU 法学院的毕业生,曾参加过几个著名案例的诉讼,很有钱。
Thompson was raised in the projects. His childhood home was an apartment in
the Robert Wagner Houses, a collection of 22 buildings in East Harlem, and,
much like the Pink Houses, it was plagued by gangs, drug dealers, and
routine chaos. Thompson was raised by a single mother, Clara, who became one
of the first female NYPD officers to walk a beat. “She would leave with
her uniform on; she would come back with her uniform ... 阅读全帖
m*******n
发帖数: 5103
48
来自主题: Seattle版 - 航母上的海军帅哥
迷彩应该是 Navy 什么 Working Uniform,忘记名字了,等下去查查。
// 没记错,海军的迷彩就叫做 Navy Working Uniform,又叫 bluberry。市面上虽然
有很多迷彩服,但其 pattern 与真正的美军军装应该是不同的(除非是 surplus 店买
的真正军装)。
n***k
发帖数: 1140
49
来自主题: Texas版 - 有dallas的 H4 MM吗?
You just won't let that go...! :)
Check back the other post, there's a pic of someone in nurse uniform....
considering
adopting that as a uniform for all Dallas H4s, starting from myself
j*****3
发帖数: 4
50
来自主题: Football版 - Why I don't like Steeler
5 reasons transocean likes cocks
1. Their uniform very ugly,
uniform is ugly? what the heck is that? last time i check, this is a
football forum, not a gayass fashion forum. Too bad no team in NFL wears
pink, bet transocean would love it very much, and maybe the pink jersey
would go well with his leather skirt =D
2. Their QB is overrated, and has questionable personality.
Overrated??? well, so is tranocean's mom..... since when a QB with two SB
rings is overrated? this statement is beyond retar... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)