-
Learning to Type
One day in the early nineties when I was around eight or nine years old, my dad came home with two mysteriously acquired computers. Living in a tiny Dutch country town of about 1500 inhabitants, I wasn’t exposed to much in the way of high-tech, so this all felt very special and a bit magical. I had seen a computer before at school and on TV, but never actually used any, so this was all very exciting. I loved the way these machines looked: one was massive and square, a Commodore PET model 4016, the other rounded and much smaller (this may have been a simple dumb terminal like a Lear Siegler ADM-3A, I don’t remember).
-
How to Unlike All Liked Tweets
Happy New Year! So you want to delete everything you’ve ever liked on Twitter?
Open up your browser’s developer console and paste this one-liner:
window.setInterval(() => { document.querySelectorAll('[data-testid="unlike"]').forEach(e => e.click()); window.scrollTo(0,document.body.scrollHeight); }, 2500);
Now, let it run until it’s done.
What it does: It unlikes all tweets that have an unlike attribute set, then scrolls the window to the bottom of the viewport, allows 2.5 seconds to load new tweets and starts over again.
-
Hello Again, Macbook
Well, that didn’t take too long.
If you’ve been following along, you know that I’ve been trying to use Linux for my local development purposes on an Intel NUC (as well as a Lenovo laptop). I have to say, I still love the NUC and am going to find another use for it somehow, I’m just not sure what yet. However, Linux was somewhat of a disaster for me.
-
PortAudio Panic and No Devices Found
Leaving this here for the poor souls on Linux systems that run into errors accessing the default input or output devices using PortAudio and get nothing back.
-
Getting Rusty Code and Racer to Work Together
While installing the Rusty Code extension in Visual Studio Code is pretty straightforward, Racer wouldn’t work out of the box after clicking the “install dependencies” (or whatever it was called) button. In fact, I never received a confirmation message that the dependencies finished installing.
-
Bye MacBook, Hello Intel NUC
For a while now, my 2011 13” i5 MacBook Air which I use for development purposes has been showing signs of pending death: flickering screen when moving the lid, excessive heat, inability to be charged, killing 2 replacement batteries and 3 chargers, slowing down with new OS X/macOS installs, etc. etc.
-
Elementary OS First Impressions
It’s been about a week of using elementary OS and I’ve compiled a few of my first impressions. First off, I want to start off with that I understand that elementary is still somewhat immature, so don’t take any of the criticism as me putting the project on blast. Far from it, in fact, but more on that later.
-
RSpec be_truthy, exist, or be true?
The documentation for RSpec is amazingly detailed, but sometimes falls a bit short on when to apply certain matchers. In many of the specs that I’ve reviewed, incorrect matchers were used to test for pure Boolean values.
subscribe via RSS