Login
Discover
Waves
Communities
Write
Login
Signup
Topics
#
steemstem
Explore topics
#steemstem
Global
Trending
Hot
New
Payout
Muted
Promoted
#steemstem
Trending
#steemstem
Follow to get notified about new posts with this tag
Get #steemstem by email
Follow
scipio
StemSocial
3h
Learn Rust Series (#59) - Clippy, rustfmt, and Writing Idiomatic Rust
Learn Rust Series (#59) - Clippy, rustfmt, and Writing Idiomatic Rust What will I learn You will learn what rustfmt and clippy are, and why running both on every commit is standard practice; how rustfmt
$ 0.847
16
1
scipio
StemSocial
10h
Learn JS Series (#34) - The Prototype: JavaScript's Actual Inheritance Mechanism
Learn JS Series (#34) - The Prototype: JavaScript's Actual Inheritance Mechanism What will I learn You will learn what a prototype is: a hidden link from one object to another; how JavaScript uses that
$ 0.907
32
1
scipio
StemSocial
21h
Learn Zig Series (#169) - Audio Fundamentals: PCM and Buffers
Learn Zig Series (#169) - Audio Fundamentals: PCM and Buffers What will I learn? What sound actually is to a computer -- PCM samples in a buffer -- and how sample rate, bit depth and channel count turn
scipio
StemSocial
1d
Learn Go Series (#5) - Arrays, Slices, and Slice Internals
Learn Go Series (#5) - Arrays, Slices, and Slice Internals What will I learn The difference between an array (fixed size, a value) and a slice (a growable view), and why you almost always use slices; What
pouchon
debt
3d
Published via Ecency
Promoted
WHAT IS THE QUIET TAX ON TOMORROW?
Few people think of tax as a noble act. For a country to function it needs revenue to pay its workers and improve upon itself. Some countries can produce from t
scipio
StemSocial
1d
Learn Rust Series (#58) - Build Scripts (build.rs) and Generating Code at Build Time
Learn Rust Series (#58) - Build Scripts (build.rs) and Generating Code at Build Time What will I learn You will learn what build.rs is: a Rust program Cargo compiles and runs before building your crate;
scipio
StemSocial
1d
Learn JS Series (#33) - Getters and Setters: Computed Properties That Look Like Data
Learn JS Series (#33) - Getters and Setters: Computed Properties That Look Like Data What will I learn You will learn what getters and setters are: functions that behave exactly like ordinary properties;
gary.nunez
StemSocial
2d
📘Ecuaciones Diferenciales No Exactas Nivel Avanzado.(Entrega 1/3).
¡Hola, comunidad Hive! Después de completar con éxito el Nivel Intermedio, damos el siguiente paso hacia el Nivel avanzado. En esta primera entrega encontrarás cinco (05) ejercicios resueltos paso a paso.
scipio
StemSocial
2d
Learn Zig Series (#168) - JPEG Decoder Basics
Learn Zig Series (#168) - JPEG Decoder Basics What will I learn? Why a JPEG is a completely different animal from a PNG -- lossy, frequency-domain compression in stead of lossless prediction -- and what
darth-azrael
retrocomputing
5d
Published via Ecency
Promoted
PC Clones - Premiere Issue - 1987
PC Clones was a short-lived spin-off of Computer Shopper. The premiere issue from 1987 includes:
scipio
StemSocial
2d
Learn Go Series (#4) - Control Flow: if, switch, and the Only Loop
Learn Go Series (#4) - Control Flow: if, switch, and the Only Loop What will I learn The if statement and its handy init clause that scopes a variable to the branch; Go's single loop keyword for in all
scipio
StemSocial
2d
Learn Rust Series (#57) - Feature Flags and Conditional Compilation (cfg)
Learn Rust Series (#57) - Feature Flags and Conditional Compilation (cfg) What will I learn You will learn how the #[cfg(...)] attribute compiles code in or out based on a condition; how feature flags
scipio
StemSocial
3d
Learn Zig Series (#167) - PNG Decoder in Zig
Learn Zig Series (#167) - PNG Decoder in Zig What will I learn? The actual byte layout of a PNG file: the 8-byte signature, the chunk framing (length, type, data, CRC), and why that framing is such a pleasant
scipio
StemSocial
3d
Learn Go Series (#3) - Functions and First-Class Functions
Learn Go Series (#3) - Functions and First-Class Functions What will I learn How Go functions return multiple values, and why that is the language's answer to exceptions; The comma-ok idiom, the little
dead-pets
dead-pets
1d
Promoted
029 Grim Bond
Dead Pets Society is a passion project of @honeydue and @godfish. It is about yearning for the other. About the desire to subvert meanings and look at the world through different eyes. To see things anew.
scipio
StemSocial
3d
Learn Rust Series (#56) - Cargo Workspaces and Multi-Crate Projects
Learn Rust Series (#56) - Cargo Workspaces and Multi-Crate Projects What will I learn You will learn what a Cargo workspace is and why large projects split into many crates; how a workspace shares one
scipio
StemSocial
4d
Learn Zig Series (#166) - Alpha Blending and Compositing
Learn Zig Series (#166) - Alpha Blending and Compositing What will I learn? What the alpha channel actually represents, and why "coverage" is a better mental model than "transparency";
scipio
StemSocial
4d
Learn Go Series (#2) - Variables, Types, Constants, and iota
Learn Go Series (#2) - Variables, Types, Constants, and iota What will I learn The two ways to declare variables (var and :=), when each reads best, and what Go's zero value guarantee buys you; Multiple
scipio
StemSocial
4d
Learn Rust Series (#55) - Benchmarking with Criterion and Reading the Numbers
Learn Rust Series (#55) - Benchmarking with Criterion and Reading the Numbers What will I learn You will learn why naive benchmarking with a single Instant measurement lies to you; what criterion does:
zoe01
Hive Learners
1d
Published via Ecency
Promoted
Are We Becoming Too Comfortable Behind Screens?
The difference between online and offline friends are a lot. But it varies person to person. For an example a high school girl finds it easier to talk to people. On the other hand she can be very quiet.
scipio
StemSocial
4d
Learn JS Series (#30) - Mini Project: A Small Functional Utility Library
Learn JS Series (#30) - Mini Project: A Small Functional Utility Library What will I learn You will build a small, reusable functional utility library from scratch, tying together the whole of Phase 2;
eyeguy
StemSocial
5d
Ocular Toxoplasmosis - When Standard Treatment Wasn't Enough
Hello everyone, I will discuss a case that changed my strategy on treating Ocular toxoplasmosis in patient with atypical lesion. A 25 years female came to OPD with complaint of sudden painless loss of
scipio
StemSocial
5d
Learn Zig Series (#165) - Color Spaces: RGB, HSV, sRGB
Learn Zig Series (#165) - Color Spaces: RGB, HSV, sRGB What will I learn? Why a color is three numbers, and what those numbers actually mean -- because "128" is not "half as bright as 255",
scipio
StemSocial
5d
Learn Rust Series (#54) - Fuzzing with cargo-fuzz and libFuzzer
Learn Rust Series (#54) - Fuzzing with cargo-fuzz and libFuzzer What will I learn You will learn what fuzzing is, and how it differs from property testing; how a fuzz target is just a function that takes
Discover communities
Explore communities
Create your community