I hereby claim:
- I am courajs on github.
- I am courajs (https://keybase.io/courajs) on keybase.
- I have a public key ASDQM2f55XEJuta3q5dKF9ZHHjBEu2H4M0MKPvNrCiF8_go
To claim this, I am signing this object:
| 0x1E65F71b024937b988fdba09814d60049e0Fc59d |
| // Load the TCP Library | |
| net = require('net'); | |
| // Keep track of the chat clients | |
| var clients = []; | |
| // Start a TCP Server | |
| net.createServer(function (socket) { | |
| // Identify this client |
I hereby claim:
To claim this, I am signing this object:
| // Compile instructions: | |
| // | |
| // gcc -o click click.c -Wall -framework ApplicationServices | |
| #include <ApplicationServices/ApplicationServices.h> | |
| #include <unistd.h> | |
| int main(int argc, char *argv[]) { | |
| int x = 0, y = 0, n = 1; | |
| float duration = 0.1; |
| # Current unix time in millisecond | |
| function ms() { | |
| echo $(($(date +%s%N)/1000000)) | |
| } | |
| # If we suspend vim (ctrl-z), run the on-suspend command and then | |
| # re-foreground vim. If we exit fully, return to the shell. | |
| function post_vim() { | |
| # 148 status code indicate the previous command was suspended | |
| if [ ! $? = 148 ]; then return; fi |