SSH – See login attempts

The SSH log file is located here (on Debian based systems): /var/log/auth.log And to view it, just type (need root or sudo): cat /var/log/auth.log This file most…

Debian/Ubuntu – Give user admin rights (Add to sudo)

For security reason, and others, it is a good idea to use another user than root. There is several ways of doing this. On a Debian system…

Linux – How to kick SSH users

This can be useful if a connection get stuck, or you see a suspicious IP of your users. If you run w or who you will see you…

Internet Explorer – Dissable re-open closed tabs

On web based systems, when getting automatic restarts, power loss, etc, it can be a pain with the re-open closed tabs feature in Internet Explorer. It’s not…

Windows Service installer with InstallShield LE

I’ve made a short video to demonstrate how to create a installer for a windows service. Use HD resolution to see the details. Happy installing!

Nmea Udp Port Forwarder

Here is a cool (if you happens to need this) program for redirecting incoming nmea udp strings. Check it out here. Happy redirecting!

UDP Listener

I’ve released a small cute little program to read UDP packets sent to your computer. You can have a look, or download it here.

C# – Make console application invisible

Sometimes it can be handy to hide your console application from the users, to avoid complications in the example. Here is how to do it. First, we…

Linux – Create and extract Tar files

Tar Probably the most used compression for Linux systems, and maybe the Linux equivalent of Zip. Tar stands for “Tape Archive”, and was made back in the…

Linux – Create and extract zip

Zip Probably the most used archiving format for pc users. To compress a folder in Linux: zip -r archive.zip /home/Jon/files_to_archive This example assume we are creating a…