Category: Software

Note to myself! It’s irfanview. I keep on forgetting the (for me) simplest application to batch manipulate images.

I’ve been interested in Python for a while now. One thing i like is the possibility to do face recognition. Made a python script based upon a youtube clip from sentdex. The script worked fine and after some tests i was confident that i could extend the original script to what i want it to…

This week i found out that Gmail started supporting a function in their email system where you can use a + in your email account. The nice thing about it, is that you don’t have to create an additional email account. Your base email account (example Project34net@gmail.com) wil not change. but you can add a…

I’m having issues with my internet connection lately. My modem seems to reset it self from time to time. It can work days without issues and then it starts to reset a couple of times without any warning. The internet provider sees nothing wrong with the modem. A mechanic needs to come by, but until then…

A couple of weeks back was my birthday and although i don’t really celebrate, my daughter wanted to get me a gift. Because we’ve gotten a new second hand car with an old tape deck that doesn’t support aux or something, i saw a so-called FM Transmitter. This is a device you place in you…

Sometimes when you make a SQL script, that loops through a lot of records, you want to print a status. When you do this using print (or select), this will only display the content when the buffer is full. To immidiatly print everything to the screen use: This will flush the buffers to screen and…