Note to myself! It’s irfanview. I keep on forgetting the (for me) simplest application to batch manipulate images.
Category: Software
I use CheckMK (CMK) for a while now. I find (if you only want to monitor stuff) zabbix and other tools a bit to complicated. With CMK is do an install of SNMPD on an vm, change a couple of values and voila, add the server to CMK and you can check the device. Now…
I’ve been implementing syncthing (ST) as a backup utility. ST say themself that the application isn’t a backup utility, but for me it does the trick. Nextcloud is a ……. Yesterday i was implementing ST on my nextcloud server. I only wanted to backup my data to the ST server. The data directory had a…
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…
Got a question today from a colleague. He had an application that could create a diagram for a database. This was an old program (last release in 2009) and it worked with Java. If i was able to install the application for an audit. My first thought was: “Why? SSMS is able to do this!”.…
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…
I wanted to write a script for expanding my Python knowledge. I ussually create small scripts to accommodate my “problems” or wishes. If you want use it:
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…