Recent Posts
- How to show more information in LSP when using Emacs and Typescript
- Great historical review on source control systems evolution
- Interesting article on learnings over a software engineer career
- Code Freeze 2023 Keynote 01 Jessica Kerr 1
- How to configure MacOSX to make the window under the mouse to receive the focus?
Recent Comments
No comments to show.
Category Archives: Uncategorized
Delay when using ESC in tmux?
Just set: set -s escape-time 0 In your tmux.conf configuration file.
Posted in Uncategorized
Leave a comment
How to install vowpalwabbit in Ubuntu 19.04 (Disco Dingo)
Well nothing really changed from my last post on the subject (for Ubuntu 17.10): $ sudo apt-get install libboost-program-options-dev $ sudo apt-get install libboost-python-dev $ sudo apt-get install libvw-dev $ sudo apt-get install libvw0 $ sudo apt-get install vowpal-wabbit $ … Continue reading
Posted in Uncategorized
Leave a comment
Monday, assorted links
What to Expect From Search in 2019 With Google’s John Mueller & Ashley Berman Hale
Posted in Uncategorized
Leave a comment
Monday, assorted links
Seven Myths in Machine Learning Research
Posted in Uncategorized
Leave a comment
How to install vowpalwabbit in Python 3 in ubuntu 17.10
Follow these instructions: $ sudo apt-get install libboost-program-options-dev $ sudo apt-get install libboost-python-dev $ sudo apt-get install libvw-dev $ sudo apt-get install libvw0 $ sudo apt-get install vowpal-wabbit $ sudo apt-get install vowpal-wabbit-dbg $ pip install vowpalwabbit
Posted in Uncategorized
Leave a comment
CSS The Definitive Guide is 1122 pages !
Ok, this is turning quite absurd, how could a CSS guide be longer than most sciences books? Even C++ books, the ancient standard for languages that make no sense at all.
Posted in Uncategorized
Leave a comment
Amazing recount of one of the most important meetings regarding HTML
Posted in links, Uncategorized
Leave a comment
Is your update-initramfs finding missing kernels in ubuntu?
Check the files in: /var/lib/initramfs-tools This is how update-initramfs finds out the kernels to process. Just delete the files with the same version as the missing kernels.
Posted in Uncategorized
Leave a comment
Django, Gmail and Error 534
Google has gone paranoid lately. Gmail accounts now have a high level of security by default. If you are using a Gmail account for sending email in Django and you get an error like this: SMTPAuthenticationError: (534, ‘5.7.14 Please log … Continue reading
Posted in Uncategorized
Leave a comment
Dlang: how to get the length of a SList or DList
D language developers decided that those structures are so simple that they should not maintain any kind of state. As a consequence you need to relay on external functions for finding out their length: import std.container; import std.range; import std.stdio; … Continue reading
Posted in Uncategorized
Leave a comment