2010-04-08から1日間の記事一覧

こなしていくのに逆算していこうか

だから、それぞれの期日を決めるために、Learning to Programをどうやってこなして行って何日に終わるかとか決めてみようか。いや、逆に何日までに終わりたいから何日に何をやって何をやってと決めていこうかなと考えていたりする。とりあえず今のところの曖…

Learning to program - The Basics - The Raw Materials - Other Collection Types~

Other Collection Typesからの続き。一応全部先に飛ばしたところを読んでみたけど難解だなぁ、こりゃあの時飛ばしておくべきだったわ。たぶんクリアできるかな。次はこれをクリアしてRaw Materialsの理解の完了、そしてModule & Functionの理解の終了、そし…

Learning to program - The Basics - Modules & Functions

how we use the many, many functions that come with any programming language (often called the library). なるほど、ライブラリと呼ぶのか。プログラミング界隈で結構頻繁に聞く単語だよね。 Note: almost everything in JavaScript is an example of a…

Learning to program - The Basics - Branching

途中で作ったプログラムifminmax.py value = int(raw_input("")) maximum = 100 minimum = 5 if value > maximum: print "Value is out of range!(over maximum)" elif value < minimum: print "Value is out of range!(under minimum)" else: print "Value …

IRC2

とりあえず見つけためぼしいServer群 freenode #debian irc://freenode/debian irc://chat.freenode.net/debian (上と同じらしい。URLの仕組みとかわかってない) Channel Logs http://purl.rikers.org/%23debian/ #python irc.debian.or.jp #debianjp irc.of…