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
*.o | |
main | |
tags |
I hereby claim:
- I am jsn on github.
- I am jsn (https://keybase.io/jsn) on keybase.
- I have a public key whose fingerprint is 084C 180A B1BD 9CF1 8259 A9C7 CE99 A44D D4D6 9326
To claim this, I am signing this object:
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
= rbot = | |
VM goes down on Feb 7. Before that, everything should be moved to github. | |
== ToDo == | |
* [x] organization is created on github (done: ruby-rbot) | |
* [ ] apoc's fork becomes the mainline | |
* [ ] a repo under 'ruby-rbot' is created from apoc's fork | |
* [ ] the old mainline becomes a branch in new repo |
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
# Maintainer: Daniel J Griffiths <[email protected]> | |
# Maintainer: perlawk | |
pkgname=tekui | |
pkgver=1.11 | |
pkgrel=1 | |
pkgdesc="A small, freestanding and portable GUI toolkit written in Lua and C." | |
arch=('i686' 'x86_64') | |
url="http://tekui.teklib.org" | |
license=('GPL') |
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
package main | |
import ( | |
"fmt" | |
"flag" | |
"log" | |
"os" | |
"encoding/binary" | |
"bufio" | |
) |
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
package main | |
import ( | |
"fmt" | |
"os" | |
"flag" | |
"log" | |
"bufio" | |
) |
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
def make_ws url, method | |
ws = WebSocket::Client::Simple.connect url | |
u1 = "ws(#{url.split(WS_BASE).last})" | |
now = 0 | |
prg = 0 | |
sf = self | |
ws.on :open do | |
sf.debug "*** #{u1} connected" | |
now = 0 |
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
(function () { | |
var mobileElem = document.getElementById('mobile-link'), | |
mobileUrl; | |
if (mobileElem !== undefined && mobileElem !== null) { | |
mobileUrl = mobileElem.getAttribute('href'); | |
} | |
if (getCookie('noRedirect') !== 'enabled' && mobileUrl !== undefined) { |
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
/* # to compile: | |
* $ gcc -march=native -O3 -Wall -o normalize normalize.c | |
* # to run tests and benchmark: | |
* $ time ./normalize chunky # tests/benchmarks chunky implementation | |
* $ time ./normalize naive # tests/benchmarks naive implementation | |
* $ time ./normalize strdup # benchmarks strdup for comparison | |
*/ | |
#include <stdio.h> | |
#include <string.h> |
OlderNewer