Index | Archive | Tags | Atom Feed | RSS Feed

Lonely Planet on Kindle - The Cheap Way

Lonely Planet guidebooks are nice to get a quick overview of a place, or find some things worth seeing and doing around where you are traveling. However, lobbing around an extra half a kilo or more isn't great.

I'm already carrying my e-reader, so wouldn't it be great if I could just save the relevant sections there?

However, while they do sell an official Kindle edition, I prefer using the paperback versions when planning my trip. So instead of buying it twice, I simple scanned the relevant pages at the office, then cropped them into a single paged pdf with …


VPN with Wireguard

Today I spent some time setting up a Wireguard VPN on a Linode VPS.

Overall the process is not too complicated, but there are some things I was confused about initially. Initially I followed the [cached]guide on the Linode website, but then I switched over to this excellent article: [cached]How to setup a VPN server using WireGuard (with NAT and IPv6).

My biggest confusion was about the distinction between the private IP assigned to the server/client within the VPN, and the externally visible IP of the server (the client does not need a public IP). Importantly, the …


Master one skill at a time instead of learning many at once

Every skill has both a cost to maintain and a cost to learn. Take the case of learning a language: You need to spend some time every day rehearsing vocabulary and grammar you already learned so you don't forget (maintain), then you can also study new words and grammar points (learn).

The maintenance is a fixed cost - you need to spend this time just to not forget what you already know. As you get better, this cost goes down. Either because you can integrate the skill in your normal routine - read news in foreign languages - or because it has become …


xmodmap and Umlaute

If you speak German but prefer using an English keyboard layout for programming (dvorak in my case), then you will frequently face the issue of how to conveniently enter Umlaute.

Luckily, there's an easy solution with xmodmap, just add the below to your .Xmodamp config:

1
2
3
4
5
6
7
8
clear mod1
keycode 108 = Mode_switch
add mod1 = Alt_L

keysym a = a A adiaeresis Adiaeresis
keysym o = o O odiaeresis Odiaeresis
keysym u = u U udiaeresis Udiaeresis
keysym s = s S ssharp

Where 108 is the keycode returned by xev for your Alt key.


Reading July - September 2018

Books

Computer Architecture: A Quantitative Approach, John L. Hennessy and David A. Patterson. Great book covering low level details of computer architecture, from instructions sets, memory architectures to custom machine learning accelerators. I definitely recommend this for anyone with an interest in computing or software engineering.

The Age of Comfort, Joan DeJean. Interesting content, but way to verbose and repetitive. Stopped reading half way through.

Hight Output Management, Andrew S. Grove.

Why We Sleep, Matthew Walker. This book got me to take my sleep cycle a whole lot more seriously, there's hardly a night now that I sleep less than …


Remap Caps Lock to Tab

Don't want to waste prime keyboard real estate on a key you never use?

First, find out the keycode of your Caps Lock key: run xev, repeatedly press Caps Lock, note the keycode you see in the logs.

Next, create or append to the .Xmodmap file in your home directory:

1
2
clear Lock
keycode 66 = Tab

Where you replace 66 with whichever keycode you saw in the output of xev.

Finally, load the map: xmodmap .Xmodmap.

You can of course replace it with any other key as well, not just tab.


Ubuntu and Japanese Input

This is more a note to myself, but to easily type japanese on Ubuntu, install ibus-anthy (sudo apt-get install ibus-anthy), make sure ibus-daemon is running.

Then you can add Japanese in Anthy's 'Input Method' tab, make sure to select 'Japanese - Anthy'. If you use dvorak like me, also make sure 'Use system keyboard layout' in the Advanced tab is checked.


Getting into Machine Learning

Update: I've published a newer version of this post.

If you are interested in getting started with Machine Learning, the [cached]TensorFlow Playground is a good way of building some intuition.

For a first introduction to the field, I recommend [cached]Neural Networks and Deep Learning, followed by the [cached]Deep Learning book.

To dive into a specific topic quickly, the [cached]TensorFlow tutorials are also great, Dive into Deep Learning has a lot of detail as well.

For Reinforcement Learning specifically, the standard text is [cached]Reinforcement Learning: An Introduction. Dave's [cached]UCL Course on RL is great too …


Reading April - June 2018

Books

The Power, Naomi Alderman. Interesting point of view on gender and power dynamics. Turned out different (better) than I expected from the beginning.

Letters to a Young Scientist, E. O. Wilson. Half very interesting advice about how to do science, half anecdotes from the life of a biologist with a speciality in ants.

How we got here, Andy Kessler. Whirlwind tour of the history of the industrial revolution, technology and how it lead to modern capital markets.

Pitch Perfect - how to say it right the first time, every time, Bill McGowan. Chock full of tips to improve the way …


Cooking Recommendation: Serious Eats

If you like cooking (or eating), I recommend [cached]Serious Eats. They have many great recipes that are easy to follow as well as delicious - for most of the new dishes I've tried recently, I've followed recipes from Serious Eats.

Two of my favorite dishes for a lazy day are [cached]Gyudon, a simple rice bowl heaped with beef and onion simmered in a mix of soy sauce, sake and dashi:

Gyudon

And [cached]Salmon Teriyaki, another rice bowl with seared salmon on top of a bed of cucumber and avocado:

Salmon Teriyaki

Both are easy to make and absolutely delicious.

Despite the …

© Julian Schrittwieser. Built using Pelican. Theme by Giulio Fidente on github. .