全体的に簡略化し、必要と思われる部分を抜粋しました。
-
Not running
アプリは起動されていないか、実行されていたけれどもシステムによって終了されています。
-
Inactive
import socket | |
if __name__ == "__main__": | |
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
sock.connect(("localhost", 9000)) | |
data = "some data" | |
sock.sendall(data) | |
result = sock.recv(1024) | |
print result | |
sock.close() |
// set-up a connection between the client and the server | |
var socket = io.connect(); | |
// let's assume that the client page, once rendered, knows what room it wants to join | |
var room = "abc123"; | |
socket.on('connect', function() { | |
// Connected, let's sign-up for to receive messages for this room | |
socket.emit('room', room); | |
}); |
/*!{id:"msgpack.js",ver:"2.0alpha",license:"MIT",author:"[email protected]"}*/ | |
(function(global) { // @arg Global: window or global | |
// --- header ---------------------------------------------- | |
global.msgpack = { | |
pack: msgpack_pack, // msgpack.pack(mix:Mix, | |
// size:Integer = 16Kb):Uint8Array | |
unpack: msgpack_unpack // msgpack.unpack(view:Uint8Array):Mix | |
}; |
全体的に簡略化し、必要と思われる部分を抜粋しました。
Not running
アプリは起動されていないか、実行されていたけれどもシステムによって終了されています。
Inactive
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
vendor/ | |
.bundle/ | |
node_modules/ | |
Gemfile.lock |
Hi there!
The docker cheat sheet has moved to a Github project under https://github.com/wsargent/docker-cheat-sheet.
Please click on the link above to go to the cheat sheet.
過去にCWM対応させた物はビルド用のデバイス定義を android_device_sharp_xxx というリポジトリで置いてあります。 | |
多分参考になると思います。 | |
recovery/root/init.recovery.qcom.rcが肝で、ここに機種依存の設定を書きます。 | |
これを仕上げるのが結構大変です。 | |
adbやCWMの動作に必要な、/systemにあるサービスのバイナリと使用するライブラリはproprietary-files.txtに書いてextract-files.shを実行してツリーに取り込みます。 | |
これらのファイルはramdiskの/vendor配下に展開されます。 | |
そのままでは/vendorに置いても動作しないので、extract-files.shは取り込みを行う際に/vendorで動く様にパッチします。 | |
また、/vendor/binに実行権限が付与されないのでadd_permission_for_vendor.patchを適用する必要があります。 |
私が使っているCWMと通常起動を分岐させるスクリプトです。 | |
起動時に音量キーを連打するとCWM起動になります。 | |
bootイメージを展開して/initを/init.origにリネームし、代わりにこのスクリプトを/initに配置します。 | |
busybox環境を/binに配置します。 | |
CWM起動用のramdiskをtarで固めて/bin/recovery.tar.gzに配置します。 | |
また、/bin/_suを配置しておくと良いと思います。 | |
SH-04EとSH-06Eはexecでinit.origを実行すると何故か電波を掴まないので、CWMを起動しない場合はreboot recoveryします。 | |
この機種は通常起動のブートイメージをrecoveryに焼いて下さい。 |
#!/bin/bash | |
echo '#!/bin/bash' | |
echo '' | |
echo 'failed_items=""' | |
echo 'function install_package() {' | |
echo 'echo EXECUTING: brew install $1 $2' | |
echo 'brew install $1 $2' | |
echo '[ $? -ne 0 ] && $failed_items="$failed_items $1" # package failed to install.' | |
echo '}' |