I hereby claim:
- I am npcode on github.
- I am eungjun (https://keybase.io/eungjun) on keybase.
- I have a public key ASDyM5qWg2nlsp-CterP6XvNqEjGkJMr1HGeUCopFlNR6Ao
To claim this, I am signing this object:
crypto = require 'crypto' | |
gfm = (text) -> | |
# Extract pre blocks | |
extractions = {} | |
text = text.replace /<pre>(\n|.)*?<\/pre>/gm, (match) -> | |
md5 = crypto.createHash('md5').update(match).digest('hex') | |
extractions[md5] = match | |
'{gfm-extraction-' + md5 + '}' |
echo ' * | |
* | |
* * | |
* * | |
* * | |
** ** | |
* * | |
* * | |
* * | |
* |
<html> | |
<!-- You may need to download them from https://github.com/brix/crypto-js/tree/release-3.1.2/build --> | |
<script src="rollups/sha1.js"></script> | |
<script src='components/lib-typedarrays-min.js'></script> | |
<body> | |
<script> | |
function sha1sum() { | |
var oFile = document.getElementById('uploadFile').files[0]; | |
var sha1 = CryptoJS.algo.SHA1.create(); | |
var read = 0; |
// Try to render and wait at most 5 seconds. | |
final String[] rendered = new String[1]; | |
@SuppressWarnings("deprecation") | |
Thread marked = new Thread() { | |
@Override | |
public void run() { | |
try { | |
rendered[0] = (String) ((Invocable) engine).invokeFunction( | |
"marked", source, options); | |
} catch (Exception e) { |
# Settings for Zulip Voyager | |
### MANDATORY SETTINGS | |
# | |
# These settings MUST be set in production. In a development environment, | |
# sensible default values will be used. | |
# The user-accessible Zulip hostname for this installation, e.g. | |
# zulip.example.com | |
EXTERNAL_HOST = 'zulip.example.com' |
[2015/11/20 10:00:10 UTC] [WARN] Unsupported post type: message, channel_join | |
[2015/11/20 10:00:10 UTC] [WARN] Unsupported post type: message, channel_join | |
[2015/11/20 10:00:10 UTC] [WARN] Unsupported post type: message, channel_join | |
[2015/11/20 10:00:10 UTC] [WARN] Unsupported post type: message, channel_join | |
[2015/11/20 10:00:10 UTC] [WARN] Unsupported post type: message, channel_join | |
[2015/11/20 10:00:10 UTC] [WARN] Unsupported post type: message, channel_join | |
[2015/11/20 10:00:10 UTC] [WARN] Unsupported post type: message, channel_join | |
[2015/11/20 10:00:10 UTC] [WARN] Unsupported post type: message, channel_join | |
[2015/11/20 10:00:10 UTC] [WARN] Unsupported post type: message, channel_join | |
[2015/11/20 10:00:10 UTC] [WARN] Unsupported post type: message, channel_join |
#!/bin/sh | |
while getopts v OPTION ; | |
do | |
case "$OPTION" in | |
v) VERBOSE=true ; shift ;; | |
esac | |
done | |
urls=$(grep -i -E -o 'https?://[^ )]*[^), ]' $1) |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
number=1 | |
while read line | |
do | |
echo $line | grep -E '^[0-9][0-9]*' > /dev/null | |
if [ "$?" = "0" ]; then | |
echo $line | sed "s/^[0-9][0-9]*\./$number\./" | |
number=`echo $number+1|bc` |
echo "hello"