http://www.intel.com/products/desktop/motherboards/db-D525MW/D525MW-overview.htm
Intel Atom processor D525 Single channel DDR3, 1066/800, SO-DIMM(2 slots) 8 USB ports 2 Serial ATA (3.0 Gb/s)
| *markdown-cheat-sheet.jax* Markdown カンニングペーパー | |
| 作者: Kyo Nagashima <[email protected]> | |
| バージョン: 0.04 | |
| 説明: Markdown 記法のカンニングペーパーです。 | |
| 1. 記法の例 |markdown-cheat-sheet-examples| | |
| 1.1 段落 |markdown-cheat-sheet-paragraph| | |
| 1.2 改行 |markdown-cheat-sheet-linebreak| | |
| 1.3 テキストの強調 |markdown-cheat-sheet-emphasis| |
http://www.intel.com/products/desktop/motherboards/db-D525MW/D525MW-overview.htm
Intel Atom processor D525 Single channel DDR3, 1066/800, SO-DIMM(2 slots) 8 USB ports 2 Serial ATA (3.0 Gb/s)
| # by sgk | |
| import datetime | |
| class TZ(datetime.tzinfo): | |
| def __init__(self, name, offset): | |
| self.name_ = name | |
| self.offset_ = offset | |
| def utcoffset(self, dt): | |
| return datetime.timedelta(hours=self.offset_) |
| NITE | |
| Session | |
| Detector | |
| idea | |
| ・skypeとkinectの併用 | |
| openNIの関数群はWin32APIと似ている | |
| memory | |
| file | |
| INI |
| #!/usr/bin/python | |
| # vim:set fileencoding=utf-8 sw=2 ai: | |
| import sqlite3 | |
| import datetime | |
| import re | |
| SQL = ''' | |
| select | |
| name, version, time, author, text |
| tasks: | |
| @echo Makefile for FooBar | |
| @echo | |
| @echo Usage: make [task] | |
| @echo | |
| @echo Tasks: | |
| @ruby -ne 'puts " #{$$1.ljust(24)} => #{$$2}" if $$_ =~ /^([a-z\-]*):(?:.*)#\s*(.*)$$/' < Makefile | |
| foo-task: # タスクの説明 | |
| echo FOO TASK |
| import oscP5.*; | |
| OscP5 oscP5; | |
| PVector posePosition; | |
| boolean found; | |
| float eyeLeftHeight; | |
| float eyeRightHeight; | |
| float mouthHeight; | |
| float mouthWidth; | |
| float nostrilHeight; |
| <!-- | |
| これだけで gist 埋め込みされるっぽい | |
| --> | |
| <html> | |
| <body> | |
| <script src="http://gist.github.com/2059.js"></script> | |
| </body> | |
| </html> |
| # -*- coding: utf-8 -*- | |
| """ | |
| This scripts reqire a third party module 'requests'. | |
| You can get it from PyPI, i.e. you can install it using | |
| easy_install or pip. | |
| http://docs.python-requests.org/en/v0.10.4/ | |
| Original source code is written by shin1ogawa, which is in Java. |