p*e
2 楼
让你尽兴。
e*g
4 楼
不住曼哈顿,没有那么贵
听说
学校提供廉租房
听说
学校提供廉租房
c*e
6 楼
领导人都喜欢用 strong language
【在 G*****h 的大作中提到】
: http://www.phoronix.com/image-viewer.php?id=0x2012&image=linus_
【在 G*****h 的大作中提到】
: http://www.phoronix.com/image-viewer.php?id=0x2012&image=linus_
A*u
9 楼
你老挖坑
【在 G*****h 的大作中提到】
: http://www.phoronix.com/image-viewer.php?id=0x2012&image=linus_
【在 G*****h 的大作中提到】
: http://www.phoronix.com/image-viewer.php?id=0x2012&image=linus_
h*e
10 楼
年轻faculty大都住学校房子,学校减点租金,基本住得起,房子也算decent,不过当
然不能跟乡下比。
牛人当然也住学校房子,只不过通常还会在new jersey之类的地方自己另外再买个房子。
没觉得清北会向这个方向发展,尤其在青年教师待遇方面。
然不能跟乡下比。
牛人当然也住学校房子,只不过通常还会在new jersey之类的地方自己另外再买个房子。
没觉得清北会向这个方向发展,尤其在青年教师待遇方面。
b*h
13 楼
有faculty housing。价钱是市价的一半甚至更少,但是比较陈旧。
另外我当时被领着在faculty housing的楼里转了一下,好像basement是洗衣房。
看到一张字条,上面有很多名字,被告知那是laundry schedule。 也就是说,礼拜几
,几点到几点轮到你洗衣服。。。
另外我当时被领着在faculty housing的楼里转了一下,好像basement是洗衣房。
看到一张字条,上面有很多名字,被告知那是laundry schedule。 也就是说,礼拜几
,几点到几点轮到你洗衣服。。。
r*r
15 楼
骂 nvidia 的。
网上有 video.
网上有 video.
B*e
17 楼
我学你几句话,你就受不了了?所以你知道你自己的话是多么的无聊,无知,幼稚,没
有意义吧?
尊重版主教诲,我就此消停。您要说什么继续说,但我绝对不回此帖或任何你对我提出
的单挑帖。
有意义吧?
尊重版主教诲,我就此消停。您要说什么继续说,但我绝对不回此帖或任何你对我提出
的单挑帖。
z*u
18 楼
http://www.youtube.com/watch?v=MShbP3OpASA&feature=player_embed
【在 r*********r 的大作中提到】
: 骂 nvidia 的。
: 网上有 video.
【在 r*********r 的大作中提到】
: 骂 nvidia 的。
: 网上有 video.
d*u
21 楼
埃,OPEN SOURCE这个圈子里的就喜欢嘴巴爽。有本事自己搞一个吧,又不行。自己翘
不起来,非要怪别人不性感?
【在 G*****h 的大作中提到】
: http://www.phoronix.com/image-viewer.php?id=0x2012&image=linus_
不起来,非要怪别人不性感?
【在 G*****h 的大作中提到】
: http://www.phoronix.com/image-viewer.php?id=0x2012&image=linus_
r*c
24 楼
骂得好。
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.
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.
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
题,在征求大家的建议 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
y*z
29 楼
汗,都是自己人,不要吵架拉~
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.
个
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.
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
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
c*m
36 楼
damn, magic numbers. the worst thing in the coding world.
y*z
41 楼
教科书,你“都”读过吗? 你说度过,是不是说明教课书是有意义的呢?
小说都是“虚构的”吗? 不是虚构的小说,你读过觉得有意义的吗?
另外,虚构的小说就都没有意义吗?
新闻报道,你确定网上都有吗?那我们这些天天订报纸的,难道都是花冤枉钱,是吗?
什么叫“值得读的东西太少呢?” 一本真正值得读的书,读一遍和读2遍或者读10遍概
念一样吗?
什么叫“印成纸面文字的东西,绝大多数,不值一读”呢,这个绝大多数的比例有什么
根据么?
【在 H****y 的大作中提到】
: 教科书,已经读过了;小说,虚构的,太假;
: 新闻报道,网上都有还快;总之,值得读的
: 东西,太少。不过,今早看了个郎咸平的讲演稿,
: 还是有点可读性,不过,也是网上的。
: 印成纸面文字的东西,绝大多数,不值一读。
: 灌水,就完全不同哦。你知道你对面坐着个活人。
小说都是“虚构的”吗? 不是虚构的小说,你读过觉得有意义的吗?
另外,虚构的小说就都没有意义吗?
新闻报道,你确定网上都有吗?那我们这些天天订报纸的,难道都是花冤枉钱,是吗?
什么叫“值得读的东西太少呢?” 一本真正值得读的书,读一遍和读2遍或者读10遍概
念一样吗?
什么叫“印成纸面文字的东西,绝大多数,不值一读”呢,这个绝大多数的比例有什么
根据么?
【在 H****y 的大作中提到】
: 教科书,已经读过了;小说,虚构的,太假;
: 新闻报道,网上都有还快;总之,值得读的
: 东西,太少。不过,今早看了个郎咸平的讲演稿,
: 还是有点可读性,不过,也是网上的。
: 印成纸面文字的东西,绝大多数,不值一读。
: 灌水,就完全不同哦。你知道你对面坐着个活人。
H*y
42 楼
相关阅读
有没有vim给程序员的入门教程?主要用c.可能是个non sense的问题linux 下的 amule好用吗?How to do testing to a web application?linux下面为何sony的笔记本上xwindow启动不了呢?小心发问 声音问题挖个坑how to debug QTUBUTU SERVER EDITION 和DESKTOP 有什么区别阿?fluxbox很好WPS Office 有Linux 版吗?facebook一上传照片就死机是怎么回事?Linux Kernel 2.6.29 Released咋让 emacs key-binding overwrite linux keyboard shortcut?gmail的imap是不是出问题了?Linux Gaining Strength In Downturnregex q问个linux的"remote desktop"的问题。太扯淡了 请教各位linux高手关于在linux下c/c++应用软件开发的一些问题