Skip to content

Instantly share code, notes, and snippets.

View duckinator's full-sized avatar

Ellen Marie Dash duckinator

View GitHub Profile
docker run -v "$(pwd):/tmp/work" -w /tmp/work whaledo/os-development-x86 make BUILD_TYPE=nightly NAME_SUFFIX=-"$(date +'%Y-%m-%d')" iso

Lisp thingy

  1. should be small
  2. easily embeddable
  3. inspired by scheme, probably, but a lot simpler/less full-featured

requirements

should be small/easily embeddable

src/kernel.exe: file format elf32-i386
Disassembly of section .text:
00100000 <kernel_code_start>:
100000: 02 b0 ad 1b 03 00 add 0x31bad(%eax),%dh
100006: 00 00 add %al,(%eax)
100008: fb sti
src/kernel.exe: file format elf32-i386
Disassembly of section .text:
00100000 <kernel_code_start>:
100000: 02 b0 ad 1b 03 00 add 0x31bad(%eax),%dh
100006: 00 00 add %al,(%eax)
100008: fb sti
src/kernel.exe: file format elf32-i386
Disassembly of section .text:
00100000 <kernel_code_start>:
100000: 02 b0 ad 1b 03 00 add 0x31bad(%eax),%dh
100006: 00 00 add %al,(%eax)
100008: fb sti
src/kernel.exe: file format elf32-i386
Disassembly of section .text:
00100000 <kernel_code_start>:
100000: 02 b0 ad 1b 03 00 add 0x31bad(%eax),%dh
100006: 00 00 add %al,(%eax)
100008: fb sti
#!/bin/bash
# https://help.github.com/articles/changing-author-info/
export NEW_NAME="your correct name here"
export NEW_EMAIL="newemail@example.com"
for EMAIL in {oldemail1@example.com,oldemail2@example.com,oldemail3@example.com}; do
git filter-branch -f --env-filter '
@duckinator
duckinator / 1-code.js
Last active April 25, 2017 07:17
Attempt to generate a CSV file from stats on SoundCloud. Should work on any vaguely-table-like element, if you change the selector. Mostly works; needs manual tweaking for the first and last lines because SoundCloud's HTML is inconsistent for those.
[].slice.call(document.querySelector('.statsTopList__items').children).map(function(row){ return [].slice.call(row.children).map(function(column) { return JSON.stringify(column.innerText); /* we're pretending this is similar to Ruby's .inspect. */ }); }).filter(function(row) { return !(row[0].trim().length == 0); }).map(function(row) { return row.join(","); }).join("\n")
THREE.WebGLRenderer 83
6 "1× (30fps)"
loading model-eevee-sumo/eevee.smd
Vector3 91.47590034571704
THREE.WebGLProgram: shader error: 0 gl.VALIDATE_STATUS false gl.getProgramInfoLog C:\fakepath(182,1-78): error X3025: out parameters require l-value arguments
Warning: D3D shader compilation failed with default flags. (ps_5_0)
Retrying with skip validation
C:\fakepath(182,1-78): error X3025: out parameters require l-value arguments
@duckinator
duckinator / alarms.txt
Created December 8, 2016 05:06
a list of the alarms I have set on my phone
7am wake-up; take morning meds; eat breakfast
8am start programming work
12pm eat; no computer use until next alarm
2pm start writing/editing work
5pm whatever (food at some point after this alarm, maybe more work, maybe not-computer stuff -- this is mostly just to alert me to the passage of time)
7pm take evening meds; stop doing work for the day
12am take anxiety med (to help with nightmares/nighttime panic attacks)
1am go to bed