Dcode
195 subscribers
183 photos
21 videos
5 files
125 links
I'm Dave , the CLI guy
Download Telegram
Forwarded from Rust-Script
Simple idea and implementation But I think Meaningfull thought any way I Build MEMENTO MORI YOUR WAKE UP CALL

This project is simple i thought the idea is a bit odd for people that's why i build it we will make really good project soon.

🔗website
React 19.2: The async shift is finally here

🧻 These changes aren’t just about cleaning up the useEffect/fetch mess. It’s about building a much better React that finally acknowledges async as a first-class concern.

😡 These patterns mean that the code your team writes is easier to reason about and maintain. The framework is handling more. The UI is snappier because it’s updating on demand. And you are leveraging more of the underlying framework to give your application a modern feel with smooth animations.


#react

Read more
Forwarded from soy devs
The following are youtube channels I got a lot of value from around coding and software in big 2025, I suggest you check them out. I tried to list them from most popular to least.

youtube.com/@ThePrimeTimeagen
youtube.com/@LowLevelTV
youtube.com/@t3dotgg
youtube.com/@NeetCodeIO
youtube.com/@teej_dv
youtube.com/@LukeSmithxyz
youtube.com/@bigboxSWE
youtube.com/@CodingJesus
youtube.com/@BenVallack
youtube.com/@sylvanfranklin
youtube.com/@smnatale
youtube.com/@bashbunni
youtube.com/@BreadOnPenguins


if you suggest any other channel comment you favorite.
1
I’ve been working on a full-stack project recently and tried using Cloudflare Workers for the backend.
Surprisingly, it handled everything I needed without much setup.
The global response time is noticeably fast, and scaling wasn’t something I had to think about.
Still learning a few things about limitations, but overall it’s been a solid experience
Channel Summary for 2025 🎉

Views
• 71 Total Posts
• 101 Average Views
• 7,188 Total Views

Top Post
• 701 Views
https://t.me/broke_developer_et/22

Activity
• 3 PM is when you were most active
• Tuesday is your most active day
• November is your most active month

@channel_unwrapped_bot
🔥2
Linus Torvalds: Vibe coding is fine, but not for production

The creator of linux and git said this
🤣1
What is Codeberg

Codeberg is a free, community-driven, non-profit hosting platform for software projects.
Technically, it runs on Forgejo (a fork of Gitea), delivering Git repository hosting and collaboration tools.
Instead of being owned by a company chasing profit, Codeberg is operated by a non-profit association (Codeberg e.V.), and its development and infrastructure are funded by donations and community contribution.

In short: Codeberg is like a “GitHub-style” home for open source — minus the corporate interest



What Codeberg Offers (Key Features)

If you host your code on Codeberg, you get much more than just a Git repo. Among the main features:

Repository hosting (with branching, merging, pull requests, code reviews) — just like other Git platforms.
Issue tracking, project management tools (labels, milestones, etc.), and wikis for documentation.
Releases, package/asset management, and Git LFS support for large files.
Additional services beyond just code hosting:

Static website hosting via Codeberg Pages (for project sites, documentation, blogs, etc.)
CI/CD support through Woodpecker CI (automated building/testing) and built-in integration for continuous workflows.
Collaborative translation support through Weblate for localization/internationalization of projects.

So whether you’re writing code, managing a library, building documentation or project sites, working in a team — Codeberg gives you tools to handle it all.
It is just like Github but for the community
Dcode
https://www.youtube.com/watch?v=iPaXlFUHJp0
Just learn something new in each day
🔥2
Rust intern saved TikTok $300K

A TikTok intern rewrote CPU-intensive payment service endpoints from Go to Rust, reducing average latency by 30%, P99 latency by 76%, and cutting compute costs by 50%—saving $300K annually. The migration used a gradual rollout strategy with separate Rust clusters under the same service name, avoiding upstream code changes. Key challenges included adapting Go's zero values to Rust's Option enum and optimizing memory allocations. The main lesson: Rust delivers performance gains at the cost of developer productivity, making it ideal for high-usage, stable components where economies of scale justify the rewrite effort.

here is the video link

https://www.youtube.com/watch?v=1y_vBNbZmIA
🔥4
NEOVIM IS #1 IDE
NEOVIM IS #1 IDE
NEOVIM IS #1 IDE
NEOVIM IS #1 IDE
NEOVIM IS #1 IDE
🔥2
I recently discovered tmux, and honestly it’s a super useful and really cool tool.
It lets you manage multiple terminal sessions inside one window, keep processes running in the background, and come back exactly where you left off.

Once you get used to it, it’s hard to imagine working in the terminal without it.

Tmux = terminal + server
Forwarded from Web3 Ethiopia
This media is not supported in your browser
VIEW IN TELEGRAM
🎓 Web3 Ethiopia University Tour — OFFICIALLY LIVE! 🚀

We’re taking Web3 straight to campus.
The Web3 Ethiopia Uni Tour is built to onboard and empower students across 5 major tech universities in Ethiopia ⚡️

📍 AAU
📍 AASTU
📍 HILCOE
📍 ASTU
📍 ACT


If you’re a student at any of these universities, this is for you.

Learn Web3 fundamentals, explore real-world use cases, discover technical & non-technical opportunities, and understand how to start building and earning in the space.

👉 Stay updated on tour dates, registrations, resources, and opportunities on Web3 Ethiopia .


Let’s build Ethiopia’s Web3 future together 🇪🇹⚡️
Grapheme cluster

A grapheme cluster is one character that humans see, even if the computer stores it as many parts.


ASCII
Old system
1 character = 1 byte
A B C 1

No confusion.


Unicode (modern text)

é = e + ʼ
Looks like one character
Stored as multiple parts
That one visible character = grapheme cluster

JavaScript
JS counts UTF-16 units, not what you see.
javascript
"👍".length // 2

Rust
Rust counts UTF-8 bytes.

rust
"👍".len() // 4



Final idea

Computers count bytes.
Humans count grapheme clusters.
1
Finished my first Rust beginner project

which is todo cli app

that is basically todo list tracker app in cli

I've learned a lot while doing this project and it is fun and painfull

repo
🔥31
Still amazes me everyday this guy built git in 10 days🤯
🤯1