#BasedChallenges has officially been released on #Modrinth and #PaperMC! It is a #Minecraft #plugin which allows everyone to play some fun challenges! It has been released together with the #BasedUtilsAPI!
https://modrinth.com/user/DontBlameMe
https://hangar.papermc.io/DontBlameMe
Finally managed to complete my #recode of my #foss plugin BasedChallenges (found at https://codeberg.org/DontBlameMe/BasedChallenges). I have also released this #minecraft plugin on #modrinth and #paper! I am so glad that after ~10 months of work and 312 commits it has ben completed. Try it out if you want to!
11.1.2025 20:10Finally managed to complete my #recode of my #foss plugin BasedChallenges (found at https://codeberg.org/DontBlameMe/BasedChallenges). I...I redesigned my website and created a blog post about it. Let me know what you think of it! https://dontblameme.codeberg.page/posts/redesigning-my-website/
#blog #website #redesign #css #html #js #hugo #OpenSource
10.1.2025 11:26I redesigned my website and created a blog post about it. Let me know what you think of it!...Which OS would you prefer to use?
(Comment why you selected your option, if you want to π€) #linux #windows #apple #poll #question
Hello everyone!
I am gladly letting y'all know that I am back on Mastodonβ₯οΈ
β Ever #lost in directories?π
"cd -" is your savior!π‘οΈ
#Switch between last two directories effortlessly. ππ
#Stay #efficient and keep #exploring the penguin's #playground! πΎπ
#privacy #security #productivity
27.8.2023 09:44π§ #Linux #Pro #Tip! π‘β Ever #lost in directories?π "cd -" is your savior!π‘οΈ #Switch between last two directories...π #Excited to #share my latest #article! π
πΆοΈ #Discover the ins and outs of achieving a solid level of #online #privacy - what to do and what to avoid. π»
https://dontblameme.fun/posts/becoming-private-online/
π Let's stay #safe and #secure in the #digital #world! π #Security
27.8.2023 09:42π #Excited to #share my latest #article! ππΆοΈ #Discover the ins and outs of achieving a solid level of #online #privacy - what to...Is any of y'all using QubesOS as a daily driver and gaming? I like the concept but I would love to play some games tooπ«€
20.8.2023 13:08Is any of y'all using QubesOS as a daily driver and gaming? I like the concept but I would love to play some games tooπ«€@neuroexception How did you create your nice looking minimal profile picture? I really like it and would love to do something like this myself! πβΊοΈ
15.8.2023 10:44@neuroexception How did you create your nice looking minimal profile picture? I really like it and would love to do something like this...π±π» My latest #blog #post on Comparing #Different #Mobile #Operating #Systems is now #live! ππ
π Dive into the #world of mobile #OSs and discover the pros and cons of each. π²π
https://dontblameme.fun/posts/comparing-mobile-os/
14.7.2023 12:22π’ #Exciting #news! π±π» My latest #blog #post on Comparing #Different #Mobile #Operating #Systems is now #live! πππ Dive...π§ #Linux #Tip of the #Day π§
π» Manage your #system processes like a pro!
π View #running processes:
$ ps
π Run a command in the #background:
$ command &
π§ #Monitor system #resources with top:
$ top
π§Ή #Clean up zombie processes:
$ kill -SIGCHLD $(ps -A -ostat,ppid | grep -e '^[Zz]' | awk '{ print $2 }')
π Investigate process details with htop:
$ sudo apt install htop
$ htop
Remember to regularly monitor and manage your system processes to optimize performance and troubleshoot any issues! πͺπ
14.7.2023 12:20π§ #Linux #Tip of the #Day π§π» Manage your #system processes like a pro!π View #running processes:$ psπ Run a command in the...What is up with all those blogs being spammed with ads, trackers, notification messages and cookies? π«€
Why can't you write your blog post without the greed to get some cents from it? π°
It's sad in my opinion that sites like mine, where you just have text to read and no trackers etc, are becoming rareπ₯βΉοΈ
14.7.2023 08:18What is up with all those blogs being spammed with ads, trackers, notification messages and cookies? π«€Why can't you write your blog...π§ #Linux #Tip of the #Day π§
π #Encrypt your #sensitive #files using #GPG!
π Generate a GPG key pair:
$ gpg --gen-key
π List existing GPG keys:
$ gpg --list-keys
π Encrypt a file with GPG:
$ gpg --encrypt --recipient recipient_email file.txt
π Decrypt an encrypted file with GPG:
$ gpg --decrypt file.txt.gpg > decrypted_file.txt
Remember to securely store your GPG private key and share your public key only with trusted individuals for secure #communication! πͺπ
11.7.2023 10:58π§ #Linux #Tip of the #Day π§π #Encrypt your #sensitive #files using #GPG!π Generate a GPG key pair:$ gpg --gen-keyπ List...My new #articleπ covering the switch / FreeTube vs. #YouTube is now #online
Find out how it feels to useπ₯οΈ and what the potential downsidesπ are!
https://dontblameme.fun/posts/switching-from-youtube-to-freetube/
#Linux #FreeTube #opensource #free #foss
11.7.2023 10:56My new #articleπ covering the switch / FreeTube vs. #YouTube is now #online Find out how it feels to useπ₯οΈ and what the potential...π§ #Linux #Tip of the #Day π§
π‘ Boost your #productivity with #GNU #Screen!
π₯οΈ Start a new screen #session:
$ screen
β¨ #Create #multiple #virtual #terminals within the same session:
Press <Ctrl-a> followed by <c>
π #Switch between virtual terminals:
Press <Ctrl-a> followed by <n> (next) or <p> (previous)
β‘οΈ Detach from a screen session without closing it:
Press <Ctrl-a> followed by <d>
π Reattach to a detached screen session:
$ screen -r
π§ #Linux #Tip of the #Day π§
π #Manage your #system #services with #systemd!
π #Start a service:
$ sudo systemctl start service_name
βοΈ #Stop a service:
$ sudo systemctl stop service_name
π Restart a service:
$ sudo systemctl restart service_name
π #View the status of a service:
$ sudo systemctl status service_name
π’ Enable a service to start at #boot:
$ sudo systemctl enable service_name
π‘ Disable a service from starting at boot:
$ sudo systemctl disable service_name
π§ #Linux #Tip of the #Day π§
π» Customize your #shell #prompt for a personalized #touch!
π Customize your prompt with placeholders:
\u: Current #username
\h: Hostname
\w: Current working directory
π‘ Example: Set a #colorful prompt with username, hostname, and directory:
$ export PS1="[\e[1;32m]\u@\h:\w$[\e[0m] "
β¨ #Experiment with #different #colors and #formatting options to create a prompt that suits your #style and enhances your #productivity!
7.7.2023 12:35π§ #Linux #Tip of the #Day π§π» Customize your #shell #prompt for a personalized #touch!π Customize your prompt with...π§ #Linux #Tip of the #Day π§
π #Protect your Linux system with a robust #firewall! π₯
π‘οΈ Configure #UFW for easy firewall #management.
π Allow specific services: $ sudo ufw allow <service>
π« Deny specific services: $ sudo ufw deny <service>
π Reload rules without disrupting connections: $ sudo ufw reload
π Monitor active connections: $ sudo ufw status verbose
π #Remember to #backup and periodically #review firewall settings for optimal #security! πͺπ
6.7.2023 14:53π§ #Linux #Tip of the #Day π§π #Protect your Linux system with a robust #firewall! π₯π‘οΈ Configure #UFW for easy firewall...π§ Linux Tip of the Day π§
πSecurely connect to remote systems using SSH!
π Connect to a remote system:
$ ssh user@remote_server
π Troubleshoot SSH connection issues:
$ ssh -v user@remote_server
π Transfer files securely with SCP:
$ scp /path/to/local/file user@remote_server:/path/to/destination
β‘οΈ Execute commands on a remote server:
$ ssh user@remote_server 'command'
Remember to keep your SSH keys secure and regularly update them for enhanced security! πͺπ
5.7.2023 12:38π§ Linux Tip of the Day π§πSecurely connect to remote systems using SSH!π Connect to a remote system:$ ssh user@remote_serverπ...Just broke my #Linux install by unknowingly removing some #packages.
Booted up a #live #ISO and tried to install packages from a #backup.
#OS #Error 13. I had no permission to use #sudo. Even though I used #root / had the #permissions. Sometimes I was able to use sudo though.
After messing around for an hour, I rebooted. And it luckily was fixed. Even though I had the error when installing the missing packages, they were installed.
I always get so nervous when something breaks, I hate itπ
2.7.2023 06:36Just broke my #Linux install by unknowingly removing some #packages.Booted up a #live #ISO and tried to install packages from a #backup.#OS...