Login
Discover
Waves
Communities
Login
Signup
Topics
#Programming
Global
Trending
Hot
New
Top
#Programming
Hot
Top communities
Create your community
latest #programming hot topics | Ecency
nftea.gallery
BitShares
2026-08-23 00:23
Updating the Bitshares Astro UI with new referral system, TOTP support and improved theme support!
Latest Bitshares Astro UI development blog post - TOTP, referral system changes, theme improvements, etc
$ 0.892
6
1
scipio
StemSocial
2026-08-22 21:24
Learn Zig Series (#146) - Mini Project: Calculator - Lexer/Parser
Learn Zig Series (#146) - Mini Project: Calculator - Lexer/Parser Part of a multi-episode project What will I learn? How to start a real mini project -- a working four-function-plus calculator -- by building
$ 0.721
19
1
jza
Programming & Dev
2026-08-22 17:47
Published via Ecency
This guy is my hero, going back in time to learn a core language
Nostalgia week is becoming nostalgia month... This time I will talk about a guy that is buying himself back to the 90s to learn the famous C programming language using C.
scipio
StemSocial
2026-08-22 14:21
Learn Rust Series (#34) - Arc: Thread-Safe Reference Counting & Its Cost
Learn Rust Series (#34) - Arc: Thread-Safe Reference Counting & Its Cost What will I learn You will learn how Arc<T> differs from Rc<T>: identical shape and methods, but the reference counts
albertocova
Snapie
2026-08-22 14:59
Promoted
Entre el trabajo duro y la Web3: Mi historia con las criptomonedas y Hive/Between Hard Work and Web3: My Story with Cryptocurrencies and Hive
El trabajo nos fortalece
femdev
StemSocial
2026-08-22 13:57
Learn Creative Coding (#161) - Teaching Creative Coding
Learn Creative Coding (#161) - Teaching Creative Coding Last time we spent the whole episode building with other people -- the translator's job, the shared contract, the graceful fallback when your partner's
limonta
StemSocial
2026-08-22 08:54
Published via Ecency
Upgrading my Cuba-related USASpending tracker
Now trying to integrate, link, and add functionalities to my trackers.
scipio
StemSocial
2026-08-22 07:09
Learn JS Series (#9) - Functions: Declarations, Parameters, Return Values, and Hoisting
Learn JS Series (#9) - Functions: Declarations, Parameters, Return Values, and Hoisting What will I learn You will learn the three ways to create a function, and how they differ; how parameters, arguments,
iamjmarc
Flutter Devs
2026-08-22 14:19
Published via Ecency
Hive vs Isar vs SQLite: Choosing Local Storage for Offline-First Flutter Apps
If you're building offline-first in Flutter, sooner or later you have to pick a local storage engine. I've used all three of these in production apps, and each one has a real trade-off — here's how I'd
ibarra95
DIYHub
2026-08-22 08:50
Published via Ecency
Promoted
DIY! NFT Design of Doodles - Randy Hercules Avatar on X, made with foam clay. (Tutorial) [ENG] [ESP]
Hello!! Good evening, @diyhub family and lovers of handicrafts and DIY projects. Today I'm going to show you how to create an NFT Doodles avatar using foam clay, inspired by an X user named Randy Hercules.
scipio
StemSocial
2026-08-21 21:29
Learn Zig Series (#145) - Register Allocation
Learn Zig Series (#145) - Register Allocation What will I learn? What register allocation actually is -- the problem of mapping an unbounded number of intermediate values onto a fixed, small set of machine
iamjmarc
Flutter Devs
2026-08-21 21:32
Published via Ecency
Local-First State Management in Flutter: Lessons From Building Offline Apps
Most Flutter tutorials assume the network is always there: call an API, show a spinner, render the result. That model breaks the moment your users lose signal — and if you're building for regions with
scipio
StemSocial
2026-08-21 14:21
Learn Rust Series (#33) - Rc Internals: Reference Counting & Shared Ownership
Learn Rust Series (#33) - Rc Internals: Reference Counting & Shared Ownership What will I learn You will learn how Rc<T> is laid out in memory: a single heap allocation holding your value next
femdev
StemSocial
2026-08-21 14:15
Learn Creative Coding (#160) - Collaboration: Code + Other Disciplines
Learn Creative Coding (#160) - Collaboration: Code + Other Disciplines Last time we spent the whole episode on client work -- catching a foggy brief, pricing the days, bounding the revisions, getting paid
ecency
Town Square
2026-08-17 15:24
Published via Ecency
Promoted
Ecency Mobile 3.5.8: Community Moderation, Dictation and a Wallet You Can Read
Version 3.5.8 of the Ecency mobile app is out for iOS and Android. It is the first release since 3.5.7 in early July and it is a big one, so instead of listing every change, here is what actually shows
scipio
StemSocial
2026-08-21 07:49
Learn JS Series (#8) - Loops: for, while, for...of, for...in, and When to Use Which
Learn JS Series (#8) - Loops: for, while, for...of, for...in, and When to Use Which What will I learn You will learn the classic C-style for loop and exactly what each of its three parts does; when a while
hivepostify
HiveDevs
2026-08-21 11:53
Should HivePostify Stay Only on Hive? And Where Do We Go From Here?
Hello everyone, I hope you are doing well. For the last many days I have been thinking deeply about the future of HivePostify. I want to write this post with complete honesty. No filters. No polished marketing
scipio
StemSocial
2026-08-20 22:10
Learn Zig Series (#144) - Code Generation: AST to Machine Code
Learn Zig Series (#144) - Code Generation: AST to Machine Code What will I learn? What a code generator actually is -- instruction selection, the leap from a tree to a flat stream of bytes, and why a stack
scipio
StemSocial
2026-08-20 15:35
Learn Rust Series (#32) - Interior Mutability: Cell & RefCell
Learn Rust Series (#32) - Interior Mutability: Cell & RefCell What will I learn You will learn what interior mutability is, and how it bends Rust's "shared means read-only" rule without breaking
acgalarza
Town Square
2026-08-22 07:29
Published via Ecency
Promoted
Systems outlast the fleeting spark of motivation
You keep starting new projects with a burst of excitement, only to abandon them the moment they turn into routine. The high of something new carries you for a few days, but then the energy fades, and without
femdev
StemSocial
2026-08-20 13:35
Learn Creative Coding (#159) - Commissions and Client Work
Learn Creative Coding (#159) - Commissions and Client Work Last time we spent the whole episode knocking on doors -- open calls, juries, festivals, the funnel of submitting your work and living with the
scipio
StemSocial
2026-08-20 07:42
Learn JS Series (#7) - Control Flow: if/else, switch, and the Ternary Expression
Learn JS Series (#7) - Control Flow: if/else, switch, and the Ternary Expression What will I learn You will learn how JavaScript decides what code to run, with if, else if, and else; what "truthy"
scipio
StemSocial
2026-08-19 19:56
Learn Zig Series (#143) - Regex: Matching Engine
Learn Zig Series (#143) - Regex: Matching Engine What will I learn? Why a DFA answers "does this match?" but cannot tell you where each capture group landed -- and why that pushes us back to
scipio
StemSocial
2026-08-19 16:02
Learn Rust Series (#31) - Move Semantics Deep Dive
Learn Rust Series (#31) - Move Semantics Deep Dive What will I learn You will learn exactly what a move is at the machine level, and why it is cheap no matter how big the data; precisely when a value moves