Finally solved the NeetCode Encode/Decode Strings problem by building a zero-allocation, byte-level chunked parser in Rust. Realized that a simple string split isn't enough for safe network payloads.
https://t.co/q7SymwUxpc
Was doing group anagrams in Rust and wanted to beat string sorting (O(K log K)). Read up on constraints & used ASCII math (byte - b'a') to map characters to a fixed [i32; 26] array. Using it as the HashMap key drops time to linear O(K). Felt like a magic trick when it clicked.
Dug into the Linux boot process and filesystem today. From BIOS to systemd, it’s wild how everything comes together! #Linux#TechLearning#kernel
https://t.co/7vrlgzl0fr
Got my hands dirty with #Jenkins , creating pipelines to automate the build and deployment of a Spring Boot server. Something you should not do; learn more on the blog post:
https://t.co/w3NuHkzdSj
Started my DevOps journey today!
Learned Python basics, explored FreeBSD (realized how underappreciated it is), and began coding in Neovim to master Vim. #DevOps#Python#vim
I finished the SQL course recently. I should be doing a project on that, but I am still deciding which dataset to analysis and visualization using Jupyter notebook and SQL 🤔
#SQL#DataAnalytics#Database
@ananyacodesigns I'm currently working on a personal data analysis project using SQL(learning rn). I'm analyzing sales data to gain insights and enhance my data analysis skills
Everybody want to be the “idea guy” visionary.
Nobody wants to roll up their sleeves and do the work.
A lot of businesses die from having too many Chiefs and not enough Indians.