|
You are here |
initialcommit.com | ||
| | | | |
finnstats.com
|
|
| | | | | Why Python is an Important and Useful Programming Language.Python refers to a high-level language for programming which serves a general ... | |
| | | | |
martinheinz.dev
|
|
| | | | | Function overloading is a common programming pattern which seems to be reserved to statically-typed, compiled languages. Yet there's an easy way to imp... | |
| | | | |
www.paepper.com
|
|
| | | | | A note on bit-wise operations Today I read some JavaScript source code and stumbled on a line like var delta = ~~time; and I was unsure what that purpose of using ~~ was. So I started to research and digging a bit deeper. It turns out that the binary not operator (~) when applied twice on a floating number (e.g. 4.12) returns an integer (~~4.12 = 4). Why not simply use Math. | |
| | | | |
andrewkelley.me
|
|
| | | [AI summary] The blog post discusses the evolution of programming languages, focusing on Rust and Zig's approaches to handling formatted output. It highlights the challenges in C's format string system, the use of macros in Rust, and Zig's ability to handle formatted output without special compiler cases, relying on userland code. The post also touches on the trade-offs of macros and the design goals of Zig to provide power without the drawbacks of macro-based systems. | ||