Almond Salmon
Almond salmon in the oven
Almond salmon in the oven
A very easy and very tasty recipe
A tasty, probably unhealthy, recipe
I’ve referred to these a few times, so I’d like to store them somewhere
How to install a snipping tool with shortcut on Linux
Scratch space for writing down my thoughts on ortos
Scratch space for writing down my thoughts on ortos
Making this page since I’ve set up too many computers recently and I forget quickly
Some notes on a watch which I’m renovating Text on dial: Lanco - Incabloc - Swiss made Text on case back: Lanco - Waterproof - Antimagnetic - Shockprotected - Stainless steel case back Data Measurements are done by me, and might not be the official numbers. Width: 34mm Length: 42mm Height: 10.8mm Lug-to-lug: 16mm Movement: ? Case: Looks like gold plated nickle. Crystal: Acrylic Problems Mainspring is broken Troubleshooting steps Opened up and cleaned all parts. Fully wound the mainspring and let it run. Heard the mainspring break after a few hours. Media
Collection of helm-stuff
A collection of things for Diablo II
Copied from a book by David Foster Wallace
From Matsumoto City in Nagano Prefecture. The lyrics come from the Bon bon, the name of a traditional summer ritual for girls in this region.
I had a discussion with a colleague on how to persist a sorted (linked?) list in MySQL, and would like to write down my thoughts on this since this is likely a problem I will face in the future. There must be a better way of thinking about this than I’ve come up with. If you have an idea, don’t hesitate to send me an email. Problem description We have a sorted list of a generic length. It should be possible to reorder the items in a generic fashion (e.g you can drag and drop the items to change the list order from the GUI). This means supporting both swapping items and inserting items between two existing items. Then list should also gracefully handle growing and shrinking. ...
A simple docker command to start MySQL on a tmpfs. Things to note: Mounting localtime affects MySQL server timezone You need to have a my.cnf at the given location ($HOME/docker/mysql/my.cnf) You probably need to create /var/lib/mysql before running the command Setting sql_mode="" is probably not needed for most applications. sudo docker run -d \ --name mysql7 \ -v/usr/share/zoneinfo/Europe/Stockholm:/etc/localtime:ro \ -v$HOME/docker/mysql/my.cnf:/etc/my.cnf \ -e MYSQL_ROOT_PASSWORD=root \ -e MYSQL_ROOT_HOST='%' \ -p3306:3306 \ --mount type=tmpfs,destination=/var/lib/mysql \ mysql/mysql-server:5.7 \ --sql_mode=""