Profile avatar
aavtic.bsky.social
🦀Rusteze. \n .py / .rs \n Neovim aavtic.dev github.com/Aavtic/
63 posts 11 followers 17 following
Regular Contributor
Active Commenter

Check my personal portfolio website! aavtic.dev

I have created a personal website for my portfolio and more. It's cool. Check it out at aavtic.dev

keybinding up on bluesky! :happy

COAPI is public! github.com/aavitc/coapi...

GUESS THE ALGORITHM Hint: Secret Key Exchange p, g p = 10 g = 5 A a = 4 A = g^a mod p A = 5 B b = 8 B = g^b mod p B = 5 A -> B: A B -> A: B A s = B ^ a mod p s = 5 B s = A ^ b mod p s = 5

Here is my understanding about TCP Sequence Number and Acknowledgement Numbers: You'll learn about TCP (Transmission Control Protocol) 3 way handshake and how the sequence number and Acknowledgement numbers play important role in making TCP a Reliable protocol.

Feeling good about Rust Generics while learning about Java Generics in College

Edging to the urge to learn new things during exam period is crazy!

I will make COAPI public mostly by new-year :sappy

I am making COAPI-rs private for some weeks due to some personal reasons... in-case anyone need any details about this project. Please DM me

Be natural

Btw exams are over guys

Cooking up some web-sockets in coapi for some real-time output! github.com/Aavtic/coapi...

I am thinking of building a server side template engine in Rust. php(.)rs

Be back in a week

Guys I have been taking a break lately from coding due to exams...

Moving to Server Side Rendering because I am starting to hate Javascript...

I solved it finally.... I used Unix Pipes a program similar to this can be used to get blocking output!. ``` capture.py import sys while True: char = sys.stdin.read(1) if char: sys.stdout.write(char) sys.stdout.flush() ``` and then run $./someprogram | python3 capture.py

why does typing ' www ' in neovim give different shape to the whole www?

Guys... What is the best way to get real-time output of a python program which is blocking (input statement, requests etc) ?

Fresh day

Wait, you can't upload gifs in this platform?

Rust X Python

What's a better alternative for IPC ?

Should I implement gRPC for languages that supporrt gRPC and REST API for other languages? OR Just implement REST API for all...