(ert-deftest foo ()
(assert nil))
Now: M-x ert RET foo RET
Emacs makes discovery easier.
from lxml import html | |
import requests | |
import unicodecsv as csv | |
import argparse | |
import json | |
def clean(text): | |
if text: | |
return ' '.join(' '.join(text).split()) |
(A book that I might eventually write!)
Gary Bernhardt
I imagine each of these chapters being about 2,000 words, making the whole book about the size of a small novel. For comparison, articles in large papers like the New York Times average about 1,200 words. Each topic gets whatever level of detail I can fit into that space. For simple topics, that's a lot of space: I can probably walk through a very basic, but working, implementation of the IP protocol.
#!/usr/bin/env zsh | |
print -n "Does the new linux and zfs-git use the same kernel verision? | |
https://www.archlinux.org/packages/core/x86_64/linux/ | |
https://aur.archlinux.org/packages/zfs-git/ | |
" | |
read -q REPLY | |
if [[ $REPLY == "y" ]] ; then | |
set -x |
for f in $(find $1 -iname "*.wsp"); do | |
if [ -a $f ]; | |
then /opt/graphite/bin/whisper-set-aggregation-method.py $f max; | |
fi; | |
done |
{'src_node_id': 94, 'dst_serv_id': 27, 'src_seqn': 20, 'ip_dst': '225.1.3.5', 'site_name': 'waas_wapcgusp1c1', 'dst_node_id': 127, 'src_timestamp': 1383591358L, 'source': 'poc1', 'datagram_proto': 'nsns', 'timestamp': 1383591342.295468, 'ip_proto': 17, 'nsns_datetime': datetime.datetime(2013, 11, 4, 18, 55, 58), 'net': 1, 'payload': '\x00\x00\x00\x08\x00\x00\x00\x07A\xcf\xd1X\x1f\x19\x94\xf2A\xcf\xcc\x1d:\xff\xeaN\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00O\x00\x00\x00\x00\x00\x01\x00U\x00\x00\x00\x00\x00\x01\x00Z\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00_\x00\x00\x00\x00\x00\x00\x00\x00\x1e\xe2V\x88\x00\x |
HA! You've been forked! | |
!/usr/bin/env python | |
import pdb | |
expected_rngs = range(0,10) | |
file_list = [0, 1, 2, 3, 4, 5, 6, 8, 9] | |
for antenna in expected_rngs[:]: | |
print "*********************************************************************" |