dammIT

A rantbox by Michiel Scholten

Articles


Roundcube webmail and Google contacts

Draft digging time! Something I've had in my drafts since the 25th of October, 2014, apparently: Roundcube is a decent self-hosted webmail solution, which benefits from integrating Google Contacts so you do not have to duplicate your address books (assuming you use Google for yours). Luckily someone wrote a plugin …

Neon skies

Biking home from work, I had this gorgously coloured dusk as my background. Certainly a good conclusion of a day where I fixed a bug with four lines of code after a debugging session of about four days. gallery link
article header image

vim reloaded

An update about what I do with vim, making it more powerful and taking away some of the envy I have for the excellent IDE's out there (for example PyCharm and the rest of the IntelliJ family by JetBrains - try it, it's awesome). Also, it makes vim look a lot …
article header image

Battling tiredness with drugs

It might be the time of the year, with its short days and long, dark nights, it might be kids causing us to pull our hair out, taking their emotional toll and sipping energy, and work is also a big energy sink (thankfully mostly a gratifying one), but I have …
article header image


Holiday vim tweaking

Some people binge-watch series when taking some time off, some read books, some enjoy comics, some take time off from computers for a bit, and some spend some hours cleaning up their vim configuration file. This holiday, I did all of the above. Yesterday, instead of spending one day gaming …
article header image


NS API 2019 edition

I just merged a new version of my trusty old NS API Python library. Last year I would have thought to not be touching it for quite a while, as nowadays I'm in the luxurious position of being able to bike to work and not wanting to do basically a …

Christmas 2019

While I'm taking some down time from work - which is rather a bunch on my mind lately, which is both a good and less good thing - I will be spending a lot of time with my loved ones. My intention is to almost not touch computers in the upcoming few …
article header image

Watch yourself some Mr. Robot

I finished watching Mr. Robot yesterday and it was amazing. If you like to watch an intriguing TV series, with good use of technology for once (ohai Hollywood, yes you suck at portraying real tech) and an unusual protagonist, treat yourself to the four seasons (45 episodes) of this mighty …

Unzip a bunch of zips in a oneliner

Ever needed to unzip a bunch of zip files into their own directory and you don't want to do so one by one? No? Well, here I have a oneliner for you anyway: ls -1 *.zip | while read zf; do echo ${zf::-4}; unzip "$zf" -d "${zf::-4}"; done This …

Sweet Sixteen

Today this little web corner has existed for sixteen years. Funny thing is that 'sixteen years' does not even sound that long anymore in my ears, while it is enough for a newborn to grow into a person nearing maturity. While I would not say this weblog is really mature …
article header image

Head full of work

Do you know that cozy feeling of having thoughts of your work almost never leave your head? Waking up in the night and having your mind stray to unfinished tasks? Yeah? It sucks. (I need a vacation, and some more milestones behind me).

Wallpapers with Gimp mosaic

I like taking pictures, and having some of the nicer ones as a background to my daily computer shenanigans is a nice extension of this. Lately, I've been playing around a bit with having pictures show up differently (more abstractly, with less details so they distract less, like those nice …
article header image

dammIT alchemy

Today I've been busy with a family party and with a total restyle of this weblog based on Pelican Alchemy Bootstrap 4 and the Bootswatch Lux theme, with my own twist in dark-ish grey. Currently it is generating from my own fork with isso comment support and article images. Breakage …

Help hunt bugs, do not just report them

Today I came across the forum post Don’t report bugs, contribute to bugs hunting about more directly helping (open source) developers help you. Developers really try to write working solutions and like Aurélien Pierre notes: We are the developers. That means we can guarantee you that the software works …

darktable and opencl in Ubuntu 19.04

Editing and even viewing (raw) photographs can be a bit taxing on your CPU. If you have an Nvidia GPU, you can supercharge your photo editor by using its OpenCL extensions to offload operations to. Using darktable myself, I had to do a minor bit of research before it worked …

Receive Sentry messages as Telegram notifications

To be able to receive Sentry notifications on Telegram (without using the plugin which only works in the self-hosted Sentry server), one can use webhooks. As I have webhaak to ducttape together webhook all the things, I created a script to send messages to our dev chat, filtering away some …

webhaak all the things

If you're not using webhooks yet to automate things from automatically generating documentation, running tests, updating websites and web applications based on events, please go read up on them. In the meanwhile, I've basically hooked up all my personal projects based on webhooks in GitHub and gitea, powered by my …
article header image

Emerging from work

It's over half a year ago that I switched jobs, coming from a big media company and now leading a new, young team at basically a startup. It switched me on again, giving me an energy for work stuff I had not felt for a while somehow, and made me …