20! dev👨‍💻 | Built @getblinkdotfun mail-check.tech | ex @gib_work | contributor to @anza_xyz, @EthereumRemix , @neur_sh etc. Member @AthenaF0SS

Joined May 2024
93 Photos and videos
Finally after almost a year... Thnx @Seeker_Tracker @metasal 🫡 What should I do first @solanamobile?
2
2
14
727
Joined a new company last week, comparatively bigger team then the once with I worked earlier, Entire week I was hardly assigned any tasks, that's some change in pace I need to adapt too...🫠
7
89
- Saves CU - Structured JSON logs - Delivered wherever your team lives
submitted SolTrace for Frontier Hackathon by @colosseum structured logging observability for solana programs. reducing logging CU costs by up to 90% while making on-chain programs actually debuggable. building the missing observability layer for Solana.
6
109
LFG🚀
LFG 🚀
3
80
Idea validated for @colosseum cookin with @gambishhhh time to ship! @SuperteamIN
Fixing logs on solana with @gambishhhh updates coming soon....👀
5
201
How do I claim credits? @ycombinator
At @ycombinator startups school..👀
1
127
At @ycombinator startups school..👀
2
203
Fixing logs on solana with @gambishhhh updates coming soon....👀
3
348
Just added support for Objects and maps in my rust based ts interpreter! Object literals, dot bracket access, nested properties Chained accessors: obj.items[0], arr[0].name Reference semantics mutate objects inside functions, caller sees the change github.com/shubhiscoding/Rus…
Added support for nested read and write, plus refactored to Rc<RefCell<Vec>> to gain O(1) read and write for array interpretation. github.com/shubhiscoding/Rus…
4
152
Added support for nested read and write, plus refactored to Rc<RefCell<Vec>> to gain O(1) read and write for array interpretation. github.com/shubhiscoding/Rus…
Built array support for Rusty Runtime: literals, indexing, mutation, pass/return from functions, Also added CI. we just wrote a working merge sort in .rts! github.com/shubhiscoding/Rus… read and reassignment support for nested arrays is a todo for now
2
233
Built array support for Rusty Runtime: literals, indexing, mutation, pass/return from functions, Also added CI. we just wrote a working merge sort in .rts! github.com/shubhiscoding/Rus… read and reassignment support for nested arrays is a todo for now
Rusty Runtime now has functions, recursion, and a frame-based VM. Each function gets its own call frame with isolated scope. Nested calls, return values, the full call stack✅. factorial(), fibonacci() etc runs natively on our custom bytecode VM(No V8/JIT). Next up: arrays.
3
149
Rusty Runtime now has functions, recursion, and a frame-based VM. Each function gets its own call frame with isolated scope. Nested calls, return values, the full call stack✅. factorial(), fibonacci() etc runs natively on our custom bytecode VM(No V8/JIT). Next up: arrays.
🦀 rusty_runtime now has strings! String literals, concatenation, and mixed-type concat ("val: " 5), String comparisons, Truthy/falsy: "" and 0 are falsy, we can now express algos like Fibonacci, GCD ,(Euclidean), prime checking etc. github.com/shubhiscoding/Rus… next: functions(👀)
1
162
🦀 rusty_runtime now has strings! String literals, concatenation, and mixed-type concat ("val: " 5), String comparisons, Truthy/falsy: "" and 0 are falsy, we can now express algos like Fibonacci, GCD ,(Euclidean), prime checking etc. github.com/shubhiscoding/Rus… next: functions(👀)
🦀 rusty_runtime update: for loops with proper continue semantics, && and || with short-circuit evaluation, i / i-- increment/decrement, ```continue``` now uses backpatching — works correctly in both while and for loops github.com/shubhiscoding/Rus… Next up: functions(👀)
2
176
implementing continue for ```for loop``` was kindda trickky... In a while loop, continue just jumps back to the condition. Simple. But in a for loop: for(let i=0; i<10; i ) — if continue skips to the condition, the update (i ) never runs. Infinite loop. 💀
🦀 rusty_runtime update: for loops with proper continue semantics, && and || with short-circuit evaluation, i / i-- increment/decrement, ```continue``` now uses backpatching — works correctly in both while and for loops github.com/shubhiscoding/Rus… Next up: functions(👀)
1
2
81
The problem: when compiling the loop body, we don't know WHERE the update instructions will be yet — the body hasn't finished compiling. The solution: backpatching
1
36
Every continue emits Jump(0), a placeholder We save its index in continue_placeholders After compiling the body, we know the update's start index, We go back and patch all continue jumps to point there for for loop, and backpatch to loop start for while loops.
28
🦀 rusty_runtime update: for loops with proper continue semantics, && and || with short-circuit evaluation, i / i-- increment/decrement, ```continue``` now uses backpatching — works correctly in both while and for loops github.com/shubhiscoding/Rus… Next up: functions(👀)
3
226
🦀rusty_runtime progress update! Since the last update we've added: while loops with backpatching, break & continue (with LoopContext tracking), variable reassignment (with undeclared var detection), refactored the compiler to use a shared instruction buffer
🦀 rusty_runtime update: if/else control flow is live! Added comparison operators (>, <, ==, !=), conditional branching with backpatching, and jump instructions in the VM. Next up: loops! 2 tasks ticked of on Language Features roadmap: github.com/shubhiscoding/Rus…
1
3
138
tldr this works now! ``` let x = (2 (3 * (4 2))) / 2; while (x>5){ if(x==8){ x=x-1; continue; } else { print x; } x=x-1; } ```
29
Look who's here! @SuperteamPOL 🫡 More updates coming!
🦀 rusty_runtime update: if/else control flow is live! Added comparison operators (>, <, ==, !=), conditional branching with backpatching, and jump instructions in the VM. Next up: loops! 2 tasks ticked of on Language Features roadmap: github.com/shubhiscoding/Rus…
1
4
79