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…
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…
Get keywords from YouTube video meta tag.
Get YouTube keywords easily with Python and make it a TK GUI app.
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…
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…
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…
Execute PowerShell from Python
Execute PowerShell from Python returning Python data stuctures.
List or search all installed apps on Ubuntu 18.04 with Python.
I was bored… Of course this can be done easily in the terminal, but what’s the fun in that? This should work on any flavor of Debian/Ubuntu.
Create Desktop App from WebApp.
Here’s a nifty tool for Windows, OS X, and Linux to convert web apps, like the online Amazon Kindle Reader, to a desktop app. https://www.npmjs.com/package/nativefier
Running Steam Windows Games on Linux
I’m sure these will be hit or miss, but with a little work some Steam Windows games might run. If you want a unified gaming center on Linux with Steam for Windows support check out Lutris. Might be easier than pure Wine or Play On Linux. We will see. and……