This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MetaTrader4,5 | |
LimeChat | |
foobar2000 | |
putty | |
softether vpn server management | |
洞窟物語 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from gzip import GzipFile | |
from StringIO import StringIO | |
class GZOStream: | |
def __init__(self): | |
self.sio = StringIO() | |
self.gzf = GzipFile(fileobj=self.sio, mode='wb') | |
def write(self,data): | |
self.gzf.write(data) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/etc/init.dに置く | |
DIRを適切に書き換える | |
chkconfig nodead on | |
service nodead start | |
として起動する | |
# どうやらpm2に自動構築コマンドがあるみたいだけどうまくいかない | |
pm2 startup |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
internal_ip='10.0.0.0/8' | |
external_ip='172.16.0.0/12' | |
iptables -F | |
iptables -t nat -F | |
iptables -P INPUT ACCEPT | |
iptables -P OUTPUT ACCEPT | |
iptables -A FORWARD -i eth0 -o eth1 -s $internal_ip -j ACCEPT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+modulename | |
+roles | |
+submodules | |
+tasks | |
+main.yml | |
+vars | |
+main.yml | |
+site.yml | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/colopl | |
https://github.com/enish-dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
最近android版をやってた。 | |
これが流行ってるのは非常に納得がいく。 | |
* 余計なものがない、複雑なものがない | |
余計なUI(操作)がない(ユーザーにやさしい) | |
余計なチュートリアルがない(ユーザーにやさしい) | |
余計なシナリオがない(ユーザーにやさしい、運営にやさしい) | |
余計な選択肢がない(ユーザーにやさしい、デバッガーにやさしい) | |
余計なアップデートがない(開発者にやさしい、運営にやさしい) | |
余計なゲーム時間がない(サーバーにやさしい、ユーザーにやさしい) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
thriftの環境設定 | |
c: | |
libevent-devel | |
glib2-devel | |
c++: | |
boost-devel |