Explore >> Select a destination


You are here

blog.orhun.dev
| | avestura.dev
1.9 parsecs away

Travel
| | What are the problems of C, and how Zig addresses them?
| | ciesie.com
2.6 parsecs away

Travel
| | Today I've played around with Zig, the new, hip (is it hip?) programming language. I find it pretty neat. I'm going to walk you (and myself) through my first, very short, piece of code. Below you can see the entirety of it. It basically allocates a 2MB buffer and reads a file into it... Yep, not particularly impressive, but this is a judgment free, learning zone, ok?! 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 const std = @import("std"); const warn = @import("std").
| | mtlynch.io
3.5 parsecs away

Travel
| | Updates about my life and what I learn about creating software
| | sookocheff.com
33.2 parsecs away

Travel
| Writing correct programs is hard; writing correct concurrent programs is harder. Java Concurrency in Practice. So, why bother with concurrency? A number of reasons: Concurrency provides a natural method for composing asynchronous code. Concurrency allows your program to avoid blocking user operations. Concurrency provides one of the easiest ways take advantage of multi core systems. As processor counts increase, exploiting concurrency will be an even more important facet of high performance systems.