python

jQueryでAjax on Kay framework

jQueryの$.ajax()から送ったデータをKayで受け取りレスポンスを返すまでのコードをメモしておきます。 index.html <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Top Page - jquery_ajax</title> </head> <…</html>

MacにPython, Distribute, virtualenv(, pip)をインストールしたよ

環境 Mac OS X 10.6.4 Python 2.6.6 Distribute 0.6.14 virtualenv 1.5.1 pip 0.8.1 Pythonをインストールする $ sudo port install python26 $ sudo port install python_select $ sudo python_select python26 Distributeをインストールする Distribute is…

Eclipse GanymedeのPlatform版にPDTとPydevを入れてみたよ

あらためてメモしておきます。Platform版を使用しているので、おそらく最小構成だと思います。 Eclipse Ganymedeのインストール http://mergedoc.sourceforge.jp/ 「JREあり」 「なし」でも良かったかも 「pleiades-all-in-one-platform-jre_20080924.zip」 …

Pygameの勉強 #1 (Pygameのインストール)

Pythonのこともゲームプログラミングのことも全然わかってない僕が「Pygame」でゲーム作成に挑戦します。頑張ります。 Pygameのインストール pygame - python game developmentから「pygame-1.8.1.win32-py2.5.msi」をダウンロード。インストール。 C:\Docum…

Pythonの勉強 #3 (「みんなのPython」Chapter 1-6 関数)

名前空間 >>> def rena(usoda = 5): print "嘘だ" * usoda + "ッ!!!" >>> usoda = 10 >>> rena(usoda) 嘘だ嘘だ嘘だ嘘だ嘘だ嘘だ嘘だ嘘だ嘘だ嘘だッ!!! >>> rena() 嘘だ嘘だ嘘だ嘘だ嘘だッ!!! >>> ふむふむ。 書き換え可能なオブジェクト リストや…

Pythonの勉強 #2 (「みんなのPython」Chapter 1-5)

Pythonの勉強、一ヶ月近くやってなかったのか…何やってたんだ俺は…。 if文 >>> number = 10 >>> if number == 10 and type(number) == int: print "numberは整数の10です" elif number == 5 or type(number) == int: print "numberは5か整数だよ" else: prin…

Pythonの日本語処理とか

環境 Windows XP SP3 Python 2.5.2 Aptana Studio 問題 コード # -*- coding: utf-8 -*- a = "あいうえお" print a b = u"かきくけこ" print b 結果 あいうえお こんな感じで、実行しても「あいうえお」しか表示されない(unicode文字列が表示されない)。 …

PythonのIDE、Aptana StudioとPydevをインストールしたよ

インタラクティブシェルもいいけど、IDEもね。ってことで(?)、Aptana StudioとPydevをインストールしました。 環境 Windows XP SP3 Aptana Studioのインストール http://aptana.com/に行き、オレンジ色の「Download Now」からAptana Studioのインストーラ…

Pythonの勉強 #1 (「みんなのPython」Chapter 1-1~4)

今回はPythonの勉強。 使用する本 オライリーじゃないです。オライリー本はこの本を読み終えたら買ってみる予定。みんなのPython作者: 柴田淳出版社/メーカー: ソフトバンククリエイティブ発売日: 2006/08/22メディア: 単行本購入: 11人 クリック: 624回この…