牌語備忘録 -pygo

あくまでもメモです。なるべくオフィシャルの情報を参照してください。

牌語備忘録 -pygo

2013-11-06から1日間の記事一覧

Github にある .gitignore テンプレ集から wget でダウンロードするメモ

Git

(MacOSX10.8, git1.8.1.3) github.com/github/gitignore いろいろある github/gitignore · GitHub 問題 参考サイトの真似してみたがエラー出てダウンロードできなかった。 ERROR: The certificate of ‘raw.github.com’ is not trusted. ERROR: The certifica…

Android 開発で SharedPreferences に保存した値を確認するメモ( IntelliJ IDEA CE 利用している場合)

(IntelliJ IDEA 12) Run して エミュレータを起動させる メニューバーから Tools > Android > Monitor (DDMS included) で Android Debug Monitor 起動 File Explore で /data/data/[パッケージ名]/shared_prefs/[ファイル名].xml を選択 パッケージ名(例…

Python でデザパタ -- アダプタ/Adapter

(Python2.7) Adapter 元ネタ アダプタ Ruby 2.0.0 デザインパターン速攻習得[Adapter][Design Pattern] - 酒と泪とRubyとRailsと デザインパターン-Adapter CapmNetwork Adapter.py #!/usr/bin/env python # *-# -*- coding: utf-8 -*- class Adaptee(object…