Day 5 of 90: Effective HFT Prep with the Two-Pointer Technique and Overcoming DifficultiesFeb 10, 2026·2 min read
Day 7: Tackling Mic Gain Problems and Exploring High-Frequency TradingLet’s be real: some days of development are 10% coding and 90% fighting your tools. Day 7 was exactly that—a mix of OBS audio tuning, "Day 1" algorithm logic, and deep-level C++ concurrency. Check the live session here: Watch on YouTube 🎙️ The "Pre...Feb 14, 2026·3 min read
Day 2 of 90: HFT Prep – Memory Alignment & Binary Search VariantsThe Mission & Philosophy Watch Day 2 on Youtube here I’ve officially kicked off a 90-day challenge to break into top HFT firms like Graviton, Tower Research, and Jane Street. My goal isn't content creation; it’s about maintaining discipline and impro...Feb 7, 2026·2 min read
Day 1 Highlights for 90-Day High-Frequency Trading ReadinessLearnt about Binary Search Lower Bound code and Upper Bound From Strivers Youtube Playlist Implemented it on the Naukri Code 360 Platform used lower_bound() function and upper_bound() lower_bound(arr.begin(),arr.end(),target) // O(log n) Time Com...Feb 6, 2026·1 min read
Republic Day Insights: Effective Vector Memory Managementvector memory management #include <iostream> #include <vector> int main(){ std::vector<int> v; std::cout<<"Initial Capacity: "<< v.capacity() <<"\n"; for (int i = 0; i < 10; ++i){ v.push_back(i); std::cout<<" Size: " << ...Jan 26, 2026·2 min read
Falling in Love with ReactJSTIL, ReactJS docs are really good and I am starting to get a better hang of how hooks really work. useContext The most important thing in daily life of a ReactJS developer maybe the context providers. NextJS provides them pre written and ready to use...Aug 6, 2024·1 min read
Python is a scripting language?I was introduced to Python very late in life, I considered it too easy to get over. As I continued my internship at Summer of Bitcoin, I had some tasks related to python knowledge, I gave in and started finding resources for the same. Luckily my favo...Jul 24, 2024·2 min read
Typescript: Rust's non-biological brotherWhy did I start learning it? I embarked on my journey with TypeScript on May 28, 2024, to contribute to the Jam Project as part of the Summer of Bitcoin Internship program. What do I mean by brother? Strong typing: Both languages emphasize static ty...Jul 18, 2024·2 min read