Sunday, August 04, 2024

Tony Seba: Greatest disruption in history is here

predicting huge disruption in next a few years: transportation, energy, food etc.

 Tony Seba: Greatest disruption in history is here, millions of jobs to disappear - YouTube
@
The Electric Viking

The Great Disruption - Rethinking Energy, Transportation, Food & Agriculture / August 17th, 2021 - YouTube
Tony Seba

The Future of Disruption | RethinkX

Amazon.com: Tony Seba: books, biography, latest update

Amazon.com: Clean Disruption of Energy and Transportation: How Silicon Valley Will Make Oil, Nuclear, Natural Gas, Coal, Electric Utilities and Conventional Cars Obsolete by 2030 eBook : Seba, Tony: Books

Amazon.com: Rethinking Humanity: Five Foundational Sector Disruptions, the Lifecycle of Civilizations, and the Coming Age of Freedom eBook : Seba, Tony, Arbib, James: Kindle Store










sqlite3 WASM/JS; Wasm By Example



npm install @sqlite.org/sqlite-wasm


sqlite3 WebAssembly & JavaScript Documentation Index


SQLite Wasm in the browser backed by the Origin Private File System | Blog | Chrome for Developers

SQLite is a popular, open-source, lightweight, embedded relational database management system. Many developers use it to store data in a structured, easy-to-use manner. Because of its small size and low memory requirements, SQLite is often leveraged as a database engine in mobile devices, desktop applications, and web browsers.

There are a number of unofficial SQLite versions based on Web Assembly (Wasm), allowing it to be used in web browsers, for example, sql.js. The sqlite3 WASM/JS subproject is the first effort that is officially associated with the SQLite project making Wasm builds of the library established members of the family of supported SQLite deliverables.

The Origin Private File System (OPFS, part of the File System Access API) is augmented with a special surface that brings very performant access to data. This new surface differs from existing ones by offering in-place and exclusive write access to a file's content.


Wasm By Example

WebAssembly (Wasm) is an universal low level bytecode that runs on the web. It is a compilation target for languages like Rust, AssemblyScript (Typescript-like), Emscripten (C/C++), and much more! Wasm offer a compact binary format with predictable performance, and portability to run alongside Javascript and other host languages. Wasm is currently shipped in all major browsers, and has runtimes meant for running on servers or interfacing with systems using WASI.