back
user profile
xk3
2,796karma·554submissions·March 29, 2019
recent activity (554 total)
comment
> almost nothing out there If you use Ubuntu or Debian, multipass is pretty easy to use. Otherwise QuickGet / QuickEmu
comment
If you just want it to sleep during the night you could do something like this: sudo rtcwake -m mem --date=+15hours
comment
I misread this as "I bought a £16 _sandwich_ just because it used USB-C" so I await that future blog post...
comment
I see paper towels but no toilet paper? I think toilet paper is the most confusing one edit: also this doesn't seem correct: Everything above will save you $57.65 on 33 fl oz https://p…
comment
I'm also a fish fan and largely agree--but if you are forced to use Windows and you don't care for WSL, nushell is likely your best option. It's pretty good! Almost feels like Unix but …
comment
Git works pretty well for syncing binary files. You can even do this: $ cat .gitattributes
*.db diff=sqlite3
And you can know how the sqlite files changed between commits--but yeah …
comment
Location: Macomb, IL, United States
Remote: yes, or hybrid
Willing to relocate: Willing to discuss relocation
Technologies: Python (incl. argparse, scripting, web frameworks like Dj…
comment
The gods strip off interesting bits of URLs when you submit it
comment
The first example is a generator. If you wanted to keep that just use `()` instead of `[]`: ((name, value) for name, values in map_of_values.items() for value in values)