- Looked up the pre-upgrade version of nodejs in
/var/log/dpkg.log
, which was0.6.19~dfsd1-7
- Grabbed it from snapshot.debian.org and installed it
- Ran
vault --export vault.json
, which worked perfectly - Re-ran
apt-get dist-upgrade
to move back to Node v0.10.17 - Upgraded npm from
1.1.4~dfsg-2
– the current version inunstable
, which is incompatible with nodejs0.10.17~dfsg1-2
inunstable
– to1.2.18~dfsg-3
fromexperimental
- Installed [email protected] using npm
- Deleted my old
.vault
- Ran
vault --import vault.json
- Joy and kittens
This file contains 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
% gjs subclass-GtkTreeStore-override-row_draggable.js | |
** (gjs:14866): CRITICAL **: g_object_info_get_class_struct: assertion `GI_IS_OBJECT_INFO (info)' failed | |
zsh: segmentation fault gjs subclass-GtkTreeStore-override-row_draggable.js |
This file contains 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
all: csa.so | |
csa.so: csa.c csa.h | |
gcc -fPIC -shared -Wall -Werror -o $@ $< |
This file contains 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 Sherlock Holmes he is always THE man. I have seldom heard her | |
mention hress|his|him under any other name. In hers|her eyes he | |
eclipses and predominates the whole of hress|his|him sex. It was not | |
that she felt any emotion akin to love for Irene Adler. All emotions | |
and that one particularly were abhorrent to hers|her cold precise but | |
admirably balanced mind. She was I take it the most perfect reasoning | |
and observing machine that the world has seen but as a lovress she | |
would have placed herself in a false position. She never spoke of the | |
softer passions save with a gibe and a sneress. They were admirable | |
things for the observress excellent for drawing the veil from men ' s |
I hereby claim:
- I am wjt on github.
- I am wjt (https://keybase.io/wjt) on keybase.
- I have a public key whose fingerprint is 1E68 E58C F255 8883 0164 5B56 3422 DC0D 7AD4 82A7
To claim this, I am signing this object:
This file contains 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
class Reticulator(object): | |
def __init__(self, n): | |
self.n = n | |
self.i = 0 | |
def tick(self): | |
self.i += 1 | |
if (self.i - 1) % 100 == 0 or self.i + 1 >= self.n: | |
sys.stderr.write('[{}/{}]\r'.format(self.i, self.n)) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
<html> | |
<head> | |
<link rel='stylesheet' href='css/drop-theme-basic.css'> | |
<script src='js/tether.js'></script> | |
<script src='js/drop.js'></script> | |
<script> | |
window.addEventListener('load', function onload() { | |
var b = document.querySelector('button'); | |
var drop; |
This file contains 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 InterruptingCowsocket(...args) { | |
var ws = new WebSocket(...args); | |
f(); | |
return ws; | |
function g() { | |
ws.send("moo!"); | |
f(); | |
} | |
This file contains 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
ntfsextents: fix incorrect handling of merged runs | |
After the filesystem is defragmented, ntfsextents produced suspicious output | |
like the following: | |
... | |
47934664704 292540416 | |
47934664704 930017280 | |
47934664704 2045247488 | |
... |
OlderNewer