(ert-deftest foo ()
(assert nil))Now: M-x ert RET foo RET
Emacs makes discovery easier.
| @namespace url(http://www.w3.org/1999/xhtml); | |
| @-moz-document url("http://www.4clojure.com/") { | |
| body { | |
| filter:invert(100%); | |
| background-color:black; | |
| } | |
| #footer { | |
| visibility: hidden; |
| root(p720config.waas.lab)> cfgmgr | |
| root(p720config.waas.lab)> udfcreate -d /dev/usbms0 -f3 | |
| root(p720config.waas.lab)> mount -Vudfs -o log=NULL /dev/usbms0 /usb_mnt | |
| root(p720config.waas.lab)> ls /usb_mnt | |
| lostfile.dir | |
| root(p720config.waas.lab)> touch /usb_mnt/me |
Data Missing from when the NOC went down.
Populators listen to atlas:50000
(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.
| 139 jhaus@flexo ~/src/mu (git)-[master] % make :( | |
| CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /home/jhaus/src/mu/missing aclocal-1.15 -I m4 | |
| cd . && /bin/sh /home/jhaus/src/mu/missing automake-1.15 --gnu | |
| Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in m/\${ <-- HERE ([^ \t=:+{}]+)}/ at /usr/bin/automake-1.15 line 3936. | |
| CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /home/jhaus/src/mu/missing autoconf | |
| /bin/sh ./config.status --recheck | |
| running CONFIG_SHELL=/bin/sh /bin/sh ./configure --no-create --no-recursion | |
| checking for a BSD-compatible install... /usr/bin/install -c | |
| checking whether build environment is sane... yes | |
| checking for a thread-safe mkdir -p... /usr/bin/mkdir -p |
| matrix = [] | |
| arr = ['a', 'b', 'c', 'd'] | |
| rows = arr.length/size // can't have this in loop declaration because it changes size every time we pop | |
| for (row = 0; row < 2; row++) { | |
| matrix[row] = [] | |
| for (col = 0; col < size; col++) { | |
| console.log(row, col, matrix) | |
| matrix[row][col] = arr.shift() // pop gives us the last element and makes a transposed array, we need shift |
Read The Arch Way, fall in.
I can’t believe how smoothly this went…
systemctl suspend works, but doesn’t wake properly.| 1 jhaus@flexo ~/src % virtualenv ~/venv/qtile-test-dev :( | |
| Using base prefix '/usr' | |
| New python executable in /home/jhaus/venv/qtile-test-dev/bin/python | |
| Installing setuptools, pip...done. | |
| jhaus@flexo ~/src % . ~/venv/qtile-test-dev/bin/activate | |
| jhaus@flexo ~/src % cd qtile | |
| jhaus@flexo ~/src/qtile (git)-[develop] % pip install --upgrade pip | |
| You are using pip version 6.1.1, however version 7.1.0 is available. | |
| You should consider upgrading via the 'pip install --upgrade pip' command. | |
| Collecting pip |