Explore >> Select a destination


You are here

jonlennartaasenden.wordpress.com
| | simpleprogrammer.com
2.3 parsecs away

Travel
| | A detailed comparison of Node.JS vs ASP.NET with an overview, pros & cons of both the languages and key differences
| | ashvardanian.com
6.3 parsecs away

Travel
| | Experienced devs may want to skip the intro or jump immediately to the conclusions. The backbone of many foundational software systems - from compilers and interpreters to math libraries, operating systems, and database management systems - is often implemented in C and C++. These systems frequently offer Software Development Kits (SDKs) for high-level languages like Python, JavaScript, GoLang, C#, Java, and Rust, enabling broader accessibility. But there is a catch.
| | chipnetics.com
7.3 parsecs away

Travel
| | An entry-level article for developers to share with their non-programmer colleagues in a corporate environment, as both a tutorial and learning experience. In particular, I intended it for developers who wish to adopt usage of their CLI (command-line interface) programs amongst end-users, but require their end-users to have some pre-requisite knowledge.
| | dusty.phillips.codes
18.0 parsecs away

Travel
| In earlier articles, we have implemented a tokenizer, parser, and transformer to convert the Web Assembly Text Format to an Abstract Syntax Tree that can hopefully easily compile to Wasm. Truthfully, the next step should be validation. Validation is the process of statically analyzing the syntax tree to catch as many errors as possible. This is where things like type checking and borrow checking happen, for example. The wasm spec has an in-depth description of what validation should look like for a conforming compiler.