coderj001's profile picture. I'm just lifetime learner...🙏🏻

Raju Ghorai

@coderj001

I'm just lifetime learner...🙏🏻

置頂

My latest blog post has been featured in @hashnode's Weekly Newsletter! Thrilled to be recognized by such a vibrant developer community. Big shoutout to @danizeres Check out the post and join the discussion! #devcommunity #hashnode coderj001.hashnode.dev/mastering-dock…

coderj001's tweet image. My latest blog post has been featured in @hashnode's Weekly Newsletter! Thrilled to be recognized by such a vibrant developer community.
Big shoutout to @danizeres

Check out the post and join the discussion! #devcommunity #hashnode
coderj001.hashnode.dev/mastering-dock…

Raju Ghorai 已轉發

Most web devs use Python, JS, or PHP. But building a template engine in C? That's how you learn what's REALLY happening under the hood. ✓ Build a TCP server ✓ Process HTTP requests ✓ Handle variables, conditionals & loops

_trish_xD's tweet image. Most web devs use Python, JS, or PHP.

But building a template engine in C? That's how you learn what's REALLY happening under the hood.

✓ Build a TCP server
✓ Process HTTP requests  
✓ Handle variables, conditionals & loops

Raju Ghorai 已轉發

Truncate is a DDL Each table and all its indexes have pointers to files on disk. Truncate simply resets those points to blank files. For this operation to happen atomically, truncate takes an exclusive table lock which blocks and reads and writes for the time it takes to repoint…

hnasr's tweet image. Truncate is a DDL

Each table and all its indexes have pointers to files on disk. Truncate simply resets those points to blank files. For this operation to happen atomically, truncate takes an exclusive table lock which blocks and reads and writes for the time it takes to repoint…
hnasr's tweet image. Truncate is a DDL

Each table and all its indexes have pointers to files on disk. Truncate simply resets those points to blank files. For this operation to happen atomically, truncate takes an exclusive table lock which blocks and reads and writes for the time it takes to repoint…

Raju Ghorai 已轉發

Reverse Engineering for Noobs TLDR; Brief introduction to RE, executables, compiling, 32-bit x86 syntax, and stack frames. x86re.com/1.html

5mukx's tweet image. Reverse Engineering for Noobs

TLDR; Brief introduction to RE, executables, compiling, 32-bit x86 syntax, and stack frames.

x86re.com/1.html

Raju Ghorai 已轉發

Sad day to be a C++ dev. It will become harder to dunk on Python.

As of Python 3.14, the free-threaded (or no-GIL) version of the Python interpreter is no longer considered experimental.

charliermarsh's tweet image. As of Python 3.14, the free-threaded (or no-GIL) version of the Python interpreter is no longer considered experimental.


Raju Ghorai 已轉發

Built a JavaScript runtime in C to understand how Node.js, Bun & Deno actually work Jade Runtime covers: - JavaScriptCore engine integration - libuv event loop architecture - Native API bindings - Async I/O implementation

_trish_xD's tweet image. Built a JavaScript runtime in C to understand how Node.js, Bun & Deno actually work 

Jade Runtime covers: 
- JavaScriptCore engine integration 
- libuv event loop architecture 
- Native API bindings - Async I/O implementation

While exploring about hash functions, I came across an interesting algorithm: Rabin–Karp string matching ⚡ Editors like VSCode (or any text search) often use this to find patterns in O(n + m) time instead of O(n·m) brute force. tinyurl.com/33489tkw

coderj001's tweet image. While exploring about hash functions, I came across an interesting algorithm: Rabin–Karp string matching ⚡
Editors like VSCode (or any text search) often use this to find patterns in O(n + m) time instead of O(n·m) brute force.
tinyurl.com/33489tkw

Raju Ghorai 已轉發

Intro to x86 Assembly Language. (Link below)

zuhaitz_dev's tweet image. Intro to x86 Assembly Language.

(Link below)

Raju Ghorai 已轉發

Learn how to build a ping utility from scratch using raw sockets and ICMP protocol in C

_trish_xD's tweet image. Learn how to build a ping utility from scratch using raw sockets and ICMP protocol in C

Raju Ghorai 已轉發

"Let's Build a Simple Database" by Connor Stack I came across this detailed blog that mimics SQLite from the ground up to understand the internals and its implementation journey in C, adding to the reading list. cstack.github.io/db_tutorial/

vivekgalatage's tweet image. "Let's Build a Simple Database" by Connor Stack

I came across this detailed blog that mimics SQLite from the ground up to understand the internals and its implementation journey in C, adding to the reading list.

cstack.github.io/db_tutorial/

SQLite is used across various projects for efficient data storage and retrieval. Many browser engines, Chromium included, rely on SQLite for various browser functions. The official architecture page is quite an exciting read, with pointers to the code.…

vivekgalatage's tweet image. SQLite is used across various projects for efficient data storage and retrieval.  Many browser engines, Chromium included, rely on SQLite for various browser functions.  

The official architecture page is quite an exciting read, with pointers to the code.…


Raju Ghorai 已轉發

CPP / C++ Notes for Windows API Programming Win32 caiorss.github.io/C-Cpp-Notes/Wi…

5mukx's tweet image. CPP / C++ Notes for Windows API Programming Win32

caiorss.github.io/C-Cpp-Notes/Wi…

Raju Ghorai 已轉發

InstagramPrivSniffer: Views Instagram private account's media without login GitHub: github.com/obitouka/Insta…

DarkWebInformer's tweet image. InstagramPrivSniffer: Views Instagram private account's media without login

GitHub: github.com/obitouka/Insta…

Raju Ghorai 已轉發

Cache Memory

chessMan786's tweet image. Cache Memory

Raju Ghorai 已轉發

🦾 AI+Hacking: Using LLMs to Hack Better and Faster Blog: blog.ethiack.com/blog/dont-fear… author: @0xacb

mqst_'s tweet image. 🦾 AI+Hacking: Using LLMs to Hack Better and Faster

Blog: blog.ethiack.com/blog/dont-fear…

author: @0xacb
mqst_'s tweet image. 🦾 AI+Hacking: Using LLMs to Hack Better and Faster

Blog: blog.ethiack.com/blog/dont-fear…

author: @0xacb

Raju Ghorai 已轉發

"Competitive Programmer’s Handbook" ~300 pages book covers ALL important topics. Absolutely FREE.

swapnakpanda's tweet image. "Competitive Programmer’s Handbook"

~300 pages book covers ALL important topics. Absolutely FREE.

Raju Ghorai 已轉發

Docker 101: Restart a Container on Failure Automatically 🐳 Some containerized apps are more resilient than others. Practice configuring the restart policy of a container to make it outlive application crashes labs.iximiuz.com/challenges/doc…


Raju Ghorai 已轉發

Learn How to Reverse Engineer Games with IDA Pro 👉 youtube.com/watch?v=5eZ8Nm…


Raju Ghorai 已轉發

Linux Network Internals

chessMan786's tweet image. Linux Network Internals

Raju Ghorai 已轉發

25 Blogs to Learn 25 AWS Concepts: 1) API Gateway: techopsexamples.com/p/architecture… 2) Scaling Patterns: techopsexamples.com/p/cloud-scalin… 3) VPC Network Segmentation: techopsexamples.com/p/aws-vpc-netw… 4) DR Strategies: techopsexamples.com/p/cloud-disast… 5) Load Balancers: techopsexamples.com/p/load-balance… 6) Cross Zone Load…

govardhana_mk's tweet image. 25 Blogs to Learn 25 AWS Concepts:

1) API Gateway: techopsexamples.com/p/architecture…
2) Scaling Patterns: techopsexamples.com/p/cloud-scalin…
3) VPC Network Segmentation: techopsexamples.com/p/aws-vpc-netw…
4) DR Strategies: techopsexamples.com/p/cloud-disast…
5) Load Balancers: techopsexamples.com/p/load-balance…
6) Cross Zone Load…

Raju Ghorai 已轉發

Windows Local Privilege Escalation through the bitpixie Vulnerability blog.syss.com/posts/bitpixie/

5mukx's tweet image. Windows Local Privilege Escalation through the bitpixie Vulnerability

blog.syss.com/posts/bitpixie/

United States 趨勢

Loading...

Something went wrong.


Something went wrong.