Dashlane the perfect password manager for me!
Many people have asked me which password manager do I use? I’ve been using Dashlane password manager since 2014. I first started using Dashlane’s free version of the product. (which…
Many people have asked me which password manager do I use? I’ve been using Dashlane password manager since 2014. I first started using Dashlane’s free version of the product. (which…
Have you ever had several spreadsheets that have different content but they have have same characteristics (Rows different but columns are same) This is an excel macro that will import…
Instead of using the UI I do a lot of the administration from command line. These are the commands you must enter a Ubuntu Linux Command Prompt to update/patch your…
This is very handy command that I run maybe once or twice a year or when I need to clean up space off the /boot partition on my Linux Servers.…
I had a need the other day to list directories that was empty. This code does just that. (gci C:\Scripts -r | ? {$_.PSIsContainer -eq $True}) | ?{$_.GetFileSystemInfos().Count -eq 0}…