星期二, 六月 30, 2009
[讨论班]做技术报告的时间控制
所以一般的技术报告时间不超过四十五分钟。
要详略得当,一个博士四五年的工作也都在四十五分钟讲完。
宏观的技术介绍,2:1,45页ppt,20分钟讲完。比例越高越难讲,既要节奏慢,又要把内容讲完。
技术讨论,1:1
内容的选择
要focus到最关键的技术上,不要连实现细节都讲,生怕自己做的东西别人不知道。
星期五, 六月 26, 2009
projecteuler进展
星期四, 六月 25, 2009
第一个one-liner的程序
Euler Problem 16
215
= 32768 and the sum of its digits is 3 + 2 + 7 + 6 + 8 = 26.
What is the sum of the digits of the number 21000
?
print sum(int(i) for i in str( 2 ** 1000 ))
星期四, 六月 18, 2009
Re: [Readings]genius?
So what does create genius or extreme talent? Musicians have an old joke about this: How do you get to Carnegie Hall from here? Practise.
And as cellist Yo-Yo Ma once said, the most proficient and renowned musicians are not necessarily those who outshone everyone as youths, but rather those who had "fire in the belly".
So is the ideal of innate genius dead? If not, should we kill it? Certainly a clear-eyed analysis shows that "genius" is really a set of exceptional skills cultivated through disciplined study. We should probably shelve the notion of genius as an innate, almost irrepressible gift and speak instead of expertise, talent or even greatness - terms that hint at the work underlying supreme accomplishment.
Granted, this isn't as fun, and recognising the work factor is sobering. It is disappointing to realise all your mom's blather about how smart you are doesn't mean jack, and that you have to work demonically regardless. But as something to believe in, genius is not looking so smart. You want to play the big stage, you got to put in the time.
[Readings]genius?
http://terrytao.wordpress.com/career-advice/does-one-have-to-be-a-genius-to-do-maths/
How to be a genius
http://www.newscientist.com/article/mg19125691.300-how-to-be-a-genius.html?page=1
星期三, 六月 17, 2009
星期一, 六月 15, 2009
星期四, 六月 11, 2009
[News]China dominates NSA-backed coding contest
05年是为sky赢得WCG而骄傲。
今年是为crazyb0y赢得TCO而骄傲。
真是由衷的高兴。
星期四, 六月 04, 2009
星期二, 六月 02, 2009
[study]python
Practicing Python
There's many ways to get better acquainted with Python. If you like puzzles and/or math, then there's two ideal resources for you:
The Python Challenge is a series of riddles that can be solved with (usually short) Python scripts.
Project Euler is for the more mathematically inclined and consists of a ever-growing set of problems that will probably test your problem solving skills much more than your programming skills. Nonetheless, if you need an excuse for programming, and this is your type of thing, then you should have fun.
source: http://inst.eecs.berkeley.edu/~selfpace/class/cs9h/tips.shtml

