<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Voss</title>
    <description>The latest articles on DEV Community by Voss (@vossadrian).</description>
    <link>https://dev.to/vossadrian</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3874160%2F6aee499d-c588-4a76-89b2-af0df53734ca.gif</url>
      <title>DEV Community: Voss</title>
      <link>https://dev.to/vossadrian</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vossadrian"/>
    <language>en</language>
    <item>
      <title>Is it possible to make faceless Youtube channel with the help of LLMs and Claude code?</title>
      <dc:creator>Voss</dc:creator>
      <pubDate>Sun, 12 Apr 2026 00:13:45 +0000</pubDate>
      <link>https://dev.to/vossadrian/is-it-possible-to-make-faceless-youtube-channel-with-the-help-of-llms-and-claude-code-589l</link>
      <guid>https://dev.to/vossadrian/is-it-possible-to-make-faceless-youtube-channel-with-the-help-of-llms-and-claude-code-589l</guid>
      <description>&lt;p&gt;Hy everyone! Hope y'all doing well. &lt;/p&gt;

&lt;p&gt;After being broke and nerd for few months I am thinking to finally do something to make money while not showing my face.&lt;/p&gt;

&lt;p&gt;I'm trying to create a full 60 follow up plans to make AI video to publish on YouTube but wait not just brainrot video I am talking about but Educational video which will help the growing youth. &lt;/p&gt;

&lt;p&gt;I have done a lot of research about creating and growing faceless youtube channel but I think I still need some tips and tricks to use. &lt;/p&gt;

&lt;p&gt;I am going to use Claude Code, Gemma 4, Qwen 2.2, Pika 2, LTX and other LLMs. Is it enough? Maybe not because AI characters need finishing, lip-sync etc.&lt;/p&gt;

&lt;p&gt;I don't have powerful GPU but I am thinking to rent like RTX 3090 or the lastest model which will cost me 0.50-3$/h&lt;/p&gt;

&lt;p&gt;Each day I am gonna talk about where I am, how it's going, what will be the next your support will be appreciated in any way.&lt;/p&gt;

&lt;p&gt;Any advice or help will be really appreciated.&lt;/p&gt;

&lt;p&gt;Thank you.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>mcp</category>
      <category>discuss</category>
      <category>opensource</category>
    </item>
    <item>
      <title>I started Linux with Parrot OS. Here are every stupid thing I did that forced me to reinstall — so you don't have to.</title>
      <dc:creator>Voss</dc:creator>
      <pubDate>Sat, 11 Apr 2026 22:22:18 +0000</pubDate>
      <link>https://dev.to/vossadrian/i-started-linux-with-parrot-os-here-are-every-stupid-thing-i-did-that-forced-me-to-reinstall-so-26dj</link>
      <guid>https://dev.to/vossadrian/i-started-linux-with-parrot-os-here-are-every-stupid-thing-i-did-that-forced-me-to-reinstall-so-26dj</guid>
      <description>&lt;p&gt;Parrot OS is a Debian-based distro built for security and privacy. It looks slick, ships with hacking tools pre-installed, and pulls in every curious 18-year-old who just watched Mr. Robot. I was one of those people.&lt;/p&gt;

&lt;p&gt;Here's every dumb thing I personally did — or watched others do — that ended in a full reinstall and a quiet moment of shame.&lt;/p&gt;

&lt;p&gt;💣 The "sudo" Disasters&lt;br&gt;
☠️&lt;br&gt;
Running&lt;br&gt;
sudo rm -rf /&lt;br&gt;
"just to see what happens"&lt;br&gt;
YouTube "pranks" and forum trolls have killed more Parrot installs than any bug. This command deletes your entire root filesystem. No prompt. No undo. Done in seconds. Some versions now block it but never rely on that.&lt;/p&gt;

&lt;p&gt;sudo rm -rf / # instant death. your OS is gone. sudo rm -rf /* # same thing. don't. rm -rf ~/some_folder # this is fine — only deletes that folder.&lt;/p&gt;

&lt;p&gt;🔥Messing with&lt;br&gt;
/etc&lt;br&gt;
without a backup&lt;br&gt;
New users love editing config files in /etc/ — network configs, sudoers, fstab — without making a copy first. One wrong character in /etc/fstab and your system won't boot. One bad edit in /etc/sudoers and you lose sudo access permanently.&lt;/p&gt;

&lt;p&gt;✅ ALWAYS backup before editing anything in /etc&lt;br&gt;
sudo cp /etc/fstab /etc/fstab.bak sudo cp /etc/sudoers /etc/sudoers.bak&lt;br&gt;
⚠️ Use visudo for sudoers — NEVER edit it directly with nano/vim&lt;br&gt;
sudo visudo&lt;br&gt;
💀&lt;br&gt;
Chowning the wrong directory as root&lt;br&gt;
Tried to fix a permission issue and ran sudo chown -R youruser / instead of sudo chown -R youruser ~/yourfolder. This recursively changes ownership of your entire system. GUI breaks. SSH breaks. System is unusable.&lt;/p&gt;

&lt;p&gt;📦 The Package Manager Chaos&lt;br&gt;
🤡&lt;br&gt;
Mixing apt with random .deb files and PPAs&lt;br&gt;
Parrot is Debian-based. Adding Ubuntu PPAs or random third-party repos will eventually break your package manager. You'll get dependency conflicts so deep that even apt --fix-broken install gives up on you.&lt;/p&gt;

&lt;p&gt;sudo add-apt-repository ppa:some-random/ppa # dangerous on Parrot sudo apt update &amp;amp;&amp;amp; sudo apt install package # stick to this&lt;br&gt;
🧨&lt;br&gt;
Running&lt;br&gt;
apt dist-upgrade&lt;br&gt;
or&lt;br&gt;
full-upgrade&lt;br&gt;
blindly&lt;br&gt;
Parrot is a rolling-style distro. Running a full dist-upgrade without checking what's being removed can pull out critical system components like your display manager, kernel, or desktop environment. System boots to a black screen. Reinstall time.&lt;/p&gt;

&lt;p&gt;✅ Always check what will be removed BEFORE confirming&lt;br&gt;
sudo apt full-upgrade --dry-run # simulate first&lt;br&gt;
🛑 If it says "removing 200 packages" — DO NOT PROCEED&lt;br&gt;
😵&lt;br&gt;
Removing packages that "sound unnecessary"&lt;br&gt;
Beginners see packages like libx11-6 or xserver-common and think "I don't need this." Wrong. These are core display libraries. Uninstalling them cascades into removing your entire desktop environment silently.&lt;/p&gt;

&lt;p&gt;🔧 The "I'll Fix It Myself" Kernel Disasters&lt;br&gt;
👻&lt;br&gt;
Deleting old kernels and accidentally removing the only working one&lt;br&gt;
Trying to clean up disk space, you remove what you think are "old" kernels. You accidentally remove the active one or all of them. System won't boot. GRUB stares at you. Reinstall.&lt;/p&gt;

&lt;p&gt;✅ Check your current kernel BEFORE removing anything&lt;br&gt;
uname -r&lt;br&gt;
⚠️ Only remove kernels that are NOT the one currently running&lt;br&gt;
sudo apt remove linux-image-X.X.X-XX-generic # where X ≠ uname -r output&lt;br&gt;
🪦&lt;br&gt;
Installing a custom kernel without testing it&lt;br&gt;
Wanted better GPU/WiFi support and installed a mainline kernel. It broke hardware drivers. WiFi gone. Sometimes display gone. Never install a new kernel without keeping the old one in GRUB as a fallback.&lt;/p&gt;

&lt;p&gt;🖥️ Display &amp;amp; GPU Carnage&lt;br&gt;
⚫&lt;br&gt;
Installing NVIDIA drivers the wrong way&lt;br&gt;
This is the #1 most reported black screen of death on Parrot forums. People download the .run file from NVIDIA's website and run it directly. It conflicts with the existing Nouveau driver. Black screen on next boot.&lt;/p&gt;

&lt;p&gt;sudo sh NVIDIA-Linux-x86_64-XXX.run # DO NOT do this sudo apt install nvidia-driver # use the repo version instead # Or use the hardware manager on Parrot: sudo parrot-drivers&lt;br&gt;
🌑&lt;br&gt;
Editing&lt;br&gt;
/etc/X11/xorg.conf&lt;br&gt;
without knowing what you're doing&lt;br&gt;
Trying to fix screen tearing or resolution issues by manually editing Xorg config. One wrong line and X server refuses to start. You boot to a blinking cursor with no GUI. Recovery mode is your only friend.&lt;/p&gt;

&lt;p&gt;🧠 The "I Read It On StackOverflow" Mistakes&lt;br&gt;
📋&lt;br&gt;
Copy-pasting terminal commands you don't understand&lt;br&gt;
The most dangerous habit in Linux. Someone on a forum posts a "fix" and you run it without reading. Could be deleting system files. Could be adding a malicious repo. Could be disabling critical services. Always read every command before you run it.&lt;/p&gt;

&lt;p&gt;🔓&lt;br&gt;
Running&lt;br&gt;
chmod 777&lt;br&gt;
on system directories to "fix permission errors"&lt;br&gt;
Got a permission denied error? New users just slap 777 on everything. sudo chmod -R 777 /var, sudo chmod -R 777 /usr. This makes your system a security disaster and can break apps that specifically check for correct permissions to run.&lt;/p&gt;

&lt;p&gt;sudo chmod -R 777 /usr # breaks package manager, SSH, and more chmod 755 ~/my_script.sh # this is fine — only your personal script&lt;/p&gt;

&lt;p&gt;🔁&lt;br&gt;
Killing processes by name with&lt;br&gt;
killall&lt;br&gt;
recklessly&lt;br&gt;
Typed sudo killall python to stop a hung script and killed 4 system processes running Python in the background. Desktop environment crashed. Had to hard reboot.&lt;/p&gt;

&lt;p&gt;⚠️ The real pattern behind all of these:&lt;br&gt;
Every single one of these disasters has one thing in common — running powerful commands with root (sudo) privileges without understanding what they actually do. Linux gives you complete control. It will not stop you from destroying yourself. That's the deal.&lt;/p&gt;

&lt;p&gt;✅ Survival Rules for Every New Parrot OS User&lt;br&gt;
Snapshot or back up your system before doing anything major — use Timeshift&lt;br&gt;
Never run a command you copied from the internet without reading it word by word&lt;br&gt;
Before removing anything: Google what it is first&lt;br&gt;
Keep at least one extra kernel in GRUB at all times&lt;br&gt;
Learn recovery mode and chroot — it will save you from reinstalling 80% of the time&lt;br&gt;
Use a VM (VirtualBox/VMware) for experimenting before touching your real install&lt;br&gt;
TL;DR: sudo rm -rf, bad GPU drivers, mixing package sources, editing fstab/sudoers without backups, and chmod 777 on system folders. All of them end the same way — you staring at a Parrot OS live USB wondering where your afternoon went.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>linux</category>
      <category>cli</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
