✉️ a zone for no one and everyone :) 🔞
Here you can find a interactive cheat sheet, you're welcome ;)
See if you’ve been part of an online data breach.
Find out what hackers already know about you. Learn how to stay a step ahead of them.
Be aware that this can only help you protecting yourself if the data breach is known!
Source: https://monitor.firefox.com/
You can also install it via the terminal in Ubuntu and other distris:
sudo apt install -y spectre-meltdown-checker
sudo spectre-meltdown-checker
Source: https://www.cyberciti.biz/faq/check-linux-server-for-spectre-meltdown-vulnerability/
A quick guide to find tools to analyse and visualise data
Source: https://datajournalism.tools/
Quick Start: The easiest way to colorize images using DeOldify (for free!) is here: DeOldify Image Colorization on DeepAI
The most advanced version of DeOldify image colorization is available here, exclusively. Try a few images for free! MyHeritage In Color
Enter the code below in the terminal, but be cautious there is a reason why those settings are hidden
sudo sed -i 's/NoDisplay=true/NoDisplay=false/g' /etc/xdg/autostart/*.desktop
sed is a stream editor. Allow me to explain the above command.
- -i is short for –in-place. That means sed will edit files in place.
- s/NoDispaly=true/NoDisplay=false means sed will search the NoDisplay=true regular expression and replace it with NoDisplay=false.
- /etc/xdg/autostart/*.desktop means all .desktop files under /etc/xdg/autostart directory.
After you run the above command, all system defined startup applications will be displayed.
So what does this command perform?
The command uses sed to find and replace a specific string in all files with the “.desktop” extension located in the “/etc/xdg/autostart” directory. The -i flag tells sed to edit the files in place, and the s/NoDisplay=true/NoDisplay=false/g is the search and replace pattern, replacing all occurrences of “NoDisplay=true” with “NoDisplay=false”. The sudo command is used to run the command with superuser permissions. This command will change all the files in the /etc/xdg/autostart directory and change the NoDisplay=true to NoDisplay=false which will make the applications to be shown on the application launcher.
With this command you can revert the command above
sudo sed -i 's/NoDisplay=false/NoDisplay=true/g' /etc/xdg/autostart/*.desktop
This command will change all the files in the /etc/xdg/autostart directory and change the NoDisplay=false to NoDisplay=true which will make the applications to be hidden on the application launcher.
Source: https://www.linuxbabe.com/desktop-linux/show-hidden-startup-applications-ubuntu
Source: https://itsfoss.com/manage-startup-applications-ubuntu/
An Interactive Cyber Security Platform
Source: https://defendtheweb.net/