2010-05-01から1ヶ月間の記事一覧

Learning to Program - Advanced Topics - Regular Expressions

Regular expressions are groups of characters that describe a larger group of characters. So that we can try out the examples you will need to import the re module and use it’s methods. For convenience I will assume you have already importe…

Emacsはじめる

いや、もうはじめてるけど。久々の更新ですね。Xperia購入したので、あれでした。というか、なぜかブログ内で編集とか出来なくなってるんですけど、どうしてこうなった。なんかhatena-stとかいうのにスクリプト任せるようにしたからか。とりあえずブックマー…

Learning to Program - Advanced Topics - What's in a name?

久々にAlan.Gauld先生の下に帰ってきた。帰ってきました先生!まだLearn Python The Hard Way終わってないけどね^^Python's approach In Python there are a total of four possible namespaces (or scopes): 1. Built in scope - names defined within Py…

さて、ほとんどLearn Python The Hard Wayを終わってしまってこれからどうするか

Learning to Program - Advanced Topics それでもやはり主軸はPythonにあるべき。Pythonista Docutils - ReStrucuturedText周りのオートメーションの構築 Flask v0.1 documentation Git Python Cheese shop Emacs Lisp Python HTML5 Canvas SVG インフォメー…

Learn Python The Hard Way - Exercise 17: More Files~

Exercise 17: More Filesの続きからというのが正確か。 2. This script is really annoying. There’s no need to ask you before doing the copy, it prints too much out to the screen. Try to make it more friendly to use by removing features. ここか…

Learn Python The Hard Way - Exercise 6: Strings And Text~

Exercise 6: Strings And Text Strings also can contain the format characters you’ve discovered so far. You simply put the formatted variables in the string, and then a % (percent) character, followed by the variable. The only catch is that …

reStructuredTextなるものを書いてみんとするなり

A ReStructuredText Primerを読んでみるなり。その前にEmacs上でtest用のディレクトリ作ってみたいなぁと思ってぐぐる。 まずこれを試す。 Ctrl + x ↓ d ↓ RET ↓ + ↓ ディレクトリ名を入力 ↓ RET って文字通り+を打つんだった。ディレクトリの追加だから+な…

Emacs - Backspace

Emacs Backspaceでぐぐると英語圏日本語圏ともに色々なやり方が載っているが、とりあえずよく違いもわからないので、一番シンプルにまとまっているこの方のを採用することにした。tips for .emacs http://www.ayu.ics.keio.ac.jp/~mukai/tips/dot-emacs.html…

WindowsのNTEmacs周りでの設定with Autohotkey

とりあえず、Autohotkeyの色々なキー設定と干渉しまくっているのでそれをなんとかしなければいけない。Autohotkeyで常時監視って出来るんだろうか、IfWinActive, emacsみたいな感じで。たぶん、タイマーを使うことになるのかなぁ。延々とタイマーを回すし、1…

Emacs@Windows + MS-IME

NTEmacs 22BASE (日本語インライン変換 & 半透明) http://ntemacsjp.sourceforge.jp/matsuan/IndexJp.htmlとりあえずこのページから1. Download https://sourceforge.jp/projects/ntemacsjp/files/ に沿ってダウンロードしてこればおk。それを普通に展開す…

reStructuredText

reStructuredTextに色々なものを辿って興味が出てきたので実践してみようと思い立ち。レンタルサーバーでXreaを借りていたのを思い立ち、FlaskのTutorialをやろうという意気込みだったのにごにょごにょしていた。reStructuredTextはMarkdownやTextileのよう…

Flask - Tutorial

http://flask.pocoo.org/docs/tutorial/とりあえずチュートリアルを始めようと思うが、色々とFlaskについてぐぐるというかRSS取得していてやっと理解したのが、Flaskってのは最小で構成できるけど他からパーツ持ってきてほとんどやってるだけだから。的なこ…

Learn Python The Hard Way

Exercise 2: Comments And Pound Characters Exercise 3: Numbers And Math Exercise 4: Variables And Namesなんか読んでると例文とか説明しろって部分がよくない気がする。それでもそういうのをスルーしてプログラミングに集中すれば勉強にはなるが。Alan.…