Logo
Login
Tech Posts 31382
100daysofcode 100daysofdevops 100pay 10mistakes 10yearworkanniversary 11 11labs 11tly 11ty 127001

Dev Blog A constructive and inclusive blog for software developers. With you every step of your journey.

Built with modern PHP and MySQL. Open source software that powers developer blogs and other inclusive communities.

Made with love and PHP. Dev Blog © 2024.

Simplifying SQL function implementation with Rust procedural macro

Simplifying SQL function implementation with Rust procedural macro
Background ⛶#[function("length(varchar) -> int4")] pub fn char_length(s: &str) -> i32 {     s.chars().count() as i32 }This exemplifies a RisingWave implementation of...
13.03.2025 0 Read More

Mastering Error Handling in Rust: Beyond Result and Option

Mastering Error Handling in Rust: Beyond Result and Option
Error handling in Rust is not as simple as just using Result and Option. For beginners, Rust’s error handling can be quite unfriendly. After struggling with it multiple times, I decided to organize ...
13.03.2025 0 Read More

Rust Cross-Platform Development: Build Once, Deploy Everywhere

As a best-selling author, I invite you to explore my books on Amazon. Don't forget to follow me on Medium and show your support. Thank you! Your support means the world! Cross-platform development r...
14.03.2025 0 Read More

Rust Smart Pointers Explained: Ownership, Memory, and Safety

Rust Smart Pointers Explained: Ownership, Memory, and Safety
What Are Smart Pointers in Rust? Smart pointers are a type of data structure that not only own data but also provide additional functionalities. They are an advanced form of pointers.A pointe...
14.03.2025 0 Read More

Mastering Rust Project Structure with Packages, Crates, and Modules 🚀

As your Rust projects grow, organizing your code efficiently becomes crucial for maintainability, reusability, and scalability. Rust provides a well-defined module system using packages, crates, and m...
15.03.2025 0 Read More

A comparison of Go and Rust syntax

A comparison of Go and Rust syntax
Leapcell: The Next - Gen Serverless Platform for Web Hosting A Comprehensive Comparison of Code Writing in Go and Rust I. Introduction In today's programming world, both Go and Rust a...
15.03.2025 0 Read More

Creating simple and fast lexer with logos

Creating simple and fast lexer with logos
Logos Hello guys, this is my first post. I'm writing this post cause of i really liked and enjoyed during writing the tokenizer with the logos but i couldn't what i wanted, maybe i didn't und...
15.03.2025 0 Read More

A Simple Guide to Read Rust Source Code Effectively

A Simple Guide to Read Rust Source Code Effectively
1. Start with Fundamental Modules These modules are used in almost every Rust program, and understanding them is the foundation of learning the Rust standard library. std::option::Option and...
16.03.2025 0 Read More

Why i dropped Golang and started rust.

Why I dropped Golang and started Rust.So, I was learning Golang and then became obsessed with the raw performance of a language. That's when I discovered Rust. Everyone was saying Rust is the GOAT, as...
16.03.2025 0 Read More

Optimizing Rust Performance with jemalloc

Optimizing Rust Performance with jemalloc
What is jemalloc? jemalloc is a modern memory allocator originally developed by Jason Evans for FreeBSD. Compared to traditional malloc, jemalloc was designed from the outset to reduce memory...
16.03.2025 0 Read More
Loading...
#reading
What’s Holding Your Dev Team Back? The Surprising Power of the Eisenhower Matrix for Smarter Task Management
0
How to Optimize Your WordPress Website with Cloudflare Page Rules
0
What Is AlgoFi.ai? A Deep Dive into the Future of AI-Powered Trading
0
🧠 Understanding the Virtual DOM in React: How It Works and Why It Matters
0
Simplify Video Frame Rate Adjustment in Rust: A Practical Guide for Developers
0
#popular
Top 8 Open-Source Tools for Web Application Development
0
Turn any git repo into llm readable format
0
New Release: Free Email Signature Generator
0
Understanding Event Delegation in JavaScript: From Bubbling to Data Attributes
0
AI Runner: OpenSource desktop app for AI models
0