Hello all,
Hans Reiser, the reiserfs developer was found guilty
yesterday of killing his wife.
http://yro.slashdot.prg/article.pl?sid=08/04/28/2243232
No body, no crime scene, no physical evidence, and no
witnesses, but they still found him guilty!
Cheers,
Dick Johnson
Penguin : Linux version 2.6.22.1 on an i686 machine (5588.29 BogoMips).
My book : http://www.AbominableFirebug.com/
_
和上个blog 可以对照着看
—
为什么离开Google
matrix 发表于 2008年4月17日 14时15分 星期四 Printer-friendly Email story
来自人各有志部门
Google
DigitalPig 写道 “谷歌治印报道,一个曾经在Google公司工作过得工程师在他的Blog上面写了他为什么离开Google的原因。(摘要了一下:) 在具有这样大小和影响的公司中,Google是一个让人兴奋的公司。有很多咖啡厅(perk?)和餐厅(在Mountain View总部有15个餐厅,免费供应从早餐到晚餐)。而且有很多的讲座。在Google中得到培训的机会也很多。当然以团队合作的名义出去玩的机会也很多。每个新员工都会有一个24‘’或者30‘’的显示器和一台公司配给的笔记本电脑(MacBook或者Thinkpad).对于Google这样的一个公司来说,它的出现改变了互联网以前糟糕透顶的搜索模式,而且它的新产品,比如GMail、Google Reader和Google Calendar一推出就收到广泛的关注而且变得非常的流行。这也让我感到非常的自豪。而且Google内部的邮件列表非常有活力,你可以在上面得到很多的信息,工作的非工作的。这也让我想到了早期的流行而且让人受益的USENET,而不是像现在这样充满白痴。(同意!)
不过虽然是这样,我还是离开了Google。我很享受我在Google的这段工作经历。但是我更加喜欢作为一个公司的创始人而不是一个大公司平庸职工。当然,咖啡厅和其他都吸引人,但是却不能激励我。相反,在一个公司刚开始的时期,每个员工都会对这个公司有着巨大的影响和很大的责任。这才是我追求的。这些年我也发现很多创新都来自刚刚成立的小公司。当然,在小公司工作也有很大的风险,因为大部分的小公司都倒闭了,但是至少还有1/10的公司能生存下来。相比而言,作为一个Google员工,就算Google股票翻一番或者翻两番,我都不能变得更加富有。
而且,Google中我所开发的项目也不和我的口味。虽然过了一两年员工会交换他们的项目,但是对于一个有很庞大代码库,工具和框架的Google来说,要熟悉这些然后再上手并不容易。开始的时候会感觉非常的郁闷。所以我觉得Google招聘人员应该在这方面多加注意。
现在我在一家即将成立的公司里面做社会网络(Social Networking)/移动空间(Mobile Space)开发。我的职位将是一个工程负责人。当然,对于小公司来说,一个职位将会扮演非常多得角色。不过,我能使用自己喜欢的Ruby开发。对于这份工作,我还是觉得很兴奋。
有人喜欢打天下,有人喜欢守天下。”
在网上看到一个帖子提到某pixar前员工离开这家公司的事,找到了相关链接
逃离怪物公司
pixar的影片几乎我都看过,而且其中很多都买了非常好的DVD版本。其中一个乐趣就是
看DVD附带的制作花絮,包括对pixar的介绍。很羡慕他们的工作环境和工作方式,公司
花很大力气为大伙创造能尽最大可能发挥个人创造力和激情的环境。我对艺术的创造力
接近为0,对艺术的欣赏虽有提高也是从一个很低的起点开始,不过还是“虽不能至,心向往之”吧。
甚至比较起来这两年对google工作环境的夸张宣传,我觉得离pixar还有差距。
Steve Jobs–这个两个我欣赏公司的共同老板和灵魂人物,最近负面报道也很多。其中
有一个是美国评员工最满意的雇主,apple没有进前25。没看到那个表,不知道pixar是不是在里面。
这个帖子其实很简略,也没说出什么特别称得上内幕的东西。既然pixar人才济济,被埋没只怕
也无可避免。
这个故事告诉我们的是:即使是外人看来多么光鲜照人的公司,在里面生存也未必容易。
我说的容易是easy。
信号处理程序中应当使用可再入(可重入)函数(注:所谓可重入函数是指一个可以被多个任务调用的过程,任务在调用时不必担心数据是否会出错)。因为进程在收到信号后,就将跳转到信号处理函数去接着执行。如果信号处理函数中使用了不可重入函数,那么信号处理函数可能会修改原来进程中不应该被修改的数据,这样进程从信号处理函数中返回接着执行时,可能会出现不可预料的后果。不可再入函数在信号处理函数中被视为不安全函数。
满足下列条件的函数多数是不可再入的:(1)使用静态的数据结构,如getlogin(),gmtime(),getgrgid(),getgrnam (),getpwuid()以及getpwnam()等等;(2)函数实现时,调用了malloc()或者free()函数;(3)实现时使用了标准 I/O函数的。The Open Group视下列函数为可再入的:
_exit()、 access()、alarm()、cfgetispeed()、cfgetospeed()、cfsetispeed()、cfsetospeed ()、chdir()、chmod()、chown()、close()、creat()、dup()、dup2()、execle()、execve()、fcntl()、fork()、fpathconf ()、fstat()、fsync()、getegid()、 geteuid()、getgid()、getgroups()、getpgrp()、getpid()、getppid()、getuid()、 kill()、link()、lseek()、mkdir()、mkfifo()、 open()、pathconf()、pause()、pipe()、raise()、read()、rename()、rmdir()、setgid ()、setpgid()、setsid()、setuid()、 sigaction()、sigaddset()、sigdelset()、sigemptyset()、sigfillset()、 sigismember()、signal()、sigpending()、sigprocmask()、sigsuspend()、sleep()、 stat()、sysconf()、tcdrain()、tcflow()、tcflush()、tcgetattr()、tcgetpgrp()、 tcsendbreak()、tcsetattr()、tcsetpgrp()、time()、times()、 umask()、uname()、unlink()、utime()、wait()、waitpid()、write()。
即使信号处理函数使用的都是”安全函数”,同样要注意进入处理函数时,首先要保存errno的值,结束时,再恢复原值。因为,信号处理过程中,errno值随时可能被改变。另外,longjmp()以及siglongjmp()没有被列为可再入函数,因为不能保证紧接着两个函数的其它调用是安全的。
摘自developerworks
WCDMA:诺基亚(35%)、爱立信(31%)、高通(6%)、西门子(5%)、华为(5%)、其他(18%)
CDMA2000:诺基亚(22%)、爱立信(6%)、高通(31%)、西门子(5%)、摩托(11%)、其他(25%)
TD:诺基亚(32%)、爱立信(23%)、高通(2%)、西门子(11%)、大唐(7.3%)、其他(24.7%)
不知数据是否权威。记录一下
Bugzilla Bug 439858: swf mozilla plugin – no youtube
Last Comment | Clone as Bug | Show Bug Activity | Format for Printing
Bug Activity :: Hide Bug Activity :: Open New Window
Refresh this page with JavaScript enabled for faster page loading.
Alias Priority low
Product Severity
Version Status NEW
Component Resolution
OS Add CC
Hardware
Reporter Linus Torvalds
Assigned To Brian Pepple
Bug Comments
Opened by Linus Torvalds on 2008-03-31 15:37 EST [reply]
Description of problem:
youtube no workee – fedora 9 not usable for wife
Version-Release number of selected component (if applicable):
swfdec.x86_64 0.6.2-1.fc9
swfdec-gtk.x86_64 0.6.2-1.fc9
swfdec-mozilla.x86_64 0.6.0-1.fc9
How reproducible:
I didn’t try a lot of videos, but I couldn’t find a single one that actually
worked. And what’s the internet without the rick-roll?
Some just show a light gray background, some give the play buttons etc, but show
only a black screen even when the red ball at the bottom moves along..
Steps to Reproduce:
1. Install current Fedora 9
2. Rick-roll!
3. No profit!
Actual results:
Some videos just show a light gray background, some give the play buttons etc,
but in the latter case show only a black screen even when the red ball at the
bottom seems to moves along..
Expected results:
Rick Astley in all his glory! People have reported that youtube videos are
supposed to work with swfdec, so I presume they have worked at some point and
have been broken recently.
Just to test that this isn’t just a anti-rick-roll security feature, I also
tested some other videos, but let’s face it – we do need Rick for the “Full
Internet Experience”.
Additional info:
This is “high” priority because the wife will kill me if she doesn’t have her
videos. And the adobe player won’t install on current rawhide due to some
library issues.
“Obi-wan Kenobi, you’re our only hope”
我不确信这个是不是愚人节玩笑,因为不用fedora很多年
linus提的时间还是美国东部时间的3月31日
一直没想过log文件系统和journaling文件系统之间有什么区别。实际上根本就不懂,以为是一回事。其实区别很大,别看中文往往都翻译成日志文件系统
There have been several approaches of implementing
file system consistency; log structured
file system [11] or journaling file system [2].
In log structured file system, all operations are
logged to disk drive. File system is structured
as logs of consequent file system update operations.
Journaling is to store operations on
separate journal space before updating the file
system. Journaling file system writes twice (to
journal space and file system) while log structured
file system does write once. However
journaling approach is popular because it can
upgrade existing non-journaling file system to
journaling file system without losing or rewriting
the existing contents.