Forwarded from Mesay.sh
Long time no see 😄 I’m back with an interesting project ... I built my own version control system like Git from scratch in Golang.
Check out my LinkedIn post here:
🔗 https://www.linkedin.com/posts/mesay-lemma_i-built-my-own-git-clone-in-go-and-activity-7359559649827737602-X04d?utm_source=share&utm_medium=member_desktop&rcm=ACoAAEqOqRMBpb1h23sWyMmluckPsBwyxQkg6a0
And if you want to try my web playground:
🔗 https://kit-playground.vercel.app/
Check out my LinkedIn post here:
🔗 https://www.linkedin.com/posts/mesay-lemma_i-built-my-own-git-clone-in-go-and-activity-7359559649827737602-X04d?utm_source=share&utm_medium=member_desktop&rcm=ACoAAEqOqRMBpb1h23sWyMmluckPsBwyxQkg6a0
And if you want to try my web playground:
🔗 https://kit-playground.vercel.app/
Linkedin
🚀 I built my own Git clone in Go 😎 and you can try it right now in a web playground:
🔗 https://lnkd.in/grjiw9hy
The first time…
🔗 https://lnkd.in/grjiw9hy
The first time…
🚀 I built my own Git clone in Go 😎 and you can try it right now in a web playground:
🔗 https://lnkd.in/grjiw9hy
The first time I learned about Git, I always wondered how it actually works under the hood.
This summer, I finally decided to find out. I read…
🔗 https://lnkd.in/grjiw9hy
The first time I learned about Git, I always wondered how it actually works under the hood.
This summer, I finally decided to find out. I read…
🔥4❤1
Mesay.sh
Long time no see 😄 I’m back with an interesting project ... I built my own version control system like Git from scratch in Golang. Check out my LinkedIn post here: 🔗 https://www.linkedin.com/posts/mesay-lemma_i-built-my-own-git-clone-in-go-and-activity-7…
This is so cool guys check it out @JmbTalks
👍4
Hey fam🌸! Been a while 🤍 Life got busy & I kinda lost the courage to post… but your DMs gave me the push I needed 🙏
⚡ Even though we’re halfway in, I’m starting a Daily LeetCode Grind — 1 problem a day, sharing my wins and fails so we grow together 💻📚
💬 Wanna join? Drop your “I’m in” or thoughts below ⬇️ Let’s keep each other consistent!
@byte_philosopher
#AugustLeetCodeGrind 🔥
⚡ Even though we’re halfway in, I’m starting a Daily LeetCode Grind — 1 problem a day, sharing my wins and fails so we grow together 💻📚
💬 Wanna join? Drop your “I’m in” or thoughts below ⬇️ Let’s keep each other consistent!
@byte_philosopher
#AugustLeetCodeGrind 🔥
🔥9👍3
#August_14_LeetCode_Grind
🚀 DSA Bite: Queues & Stacks 📚
📌 Stack → Last In, First Out (LIFO)
👉 Example: Stack of plates – last plate on top comes off first.
🔹 Operations: push(), pop(), peek()
📌 Queue → First In, First Out (FIFO)
👉 Example: People in a line – first person in line gets served first.
🔹 Operations: enqueue(), dequeue(), front()
💡 Tip:
Stack → Use when you need to reverse or backtrack (undo, DFS).
Queue → Use when you need order processing (printer queue, BFS).
@byte_philosopher
🚀 DSA Bite: Queues & Stacks 📚
📌 Stack → Last In, First Out (LIFO)
👉 Example: Stack of plates – last plate on top comes off first.
🔹 Operations: push(), pop(), peek()
📌 Queue → First In, First Out (FIFO)
👉 Example: People in a line – first person in line gets served first.
🔹 Operations: enqueue(), dequeue(), front()
💡 Tip:
Stack → Use when you need to reverse or backtrack (undo, DFS).
Queue → Use when you need order processing (printer queue, BFS).
@byte_philosopher
🔥4
So for today here is the challange to solve
Implement Stack using Queues
So solve it and share it here.
@byte_philosopher
Implement Stack using Queues
Implement a last-in-first-out (LIFO) stack using only two queues. The implemented stack should support all the functions of a normal stack (push, top, pop, and empty).
Implement the MyStack class:
void push(int x) Pushes element x to the top of the stack.
int pop() Removes the element on the top of the stack and returns it.
int top() Returns the element on the top of the stack.
boolean empty() Returns true if the stack is empty, false otherwise.
So solve it and share it here.
@byte_philosopher
🔥3
🥰7
#August_15_LeetCode_Grind
Hey, lovelies, today I was learning sorting algorithm but didn't finished it. I understanded the concepts but getting hard to bit the leetcode challanges. So I will finish and post them tomorrow. Since it's Saturday let's take a deep sleep today and grid it tomorrow well.
Have a beautiful dream. 🫶
@byte_philosopher
Hey, lovelies, today I was learning sorting algorithm but didn't finished it. I understanded the concepts but getting hard to bit the leetcode challanges. So I will finish and post them tomorrow. Since it's Saturday let's take a deep sleep today and grid it tomorrow well.
Have a beautiful dream. 🫶
@byte_philosopher
🔥5
🌞 Morning Lark(የጠዋት ወፍ) or 🌙 Night Owl(የለሊት ጉጉት) ?
Which one are you?
React below to vote
👍 for Morning Lark
🔥 for Night Owl
And drop a comment — why do you feel this
@byte_philosopher
Which one are you?
React below to vote
👍 for Morning Lark
🔥 for Night Owl
And drop a comment — why do you feel this
@byte_philosopher
🔥9👍5🤷♀4🤷♂2🗿1
#August_16_LeetCode_Grind
📊 Sorting in DSA (Quick Summary)
🔹 Definition: Sorting means arranging data in a particular order (ascending/descending).
🔹 Why it matters: Makes searching faster ⚡, data easier to analyze, and algorithms more efficient.
🧮 Common Sorting Algorithms
🧩 Bubble Sort → Compare & swap (Simple but slow 🚶).
⚡ Quick Sort → Divide & conquer, very fast in practice.
📚 Merge Sort → Stable, good for linked lists.
⚙️ Insertion Sort → Good for small datasets.
🏎️ Heap Sort → Based on binary heap, efficient.
✅ Tip: Always choose sorting based on data size + constraints.
@byte_philosopher
📊 Sorting in DSA (Quick Summary)
🔹 Definition: Sorting means arranging data in a particular order (ascending/descending).
🔹 Why it matters: Makes searching faster ⚡, data easier to analyze, and algorithms more efficient.
🧮 Common Sorting Algorithms
🧩 Bubble Sort → Compare & swap (Simple but slow 🚶).
⚡ Quick Sort → Divide & conquer, very fast in practice.
📚 Merge Sort → Stable, good for linked lists.
⚙️ Insertion Sort → Good for small datasets.
🏎️ Heap Sort → Based on binary heap, efficient.
✅ Tip: Always choose sorting based on data size + constraints.
@byte_philosopher
❤3
So Today I was trying to beat the amazjng part of DSA which is sorting. The core thing for data organization in Machine learning. I also tried to solve leetcode problem. ግን እኔ ብቻ ነኝ ጥያቄው ገብቶኝ code መፃፍ የሚያቅተኝ:: i just know the question and know the concepts but when it comes to leetcode ወፍ. Anyways we keep learning until we understand it.
@byte_philosopher
@byte_philosopher
👏5👌2💯2
This rain reminded me this childhood music "ዝናቡ መጣ አንጠባጠበ....."ጨርሱት😁
Happy Sunday my people 🫶
@byte_philosopher
Happy Sunday my people 🫶
@byte_philosopher
😁5🥰3
🥰6❤2
#August_18_LeetCode_Grind
📌 Topic: Binary Search 🔍
Today’s grind is all about sharpening our Binary Search skills.
Binary Search is one of the most fundamental algorithms in coding interviews – efficient, elegant, and powerful for solving search-based problems in O(log n) time.
✨ Why it matters?
Used in searching sorted arrays & matrices 📊
Core for solving advanced problems like search in rotated arrays, peak finding, etc.
Reduces brute force and saves runtime ⚡
🔥 Your challenge for today:
Revisit the classic Binary Search template
Solve 2–3 LeetCode problems that apply it in creative ways
💡 Pro tip: Always think about the midpoint and whether to move left or right. Mastering this logic unlocks many problems beyond simple searching.
@byte_philosopher
📌 Topic: Binary Search 🔍
Today’s grind is all about sharpening our Binary Search skills.
Binary Search is one of the most fundamental algorithms in coding interviews – efficient, elegant, and powerful for solving search-based problems in O(log n) time.
✨ Why it matters?
Used in searching sorted arrays & matrices 📊
Core for solving advanced problems like search in rotated arrays, peak finding, etc.
Reduces brute force and saves runtime ⚡
🔥 Your challenge for today:
Revisit the classic Binary Search template
Solve 2–3 LeetCode problems that apply it in creative ways
💡 Pro tip: Always think about the midpoint and whether to move left or right. Mastering this logic unlocks many problems beyond simple searching.
@byte_philosopher
⚡3❤1
Me: waking up በዓል ለማክበር
also the rain: መጣና ባመቱ እረ እንደምን ሰነበቱ
ሆያ ሆዬ....እርገጠው:)
Happy ቡሄ ቤተሰብ🎉
@byte_philosopher
also the rain: መጣና ባመቱ እረ እንደምን ሰነበቱ
ሆያ ሆዬ....እርገጠው:)
Happy ቡሄ ቤተሰብ🎉
@byte_philosopher
😁14❤4
This media is not supported in your browser
VIEW IN TELEGRAM
Look what I have got on the street of bole መድሃኒያለም. Idk who are they tho but love it👀
@byte_philosopher
@byte_philosopher
❤11❤🔥4🙉1