avatar
p*e
2
让你尽兴。
avatar
e*g
4
不住曼哈顿,没有那么贵
听说
学校提供廉租房
avatar
g*1
5
这贴跟本版有啥关系

【在 p*****e 的大作中提到】
: 让你尽兴。
avatar
S*G
7
谢谢
果然不出所料,我脚着以后清北也要往这方向发展。
顺义到海淀多远啊?

【在 e****g 的大作中提到】
: 不住曼哈顿,没有那么贵
: 听说
: 学校提供廉租房

avatar
p*e
8
那厮总是在别人的主题里学我说话,这么捣乱,我对楼主过意不去,所以把这厮给提溜
出来。
要不您说咋办?

【在 g*******1 的大作中提到】
: 这贴跟本版有啥关系
avatar
h*e
10
年轻faculty大都住学校房子,学校减点租金,基本住得起,房子也算decent,不过当
然不能跟乡下比。
牛人当然也住学校房子,只不过通常还会在new jersey之类的地方自己另外再买个房子。
没觉得清北会向这个方向发展,尤其在青年教师待遇方面。
avatar
g*1
11
要么都消停,要么换个版面

【在 p*****e 的大作中提到】
: 那厮总是在别人的主题里学我说话,这么捣乱,我对楼主过意不去,所以把这厮给提溜
: 出来。
: 要不您说咋办?

avatar
G*h
12
的确是骂娘啊

【在 A**u 的大作中提到】
: 你老挖坑
avatar
b*h
13
有faculty housing。价钱是市价的一半甚至更少,但是比较陈旧。
另外我当时被领着在faculty housing的楼里转了一下,好像basement是洗衣房。
看到一张字条,上面有很多名字,被告知那是laundry schedule。 也就是说,礼拜几
,几点到几点轮到你洗衣服。。。
avatar
p*e
14
那感情好,下次这厮再学我说话,请您让其消停。
多谢先。

【在 g*******1 的大作中提到】
: 要么都消停,要么换个版面
avatar
r*r
15
骂 nvidia 的。
网上有 video.
avatar
c*e
16
NYU的條件相當好,豔羨washington square的位置。
疙瘩這就到Harlem了。

【在 S******G 的大作中提到】
: 有感于北京高房价,问问。
avatar
B*e
17
我学你几句话,你就受不了了?所以你知道你自己的话是多么的无聊,无知,幼稚,没
有意义吧?
尊重版主教诲,我就此消停。您要说什么继续说,但我绝对不回此帖或任何你对我提出
的单挑帖。
avatar
r*e
19
but don't assume every new faculty will get univ housing at nyu

【在 c****e 的大作中提到】
: NYU的條件相當好,豔羨washington square的位置。
: 疙瘩這就到Harlem了。

avatar
p*e
20
不是我受不了,是版主受不了。
这样吧,要不到米国版或者笑话版,你接着学人说话。
你这么执着,我得满足你。
那边见。

【在 B********e 的大作中提到】
: 我学你几句话,你就受不了了?所以你知道你自己的话是多么的无聊,无知,幼稚,没
: 有意义吧?
: 尊重版主教诲,我就此消停。您要说什么继续说,但我绝对不回此帖或任何你对我提出
: 的单挑帖。

avatar
b*h
22
everyone says the location is great... but it was a little bit too noisy for
me... I stayed on the 6th or the 7th floor... still was waken up around 7am
in the morning by the traffic.

【在 c****e 的大作中提到】
: NYU的條件相當好,豔羨washington square的位置。
: 疙瘩這就到Harlem了。

avatar
g*1
23
学说话没关系,不吵架就好
中秋节还是吃月饼吧

【在 p*****e 的大作中提到】
: 那感情好,下次这厮再学我说话,请您让其消停。
: 多谢先。

avatar
r*c
24
骂得好。
avatar
c*e
25
depends on when you go to bed, 7am could be just normal for most people (not
including me). but vicinity to the village is hard to beat.

for
7am

【在 b******h 的大作中提到】
: everyone says the location is great... but it was a little bit too noisy for
: me... I stayed on the 6th or the 7th floor... still was waken up around 7am
: in the morning by the traffic.

avatar
p*e
26
学我说话肯定上层次,但是不能在别人的主题里copy、paste的学,对别的楼主不尊重
不是?
这是基本教养。

【在 g*******1 的大作中提到】
: 学说话没关系,不吵架就好
: 中秋节还是吃月饼吧

avatar
v*r
27
Linux 在 这个 video 里提到的 micro-optimization 应该是他三月初在 G+ 里贴的问
题,在征求大家的建议 on best code,G+的回复里不乏一些大腕,最后是澳洲的一个
college kid 贴的一行 code 被 Linux 采纳了,linux 的原贴如下:
Linus TorvaldsMar 3, 2012 - Public
More bitwise tricks..
So my quest to calculate the hash and the length of a pathname component
efficiently continues. I'm pretty happy with where I am now (some changes to
the code have happened, it you actually want to see the current situation
you need to check out the kernel mailing list post), but finding the number
of bytes in the final mask bothers me.
Using an explicit loop is out - the branch mispredicts kill it. And while at
least modern Intel CPU's do quite well with just using the bit scan
instructions ("bsf") to find where the first NUL or '/' was in the word,
that sucks on some older CPU's.
So I came up with the following trick to count the number of bytes set in
the byte mask:
/* Low bits set in each byte we used as a mask */
mask &= ONEBYTES;
/* Add up "mask + (mask<<8) + (mask<<16) +... ":
same as a multiply */
mask *= ONEBYTES;
/* High byte now contains count of bits set */
len += mask >> 8*(sizeof(unsigned long)-1);
and I'm wondering if anybody can come up with something that avoids the need
for that multiply (and again - conditionals don't work, the mispredict
costs kill you).
Because that multiply isn't free either.

【在 z****u 的大作中提到】
: http://www.youtube.com/watch?v=MShbP3OpASA&feature=player_embed
avatar
k*r
28
Roweis就在那里跳的楼?

【在 c****e 的大作中提到】
: depends on when you go to bed, 7am could be just normal for most people (not
: including me). but vicinity to the village is hard to beat.
:
: for
: 7am

avatar
y*z
29
汗,都是自己人,不要吵架拉~
avatar
S*A
30
And the result code is...


to
number

【在 v*****r 的大作中提到】
: Linux 在 这个 video 里提到的 micro-optimization 应该是他三月初在 G+ 里贴的问
: 题,在征求大家的建议 on best code,G+的回复里不乏一些大腕,最后是澳洲的一个
: college kid 贴的一行 code 被 Linux 采纳了,linux 的原贴如下:
: Linus TorvaldsMar 3, 2012 - Public
: More bitwise tricks..
: So my quest to calculate the hash and the length of a pathname component
: efficiently continues. I'm pretty happy with where I am now (some changes to
: the code have happened, it you actually want to see the current situation
: you need to check out the kernel mailing list post), but finding the number
: of bytes in the final mask bothers me.

avatar
c*e
31

又空出一處。NYU應該鋪點草坪,跳的人太多了。

【在 k*****r 的大作中提到】
: Roweis就在那里跳的楼?
avatar
H*y
32
该吵架,该灌水,还是要做的啦。除非有其他事情忙活。
我是打游戏也大烦了,玩桥牌也玩厌了,就灌水背

【在 y***z 的大作中提到】
: 汗,都是自己人,不要吵架拉~
avatar
v*r
33
I believe the following codes are what Linus added to kernel in the end (
Carl is the Aussie college kid).
/* Modified Carl Chatfield G+ version for 32-bit */
long a = (mask-256) >> 23;
long b = mask & 1;
return a + b + 1;
/* Jan Achrenius on G+ for 64-bit case */
return mask*0x0001020304050608 >> 56;

【在 S*A 的大作中提到】
: And the result code is...
:
: 个
: to
: number

avatar
b*h
34
well, you can't go to bed very early either... it is still pretty noisy at
11pm...

not

【在 c****e 的大作中提到】
: depends on when you go to bed, 7am could be just normal for most people (not
: including me). but vicinity to the village is hard to beat.
:
: for
: 7am

avatar
y*z
35
还可以读书阿,你说是不是?

【在 H****y 的大作中提到】
: 该吵架,该灌水,还是要做的啦。除非有其他事情忙活。
: 我是打游戏也大烦了,玩桥牌也玩厌了,就灌水背

avatar
c*m
36
damn, magic numbers. the worst thing in the coding world.
avatar
c*e
37

ok, drink plenty, you're picky :)

【在 b******h 的大作中提到】
: well, you can't go to bed very early either... it is still pretty noisy at
: 11pm...
:
: not

avatar
H*y
38
读书,就比较勉强,意思不大。
现在网络发达,有啥不明白,在网上一搜,就都有了。

【在 y***z 的大作中提到】
: 还可以读书阿,你说是不是?
avatar
y*z
39
那么是什么原因,让你觉得读书比较勉强呢?
难道读书的意思还没有灌水还大么?

【在 H****y 的大作中提到】
: 读书,就比较勉强,意思不大。
: 现在网络发达,有啥不明白,在网上一搜,就都有了。

avatar
H*y
40
教科书,已经读过了;小说,虚构的,太假;
新闻报道,网上都有还快;总之,值得读的
东西,太少。不过,今早看了个郎咸平的讲演稿,
还是有点可读性,不过,也是网上的。
印成纸面文字的东西,绝大多数,不值一读。
灌水,就完全不同哦。你知道你对面坐着个活人。

【在 y***z 的大作中提到】
: 那么是什么原因,让你觉得读书比较勉强呢?
: 难道读书的意思还没有灌水还大么?

avatar
y*z
41
教科书,你“都”读过吗? 你说度过,是不是说明教课书是有意义的呢?
小说都是“虚构的”吗? 不是虚构的小说,你读过觉得有意义的吗?
另外,虚构的小说就都没有意义吗?
新闻报道,你确定网上都有吗?那我们这些天天订报纸的,难道都是花冤枉钱,是吗?
什么叫“值得读的东西太少呢?” 一本真正值得读的书,读一遍和读2遍或者读10遍概
念一样吗?
什么叫“印成纸面文字的东西,绝大多数,不值一读”呢,这个绝大多数的比例有什么
根据么?

【在 H****y 的大作中提到】
: 教科书,已经读过了;小说,虚构的,太假;
: 新闻报道,网上都有还快;总之,值得读的
: 东西,太少。不过,今早看了个郎咸平的讲演稿,
: 还是有点可读性,不过,也是网上的。
: 印成纸面文字的东西,绝大多数,不值一读。
: 灌水,就完全不同哦。你知道你对面坐着个活人。

avatar
H*y
42
我肯定没,也不准备“都”。
你们订报,如果看,就不冤枉,哪怕看广告。
我已经有些年没见过值得读三遍以上的材料了。
比例,1/10?

【在 y***z 的大作中提到】
: 教科书,你“都”读过吗? 你说度过,是不是说明教课书是有意义的呢?
: 小说都是“虚构的”吗? 不是虚构的小说,你读过觉得有意义的吗?
: 另外,虚构的小说就都没有意义吗?
: 新闻报道,你确定网上都有吗?那我们这些天天订报纸的,难道都是花冤枉钱,是吗?
: 什么叫“值得读的东西太少呢?” 一本真正值得读的书,读一遍和读2遍或者读10遍概
: 念一样吗?
: 什么叫“印成纸面文字的东西,绝大多数,不值一读”呢,这个绝大多数的比例有什么
: 根据么?

avatar
y*z
43
百发失一,不足谓善射。
千里跬步不至,不足谓善御。

【在 H****y 的大作中提到】
: 我肯定没,也不准备“都”。
: 你们订报,如果看,就不冤枉,哪怕看广告。
: 我已经有些年没见过值得读三遍以上的材料了。
: 比例,1/10?

avatar
e*n
44
你这不是对事不对人的态度

【在 y***z 的大作中提到】
: 汗,都是自己人,不要吵架拉~
avatar
y*z
45
一针见血,远见卓识

【在 e*****n 的大作中提到】
: 你这不是对事不对人的态度
avatar
H*y
46
你是说,读了99本,都是垃圾,还要期望下一本,是精品?
那个狙击手,固然是隔着1个半英里狙杀了目标,也还是用了
两发,第一发落空了,目标没发现。再一发,成功。也成就
了绝对的善射。

【在 y***z 的大作中提到】
: 百发失一,不足谓善射。
: 千里跬步不至,不足谓善御。

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。