Explore >> Select a destination


You are here

lukevanderhart.com
| | andreabergia.com
4.8 parsecs away

Travel
| | This post is part of the Languages Opinion series. Languages opinion - part one - JVM Languages opinion - part two - Rust ??thispost Languages opinion - part three - Javascript and Typescript Welcome back to my mini-series about programming languages. In this post, we will talk about one of the most interesting programming languages that I have seen in a long while: Rust.
| | adambard.com
2.5 parsecs away

Travel
| | [AI summary] This article compares Bucklescript, Elm, and Typescript as typed JavaScript languages, discussing their features, tooling, and interoperability with JavaScript.
| | gcc.godbolt.org
5.9 parsecs away

Travel
| | struct RC { size_t s; size_t w; }; void init_zero(RC& rc) { rc.s = 0; rc.w = 0; } void init_one(RC& rc) { rc.s = 1; rc.w = 1; } void dealloc(); void dec_zero_exact(std::atomic<size_t>& c) { if (0 == c.fetch_sub(1, std::memory_order_acq_rel)) { dealloc(); } } void dec_zero_less(std::atomic<size_t>& c) { using ssize_t = std::make_signed_t<size_t>; if (0 >= static_cast<ssize_t>(c.fetch_sub(1, std::memory_order_acq_rel))) { dealloc(); } } void dec_one(std::atomic<size_t>& c) { if (1 == c.fetch_sub(1, std::memory_order_acq_rel)) { dealloc(); } }
| | www.webstoemp.com
18.0 parsecs away

Travel
| With Eleventy, consuming data coming from a GraphQL API to generate static pages is as straightforward as using Markdown files.