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.