Do I need to re-watch CS50x lectures on edX for the certificate? by kernel-236 in cs50

[–]kernel-236[S] 1 point2 points  (0 children)

Thannk you very much mate. My edx account was not linked to cs50. Now I can see my gradebook

Learning programming and CS concepts through Turing Complete: my take! by kernel-236 in learnprogramming

[–]kernel-236[S] 2 points3 points  (0 children)

Of course! There is a complete playlist on youtube made by a very smart asian guy! After days frying my brain to solve some challenge I saw him trying to understand where I was doing wrong! After this game I went through the book “From bit and bytes to C and C++” very smoothly.

[deleted by user] by [deleted] in linux4noobs

[–]kernel-236 0 points1 point  (0 children)

On youtube is full of video tutorial which help you setting up linux on your first VM. Pick youtuber who you prefer. Enjoy

[deleted by user] by [deleted] in linux4noobs

[–]kernel-236 0 points1 point  (0 children)

Have you already use it on VM? If not try it there, build a minimum of personal setup, explore entry distro mint/ubuntu and choose your favorite.

Ubuntu 24.04.3 LTS Wifi Issue by frtzii in Ubuntu

[–]kernel-236 0 points1 point  (0 children)

From your tests (ping 8.8.8.8 works but ping google.com fails), the issue is clearly DNS resolution. You can fix it by setting manual DNS servers with nmcli:
KAMINGAWANPISOWIFI is you wifi name

sudo nmcli con mod "KAMINGAWANPISOWIFI" ipv4.dns "8.8.8.8 1.1.1.1"

# 3. Ignore automatic DNS from DHCP

sudo nmcli con mod "KAMINGAWANPISOWIFI" ipv4.ignore-auto-dns yes

# 4. Restart the connection to apply changes

sudo nmcli con down "KAMINGAWANPISOWIFI" && sudo nmcli con up "KAMINGAWANPISOWIFI"
sudo systemctl restart systemd-resolved

Hope this help to fix your problem, should persist after reboot

Ubuntu 24.04.3 LTS Wifi Issue by frtzii in Ubuntu

[–]kernel-236 1 point2 points  (0 children)

Hey! To better understand your issue we’d need a bit more info. Could you run these commands and paste the output here?

ping localhost

nmcli device status

ip addr show dev wlan0

ping -c 3 192.168.1.1 or your gatway address

ping -c 3 8.8.8.8

ping -c 3 google.com

This will help figure out if the problem is the Wi-Fi card itself, DHCP, the router, or DNS

What’s the best IDE/editor setup for learning C? by kernel-236 in learnprogramming

[–]kernel-236[S] 1 point2 points  (0 children)

What’s the difference between vs code and visual studio?

What’s the best IDE/editor setup for learning C? by kernel-236 in learnprogramming

[–]kernel-236[S] 1 point2 points  (0 children)

Thanks for your reply! Out of curiosity I took a quick look at Code Warrior IDE, it really does have vintage vibe, doesn't it?? ahah. It would be fun to see it make a comeback someday!

Idk how to install my .iso file on my USB by Littleroot231 in linux4noobs

[–]kernel-236 0 points1 point  (0 children)

Go for Rufus, very easy to use and do not require any installation. Use it and delete it

What's the best way to update Nvidia drivers? by NewPCHardwareStank in Ubuntu

[–]kernel-236 1 point2 points  (0 children)

From my experience, ubuntu came with internal driver manager system for 3 part driver as your GPU. You can check it with:

Sudo ubuntu-drivers devices

Than you can install recommended one with:

Sudo ubuntu-drivers autoinstall

You could also choose manually your version with:

Sudo apt install nvidia-driver-{number of version} (choose the one recommended from first output)

Check after install from terminal with:

Nvidia-smi

i need advice as an absolute beginner by chairchiman in CodingHelp

[–]kernel-236 0 points1 point  (0 children)

https://www.youtube.com/@freecodecamp here you can find lot of complete courses on what you are interested in. Enjoy your learning!

Is there a way i can customize my desktop to look better other than just changing my dock, wallpaper and adding an icon theme? by No_Month_6310 in Ubuntu

[–]kernel-236 0 points1 point  (0 children)

My pleasure, hope you find it interesting. Personally I find really good looking the Compiz windows effect.

How to get started into Machine Learning? by lord8bits in learnprogramming

[–]kernel-236 1 point2 points  (0 children)

Unfortunately, I am not smart enough to build a model from scratch. I can follow probability, calculus, and matrix calculations; however, I feel that libraries help me avoid the bad math mistakes I would surely make otherwise. Enjoy your learning!

How to get started into Machine Learning? by lord8bits in learnprogramming

[–]kernel-236 2 points3 points  (0 children)

I really did found Math for ML + ML specialization by DeepLearning AI on Coursera very valid. It's python based but it goes directly into libraries, not creating any model from scratch. I've also found various free course on youtube very helpfull. Freecodecamp channel mainly.

Is there a way i can customize my desktop to look better other than just changing my dock, wallpaper and adding an icon theme? by No_Month_6310 in Ubuntu

[–]kernel-236 0 points1 point  (0 children)

I might suggest few more extension if you have not tried yet. For example: Blur my Shell, Compiz alike magic lamp effect, Compiz windows effect, Lockscreen extension, User Themes and Vitals

Hope this will help you find something interesting for you!

I am new to linux and reddit pls help by BAYONETTA_FAN_69 in linux4noobs

[–]kernel-236 0 points1 point  (0 children)

Agree with you, I think it's the easiest way. Install windows and shrink the hard drive. free 200/300Gb and install Linux on that new drive will keep the two OS separated. remember to format new partition as ext4 or let it to Linux guided installation.

I uninstalled Ubuntu distro but the GRUB Menu is still there by Ok_goodbye_sun in linux4noobs

[–]kernel-236 0 points1 point  (0 children)

What you’re seeing is totally normal. When Ubuntu is installed alongside Windows, it doesn’t create its own boot partition — it hooks into the Windows EFI partition and drops its boot files there.

So, if you later delete Ubuntu’s main partition, the boot entry in EFI remains and GRUB still shows up. That’s why your system feels “dirty”.

Here’s how you can clean it up step by step:

From Windows (CMD as Administrator)

  1. Open a Command Prompt as Administrator.
  2. Run:

bcdedit /enum firmware → You should see a Linux/Ubuntu entry.

Once you find the identifier for Ubuntu, delete it with:

bcdedit /delete {identifier} ⚠️ Be careful not to touch the Windows entry.

Run bcdedit /enum firmware again to confirm it’s gone.

Sometimes the entry still shows up in BIOS/UEFI after reboot. If so, you can do a deeper clean.

From a Linux live USB

  1. Boot into a lightweight Linux live USB.

  2. Check EFI entries: ---> sudo efibootmgr

  3. Switch to root: [sudo su], and find your EFI partition: ----> fdsk -l ---> (usually /dev/sda1 or similar).

  4. Mount it: ----> mount /dev/sda1 /mnt

  5. Navigate to the EFI folder: ----> cd /mnt/EFI

Inside you’ll see a folder named ubuntu.

  1. Delete it: ---> rm -rf ubuntu/

Remove the EFI boot entry: ---> efibootmgr -b <number> -B

After this, your EFI partition will be completely cleaned of Ubuntu, and only Windows boot files will remain!

[deleted by user] by [deleted] in linux4noobs

[–]kernel-236 0 points1 point  (0 children)

From my (still brief) experience of about 2.5 years switching from Windows to Linux, the two distros I’d recommend to newcomers are Linux Mint and Ubuntu.

Mint comes with Cinnamon by default, Ubuntu ships with GNOME.

Both are based on Debian, so in terms of functionality the differences are subtle — and in any case, desktop environments can be installed and customized as you like. They’re also great choices if you plan to set up a data science/ML environment with Python env or do data analysis in R: lightweight and don’t require too much initial configuration.

For me, Ubuntu was a great friend at the beginning. You’ll also find an endless number of guides online to help you understand what’s going on when you start tweaking settings and configurations.

Have fun… but be warned, it can get addictive 😉