__noob__coder__'s profile picture. CloudNative Engineer ☁️ | Interested in Ethereum core protocol 🔮 | Rustacean 🦀 | Gopher | Zig | Neovimmer

Archi

@__noob__coder__

CloudNative Engineer ☁️ | Interested in Ethereum core protocol 🔮 | Rustacean 🦀 | Gopher | Zig | Neovimmer

Épinglé

Best lesson I learned from @tsoding 😉

A senior developer in one stack might be a junior in many others. But their expertise is not defined by their stack. It is defined by their language-agnostic mindset. If someone develops this mindset, picking up a new language or framework takes only a couple of weeks.



Archi a reposté

Designing a SIMD Algorithm from Scratch by Miguel is absolutely a great read! mcyoung.xyz/2023/11/27/sim…

vivekgalatage's tweet image. Designing a SIMD Algorithm from Scratch by Miguel is absolutely a great read!

mcyoung.xyz/2023/11/27/sim…

Compiler Optimizations and SIMD The ongoing research in compiler technology is fascinating; every year, new research takes SIMD-related optimizations further to improve performance in many ways. 🚀 Two of the papers that I am reading right now are * Minotaur: A SIMD-Oriented…

vivekgalatage's tweet image. Compiler Optimizations and SIMD

The ongoing research in compiler technology is fascinating; every year, new research takes SIMD-related optimizations further to improve performance in many ways. 🚀

Two of the papers that I am reading right now are 

* Minotaur: A SIMD-Oriented…
vivekgalatage's tweet image. Compiler Optimizations and SIMD

The ongoing research in compiler technology is fascinating; every year, new research takes SIMD-related optimizations further to improve performance in many ways. 🚀

Two of the papers that I am reading right now are 

* Minotaur: A SIMD-Oriented…
vivekgalatage's tweet image. Compiler Optimizations and SIMD

The ongoing research in compiler technology is fascinating; every year, new research takes SIMD-related optimizations further to improve performance in many ways. 🚀

Two of the papers that I am reading right now are 

* Minotaur: A SIMD-Oriented…
vivekgalatage's tweet image. Compiler Optimizations and SIMD

The ongoing research in compiler technology is fascinating; every year, new research takes SIMD-related optimizations further to improve performance in many ways. 🚀

Two of the papers that I am reading right now are 

* Minotaur: A SIMD-Oriented…


Archi a reposté

Today after a benchmarking I found that in Rust Path::cmp does THIS. It creates 3 different iterators but whats funny it PARSES both paths strings to create a components array fff.nvim sync is now 6% faster by replacing Path::cmp with path.to_os_str().cmp

neogoose_btw's tweet image. Today after a benchmarking I found that in Rust Path::cmp does THIS. 

It creates 3 different iterators but whats funny it PARSES both paths strings to create a components array

fff.nvim sync is now 6% faster by replacing Path::cmp with path.to_os_str().cmp

Archi a reposté

We just fought a nasty Kafka bug in production and it all came down to consumer lag + silent connection drops. Here’s what happened, what we learned, and what you should absolutely check in your own systems. The Incident We had a Kafka consumer that normally processes messages…

Data streaming, logs, and Kafka! x.com/i/broadcasts/1…



Archi a reposté

We recently discovered Pulsar-Native, a WIP game engine built on top of GPUI. It's looking pretty awesome from the screenshots! github.com/Far-Beyond-Pul…

zeddotdev's tweet image. We recently discovered Pulsar-Native, a WIP game engine built on top of GPUI.
It's looking pretty awesome from the screenshots!

github.com/Far-Beyond-Pul…

Archi a reposté

Princeton University's Measure Theory Lecture Notes PDF: web.math.princeton.edu/~js129/PDFs/te…

Riazi_Cafe_en's tweet image. Princeton University's Measure Theory Lecture Notes

PDF: web.math.princeton.edu/~js129/PDFs/te…

Archi a reposté

"Mini-LSM--Build a simple key-value storage engine in a week" This looks like a great learning resource for folks looking to get started with log-structured merge trees in #Rust 🦀, by @iskyzh. 👉 skyzh.github.io/mini-lsm/

gunnarmorling's tweet image. "Mini-LSM--Build a simple key-value storage engine in a week"

This looks like a great learning resource for folks looking to get started with log-structured merge trees in #Rust 🦀, by @iskyzh.

👉 skyzh.github.io/mini-lsm/

Archi a reposté

Im building my own C++ inference engine for LLMs that runs on CPU it currently supports - byte pair encoding for tokenization. - gpt2 architecture implemented with strided memory. - kv cache for speedup. - greedy sampling and temperature based sampling for tokens. - NEON…


Archi a reposté

This paper outlines some interesting patterns for HFT. arxiv.org/pdf/2309.04259

vivekgalatage's tweet image. This paper outlines some interesting patterns for HFT.

arxiv.org/pdf/2309.04259

Archi a reposté

Curated list of ESP8266/32 projects and code github.com/agucova/awesom…

tom_doerr's tweet image. Curated list of ESP8266/32 projects and code

github.com/agucova/awesom…

Archi a reposté

Follow @mattgodbolt's exciting new series: Advent of Compiler Optimizations 2025. It explains many of the mysteries, such as the use of `xor eax, eax` for `return 0;` I am sure many of those will be a great learning experience in compiler technology. youtube.com/playlist?list=…

vivekgalatage's tweet image. Follow @mattgodbolt's exciting new series: Advent of Compiler Optimizations 2025.

It explains many of the mysteries, such as the use of `xor eax, eax` for `return 0;`

I am sure many of those will be a great learning experience in compiler technology.

youtube.com/playlist?list=…

Archi a reposté

A web server is brutally simple, and you should know how to write a basic one from scratch. It's not hard. Here's a minimal web server for 211BSD UNIX in C, and it's about the most basic version you can do. Skim through and make sure you understand it! github.com/davepl/pdpsrc/…


Archi a reposté

Memory-mapped I/O is fast on Linux, but it has a scary secret. 😱 When you write to a memory-mapped file (mmap), you aren't writing to the disk. You're writing to RAM (the Page Cache). If the power fails, that data is gone forever. Enter msync (syscall #26 on x86_64). It's the…

popovicu94's tweet image. Memory-mapped I/O is fast on Linux, but it has a scary secret. 😱

When you write to a memory-mapped file (mmap), you aren't writing to the disk. You're writing to RAM (the Page Cache).

If the power fails, that data is gone forever.

Enter msync (syscall #26 on x86_64). It's the…

Archi a reposté

Analysis and exploitation of a Use-After-Free vulnerability in the Linux network packet schedule (CVE-2025-38001) syst3mfailure.io/rbtree-family-… #infosec #Linux

0xor0ne's tweet image. Analysis and exploitation of a Use-After-Free vulnerability in the Linux network packet schedule (CVE-2025-38001)

syst3mfailure.io/rbtree-family-…

#infosec #Linux

Archi a reposté

Machine learning lecture notes by Kyuanghyun Cho PDF: arxiv.org/pdf/2505.03861

Riazi_Cafe_en's tweet image. Machine learning lecture notes
by Kyuanghyun Cho

PDF: arxiv.org/pdf/2505.03861

Archi a reposté

Lots of hands on practice and this x.com/vivekgalatage/…

The Best a C++ Programmer Can Get agner.org/optimize/optim…

vivekgalatage's tweet image. The Best a C++ Programmer Can Get

agner.org/optimize/optim…


Archi a reposté

This is how binary data translates to assembly language

Assembly 😄



Archi a reposté

Low-Level Software Security for Compiler Developers If you ever wanted a textbook-style guide to memory safety bugs, undefined behavior, exploit mitigations, side channels, etc. All in one spot, this free book is it: llsoftsec.github.io/llsoftsecbook/

alexjplaskett's tweet image. Low-Level Software Security for Compiler Developers 

If you ever wanted a textbook-style guide to memory safety bugs, undefined behavior, exploit mitigations, side channels, etc. 

All in one spot, this free book is it:

llsoftsec.github.io/llsoftsecbook/

Archi a reposté

Two decades ago, Arduino put a microcontroller in every student’s hand, revolutionizing grassroots education. Today, as Arduino begins a new chapter in another domain, we’re opening the next chapter in education: putting FPGAs into every student’s hand. We’re delighted to…

Vicharak_In's tweet image. Two decades ago, Arduino put a microcontroller in every student’s hand, revolutionizing grassroots education.

Today, as Arduino begins a new chapter in another domain, we’re opening the next chapter in education: putting FPGAs into every student’s hand.

We’re delighted to…

Loading...

Something went wrong.


Something went wrong.