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
| It's Cathy again . i am glad i can help. this is my skpe ID cathy1988881. |
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
| Promise = (fn) -> | |
| state = 'pending' | |
| value = deferred = null | |
| resolve = (newValue) -> | |
| if newValue and typeof newValue.then is 'function' | |
| newValue.then resolve, reject | |
| return | |
| state = 'resolved' | |
| value = newValue |
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/sh | |
| echo "assumes java 7 is installed (OpenJDK version)" | |
| #pre dependencies | |
| sudo apt-get install git-core pkg-config libtool automake make g++ connect-proxy unzip python | |
| export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64 | |
| #install zeromq | |
| git clone git clone git://github.com/zeromq/libzmq.git |
OlderNewer