Skip to content

Instantly share code, notes, and snippets.

@bdowning
bdowning / Xorg.0.log
Created July 17, 2012 01:05
nouveau fence interrupt patch dmesg dump
[ 190.421]
X.Org X Server 1.12.3
Release Date: 2012-07-09
[ 190.422] X Protocol Version 11, Revision 0
[ 190.422] Build Operating System: Linux 3.4.4-3-ARCH x86_64
[ 190.422] Current Operating System: Linux saphira 3.5.0-rc7-ARCH-00027-g8772d16 #1 SMP PREEMPT Mon Jul 16 19:21:24 CDT 2012 x86_64
[ 190.422] Kernel command line: root=UUID=89ccd806-db3e-49d2-a338-5efb0c5829dc ro initrd=../initramfs-linux-git.img BOOT_IMAGE=../vmlinuz-linux-git
[ 190.423] Build Date: 09 July 2012 03:59:39PM
[ 190.423]
[ 190.424] Current version of pixman: 0.26.2
@bdowning
bdowning / Xorg.0.log
Created July 17, 2012 03:14
(useless) hang report
[ 92.692]
X.Org X Server 1.12.3
Release Date: 2012-07-09
[ 92.692] X Protocol Version 11, Revision 0
[ 92.692] Build Operating System: Linux 3.4.4-3-ARCH x86_64
[ 92.692] Current Operating System: Linux saphira 3.5.0-rc7-ARCH-00028-gd65e138-dirty #3 SMP PREEMPT Mon Jul 16 21:59:28 CDT 2012 x86_64
[ 92.692] Kernel command line: root=UUID=89ccd806-db3e-49d2-a338-5efb0c5829dc ro initrd=../initramfs-linux-git.img BOOT_IMAGE=../vmlinuz-linux-git
[ 92.692] Build Date: 09 July 2012 03:59:39PM
[ 92.692]
[ 92.692] Current version of pixman: 0.26.2
@bdowning
bdowning / console spam
Created June 10, 2014 18:04
Windows 7 npm update failure from bare node_modules (hot cache)
npm ERR! If you need help, you may report this *entire* log,
npm ERR! including the npm and node versions, at:
npm ERR! <http://github.com/npm/npm/issues>
npm ERR! System Windows_NT 6.1.7601
npm ERR! command "C:\\Program Files (x86)\\nodejs\\\\node.exe" "C:\\Program File
s (x86)\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "update"
npm ERR! cwd C:\Users\bdowning\Documents\GitHub\mrym-site
npm ERR! node -v v0.10.29
npm ERR! npm -v 1.4.14
const grammar = compileGrammar`
Expr
= Alternation ${ nth(1) }
Alternation
= Alternation '|' Sequence ${ leftAssoc(pick('alternation', 1, 3)) }
| Sequence ${ nth(1) }
Sequence