Skip to content

Instantly share code, notes, and snippets.

View deobald's full-sized avatar
🧀
eating cheese and being afraid

Steven Deobald deobald

🧀
eating cheese and being afraid
View GitHub Profile

The trees didn't disappear all at once. Losing the forest took generations and even though the Mushroom People knew the foreigners presented a danger, they rarely acted to stop them. Sometimes the foreigners wouldn't even be in the forest. On the occasions when they'd load up their sleds and drag the long corpses down the mountain and across the valley to their ships, the People would indulge in the relief of a silent forest, quickly forgetting that the silence had only returned to them temporarily.

But ultimately the trees did disappear. Unhealthy species of weak, soft trees took their place. Or bushes that barely qualified as trees at all. Or, in places, little more than grass and mud and stink. The Mushroom People relied on the trees for they provided homes for the mushrooms, the trees relied on the mushrooms for they connected the trees in vast networks, and the mushrooms relied on the people for they knew the seasons of the mushrooms and would spread spores to the farthest reaches of the forest at exact

@deobald
deobald / open_arrow_ipc_stream.py
Created January 18, 2024 01:31
Open an Apache Arrow IPC stream
import pyarrow as pa
stream = pa.input_stream('streamed.arrow')
buf = stream.read()
with pa.ipc.open_stream(buf) as reader:
schema = reader.schema
print(schema)
@deobald
deobald / open_arrow_ipc_file.py
Last active January 18, 2024 01:30
View Apache Arrow IPC File
import pyarrow as pa
stream = pa.input_stream('hello.arrow')
buf = stream.read()
with pa.ipc.open_file(buf) as reader:
schema = reader.schema
print(schema)
reader.get_batch(0)
@deobald
deobald / endb_why_comments.md
Created November 17, 2023 16:41
Endatabas Why Document - notes

Unchanged

  • "many-tentacled leviathan" - again, debate around the overall tone.
    • Too Lovecraftian? I agree this is too colourful but I'm actually struggling to write this sentence in neutral language without it reading so watered down as to feel like boilerplate, but that's a problem with the entire document, I suppose. Suggestions very welcome.

Fixed, but require sanity-check

  • "When considering alternatives, there are no contenders." - obvious/direct contenders?

Who Are We - Steven (5 seconds)

  • hello Y Combinator! I'm Steven (And I'm Håkan)
  • we met in Bangalore in 2007

Roles - Steven (15 seconds)

  • over past 5 - 10 years:
    • we've been building immutable databases and running companies, respectively
  • so we'll be CTO and CEO, respectively

Who Are We - Steven (5 seconds)

  • hello Y Combinator! I'm Steven (And I'm Håkan)
  • we met in Bangalore in 2007

Roles - Steven (15 seconds)

  • over past 5 - 10 years:
    • we've been building immutable databases and running companies, respectively
  • so we'll be CTO and CEO, respectively
KeyPress event, serial 37, synthetic NO, window 0x800001,
root 0x4a1, subw 0x0, time 145066, (89,124), root:(139,302),
state 0x0, keycode 112 (keysym 0xff55, Prior), same_screen YES,
XLookupString gives 0 bytes:
XmbLookupString gives 0 bytes:
XFilterEvent returns: False
KeyRelease event, serial 37, synthetic NO, window 0x800001,
root 0x4a1, subw 0x0, time 145096, (89,124), root:(139,302),
state 0x0, keycode 112 (keysym 0xff55, Prior), same_screen YES,

Hi everyone,

Preethi and I have been experimenting with hosting Wednesday group sits at our house.

We have been sending out notices via email for now. Please send an email to steven at deobald dot ca if you would like us to add you to that email list.

How to get here

[
{
"id": 0,
"type": "PipeWire:Interface:Core",
"version": 3,
"permissions": [ "r", "w", "x", "m" ],
"info": {
"cookie": 613643184,
"user-name": "steven",
"host-name": "catu",
@deobald
deobald / book.toml
Created April 7, 2023 14:02
book.toml for failing `mdbook-pdf-outline` build
[book]
authors = ["Steven Deobald", "Håkan Råberg"]
language = "en"
multilingual = false
src = "src"
title = "The Endatabas Book"
# chapter-level ToC ... perhaps not necessary,
# but it's here if we want it.
[preprocessor.toc]