Search the Lexicon
12 of 170 terms found
ABS
ABS (Acrylonitrile Butadiene Styrene) is a tough, heat-resistant thermoplastic polymer commonly used for functional and industrial parts. For makers and 3D-printers it is valued for its mechanical strength and the ability to be post-processed (for example, acetone vapor smoothing), but it shrinks more on cooling and requires higher printing temperatures, which makes printing more challenging. In practical maker-spaces (like a fablab) ABS is often used rarely because it is prone to warping, generally needs a heated bed and enclosure, and produces fumes that require ventilation.
Astro
Astro is a modern JavaScript framework focused on building fast, content-driven websites. It uses a component-based approach with .astro files and follows the 'islands' or 'partial hydration' pattern: by default little to no JavaScript is shipped to the browser unless you explicitly hydrate interactive components. Astro is framework-agnostic—allowing you to use React, Vue, Svelte and other components inside an Astro project—and it supports both static site generation (SSG) and server-side rendering (SSR).
Async/Await
Async/await is modern JavaScript syntax for handling asynchronous operations in a more readable, synchronous-looking way. Functions marked with async automatically return Promises, and the await keyword pauses execution until a Promise resolves. This eliminates deeply nested callback functions (callback hell) and makes asynchronous code much easier to write, read, and debug.