2014-12-07から1日間の記事一覧

GitHubのShowcase

面白そうなのをメモ https://github.com/showcases/3d-modeling https://github.com/showcases/security https://github.com/showcases/machine-learning https://github.com/showcases/music

stlを操作するソフトウェア

STLのブーリアン演算 https://github.com/sshirokov/csgtool複数のSTLをまとめる https://github.com/sshirokov/stltwalker

GCode Viewer

http://gcode.joewalnes.com/ https://github.com/joewalnes/gcode-viewer

thingiverseのテンプレート

なんていうのかわかんないけどメモ thing tracker siteというのか https://github.com/garyhodgson/githubiverse-template http://garyhodgson.github.io/githubiverse-tst/ http://garyhodgson.com/reprap/2014/06/thing-tracker-site-template/ http://gar…

erlang appの起動

ebin/cowboy.appを起動したい http://stackoverflow.com/questions/16675767/how-to-run-erlang-rebar-build-application erl -noshell -pa ebin -s cowboy {"init terminating in do_boot",{undef,[{cowboy,start,[],[]},{init,start_it,1,[]},{init,start_…

Pythonのクラスの中でマルチスレッド

http://stackoverflow.com/questions/3221655/python-threading-string-arguments args=()のタプルの中は引数が一つの時はカンマを入れる import threading import time class Hoge: def __init__(self): Hoge.i = 0 def hoge(self,num): time.sleep(num) pr…

websocketの実装

SimpleHTTPServer.SimpleHTTPRequestHanlderを使った実装 こっちのほうがBaseHTTPRequestHandlerに近い? https://gist.github.com/SevenW/47be2f9ab74cac26bf21SocketServer.StreamRequestHandlerを使った実装 https://gist.github.com/jkp/3136208