Yeab
142 subscribers
453 photos
37 videos
20 files
292 links
Yeab | aspiring indie dev
Download Telegram
#web_dev
guys there's a website called web.dev made by google to help developers learn web development. am I the only one who didn't know this ๐Ÿค”
๐Ÿ‘1
#duolingo

Is this what happens when you loose your streak after being a vip(having 1year +๐Ÿ˜Ž)user ? Or it's bug ?
๐Ÿ‘1
Happy New Year everybody ๐Ÿฅณ
๐ŸŽ‰2๐Ÿ‘Ž1
P1: What did 20 do when he was hungry ?
P2: 28 ๐Ÿ˜‚๐Ÿ˜‚
I did it family ๐Ÿ’ช
๐Ÿ”ฅ2
#rubikscube

If you also want to learn solving Rubik's cube use the bright side's video. That teaches you how to solve it using beginners' algorithm. Yeah that's an algorithm but it also helps the moves to become automatic in your hands.

Let me know if there's somewhere else to learn solving Rubik's cube
Head First Git.pdf
46.4 MB
#books

I really recommend you to read this book. It helped me learn how version control systems work and how to effectively use them; specifically git.
I finished it today and I absolutely enjoyed learning git using this book ๐Ÿ’™
๐Ÿ‘1
Channel name was changed to ยซYeabยป
Yeab
Channel name was changed to ยซYeabยป
#chore

I'm changing the name of the channel which I think is not permanent because I couldn't think of a name that I could settle on...
๐Ÿ‘1
Channel photo updated
#insights

using git checkout command feels like time traveling when you provide it a commit id. it rewrites your working directory to look like the commit you provided an id of.

#git #github
๐Ÿ‘1
#thoughts

There is more

This year (2024) was the year I challenged my self to do the things that seem difficult to me. A year of harder decisions. Before making those decisions I felt like if I do this and this and this my life would be better. It indeed is better but now there are more new spots.

It feels like debugging a code. Solving a series of problems one after the other. You won't know what the next problem would be without fixing the one you're facing right now.

We tend to speak of problems as if we know what the solution is without actually executing it. But when we do, the problem is still there waving 'his' hand at us (Hi babe ๐Ÿ‘‹)

"แŠฅแŠ•แ‹ฐแ‹šแˆ… แ‰ฃแ‹ฐแˆญแŒ แŠฅแŠฎ แ‹ญแˆตแ‰ฐแŠซแŠจแˆ‹แˆ แŒแŠ• แŠจแ‰ฃแ‹ต แАแ‹"

Nope. Let's face it. Try to do what you think is right. You'll find out that wasn't the case or that it wasn't the only.
๐Ÿ‘2
Quick Response

QR stands for quick response and I found how they were invented interesting.

Check out the link
๐Ÿ‘1
I've created two learning repos this week. minibuilds and data-structures-and-algorithms

If you want to keep your activities on GitHub while also learning, I think it's good Idea to create a learning repos like these.
๐Ÿ‘1
#facts

There's no African Turing Award recipient by far.

The Turing award often referred to as "The Noble Prize of Computing" is an annual prize prepared by the Association for Computing Machinery (ACM) to individuals who have made a significant contribution to the computing field.

if you're interested here are their social links

Website
Youtube
X
Facebook
LinkedIn
๐Ÿ‘2
Yeab
Head First Git.pdf
Data Structures and Algorithms in Python.pdf
6.6 MB
It kinda felt wrong when I posted that I completed the Head First Git book without letting you know at the time I started reading it. so now I'm starting to read Data Structures and Algorithms in Python by Michael H. and more.

I chose it because it has a good review on the internet.

If you're interested let's start together.
๐Ÿ‘1๐Ÿ‘Œ1
guess what

You can add specific lines of a file to the staging area in git.

After implementing the append and prepend methods of a linked list I committed and added the display method. then I realized the code just committed had problem. so I had to fix it and commit that fix. I could do it using a branch but searched if can add a specific lines of code to the staging area. It turns out it was possible

checkout the git add -p command
You can also use the interactive mode.
git add -i
๐Ÿ‘2