Collect user logons from Windows 10 with Python 3.

This is basically how I collect physical user logons along with reboots, etc. I dump this shit into a database and deliver via a web-page so folks can do dated searches by workstation or user ID. Works beautifully. You will need the Win32api libraries. I am running this on a Win 2019 server from Python3.7, […]

Get all installed software on Windows 10 with Python 3 and WMI.

This is very basic and I’d lie if I said I hadn’t tried looping through the registry for 64/32 bit, but this works great and isn’t missing entries. I deliver this in a web page making it easy to do look ups on most machines in my org. Tweak as you need, add some error […]

Monitor cron jobs on Ubuntu

If you need to monitor cron jobs to verify they run for a particular user open the terminal and type, $USER being the currently logged on user: $ tail -F /var/log/syslog | egrep ‘CRON.*’$USER OR $ SOME_USER=”root” $ tail -F /var/log/syslog | egrep ‘CRON.*’$SOME_USER You could also call tail using Python in a timed while […]

List of Linux IDEs with GUI designers.

Are looking to develop GUI applications on Linux but don’t really want the tediousness of hand coding the interface? Here is a list of IDEs or visual designers with WYSIWYG ability. Many of these tools also run on Windows and/or Mac and can compile for all three platforms with a few including arm and smart […]

How to fix a ASUS ROG laptop installing Pop OS adding HP scanning ability.

Installing Pop! OS 18.10 on a 2017 Asus ROG fixes every problem Windows created. 😂 Over heating? Fixed. USB connection issues? Fixed. Driver issues? None. Touch Pad sucks? Nope. Of course you might not be able to play all your favorite Windows games, but I get most to work if I put my mind to […]

Installing Cinelerra GG on Pop or Ubuntu 18.10.

If you want the latest Cinelerra GG on 18.10 you’ll need to trick the system. If you’re not comfortable you can always wait. First thing is first, add the PPA. This will cause an error, but we will fix that so ignore it. Type each command in the terminal: sudo apt-add-repository \ https://cinelerra-gg.org/download/pkgs/ub18 Open the […]

Linux Terminal Application list.

If you really love the terminal and can’t get enough here is a list of programs that should make you smile. Linux comes packed with so many command line tools already; you can do just about anything without the GUI, but what if you want more? Maybe some of these programs are for you. Many […]