2011-01-01から1年間の記事一覧

なんという無茶振り

PyCon JP 2011 LT No.10 View more presentations from Yoji Takeuchi LTは申し込んだのですが、補欠のおケツでした。 お気楽にPCも持たずにUST撮影席の後ろで見ていました。 が、裏ではtakanory: @ytakeuch LTいけますか?(17:36)見てませんw。ラス3の西本…

PyConJP 2011に参加しました1 #pyconjp

Google Open Call Android ADKの審査を通りました

表題の通りです。 Hello Round II Participants-- Congratulations! After careful consideration and submission review by our expert judges, your projects have been identified as the top entries for your region. You will have until the Tokyo GD…

(第2回)Python micro Hack-a-thon 前半

BGV : 劇場版マクロスF~イツワリノウタヒメ~ Blu-ray八ヶ岳の山小屋でハッカソンを行いました。 http://atnd.org/events/18330参加者は @terapyon @kara_d @bodegem @koutakeuchi @ytakeuch の五名でした。ハッシュタグは #upyhack and/or #八ヶ岳 です。ま…

Plone 4.1サイト構築とテーマ変更

Ploneのテーマで「plonetheme.earthlingtwo」を使いたかったのですが、Plone 4.1 or laterとなっていたためPlone 4.1をインストールしました。インストールにはUnified Installerを使いました。http://launchpad.net/plone/4.1/4.1/+download/Plone-4.1-Unif…

Android ADK

Google Developer Day の Open Callにエントリーするために勉強を始めました。 http://googledevjp.blogspot.com/2011/07/google-developer-day-open-call.html資料はこちら http://developer.android.com/guide/topics/usb/adk.html機材はモトローラのXOOM

(第1回)Python micro Hack-a-thon

ATNDで初めてイベントを主催しました。 http://atnd.org/events/18033八ヶ岳の山小屋でハッカソンを行いました。 参加者は @jhotta @okuji @meiarashi @ytakeuchの四名でした。ハッシュタグは #upyhack または #八ヶ岳 です。まずは、やることを下記のように…

山小屋合宿

山小屋合宿に興味のある方はこちら⇒ @__yatsutagake__ のプロフィールを確認していただき、フォロー、リプライ等お願いいたします。

Poken API with PyQt

Poken APIで当初はBasic認証を使っていたのですが、OAuth2を使うことにしました。APIへのアクセス権を許可するためのIDとパスワードの入力画面はこのようになります。 許可しますかという画面はこのようになります。 APIを使うとこのようなカードの画像を取…

Porting python-on-a-chip to PIC32

gumiさんで半田付けする可能性があったのでATNDで表明しました。 CTOの堀内さまから許可をいただきました。ありがとうございます。いろいろと用意しました。PIC32 Starter Kit(http://www.microchip.com/stellent/idcplg?IdcService=SS_GET_PAGE&nodeId=2615…

(第10回)Python mini Hack-a-thon

BGV : 東のエデン 劇場版I The King of Eden Blu-ray今月もこちら(http://atnd.org/events/16923)に参加してきました。やろうとしたことはPIC32にpython-on-a-chipを移植することと、Poken APIとPyQtを使ったアプリを作ることです。

3. Dexterityをファイルから使えるようにする(前準備)

Dexterity Developer Manualのサンプルのexample.conferenceの完成品を持ってきて、まず使えるか確かめてみます。buildout.cfgを下記のように書き換えます。 extensions = mr.developer buildout.dumppickedversions extends = base.cfg # versions.cfg http…

4.2 SchemaとFTI

Schemaを書きます。example.conference/example/conference/__init__.py from zope.i18nmessageid import MessageFactory _ = MessageFactory("example.conference") example.conference/example/conference/presenter.py from five import grok from zope i…

4.1 packageのための最小限のファイル

ここ(http://plone.org/products/dexterity/documentation/manual/developer-manual/pre-requisites/creating-a-package)の通りにファイルを追加します。example.conference/setup.py from setuptools import setup, find_packages import os version = '1.0…

4. Dexterityをファイルから使えるようにする

一からパッケージを作成する方法をDeveloper Manualの通りに進めていきます。 元のexample.conferenceはzinstance/srcにあるので、別名にしておきます。zinstance/srcでpasterを実行します。 # ../bin/paster create -t plone example.conferencebuildout.cf…

2. DexterityをTTW(Through The Web)で使えるようにする。

buildout.cfgを下記のように書き換えます。 extends = base.cfg # versions.cfg http://good-py.appspot.com/release/dexterity/1.0?plone=4.0.7 # http://dist.plone.org/release/4.0-latest/versions.cfg versions = versions develop =eggs = Plone Pillow…

1.Ploneのインストール

今日現在のバージョンは4.0.7です。 Plone-4.0.7-UnifiedInstallerをここ(http://plone.org/products/plone)からダウンロードしてインストールします。 # tar xvfz Plone-4.0.7-UnifiedInstaller.tgz # cd Plone-4.0.7-UnifiedInstaller # ./install.sh stan…

(第9回)Python mini Hack-a-thon

こちら(http://atnd.org/events/15877)に参加してきました。Ploneの新しいContent Type FrameworkのDexterityを触りました。前回は去年の一月末にいじったままでしたが、2011/05/20に1.0がリリースされたので良い機会ということで再開しました。今回の目的は…