www.byjp.me/content/notes/twitter/909011785856032770/index.md
JP Hastings-Spital 6320396733 Import archived tweets
A first pass at importing my tweets. Includes the code I used to do it.

I've made some manual edits (to add code fence blocks, and fix some annoying encoding issues), but this should be a decent start.
2024-01-18 22:18:11 +00:00

15 lines
222 B
Markdown

---
date: "2017-09-16T11:11:13Z"
tags:
- imported
- from-twitter
---
```ruby
def Hash.forever
new { |h, k| h[k] = forever }
end
Hash.forever.tap { |h| h[:no]['need'][2] = 'init' }
# => {:no=>{"need"=>{2=>"init"}}}
```