ISLisp in JS/Go: Standards-compliant Lisp smaller than Common-Lisp.
Note that the on-line JavaScript version does not handle #x prefixes correctly.
Integers are also limited to 31 bit:
(expt 2 31) => -2147483648
in contradiction to https://islisp-dev.github.io/ISLispHyperDraft/islisp-v23.html#integer_class
SYSTEMS: Available for Windows 11 to Windows 7, Linux (various distributions) and Mac OS.
LANGUAGES: Available in 7 languages.
ZED! mobile app for iOS and Android.
Hat for Raspberry Pi with a number of sensors:
BME280 temperature, pressure, humidity sensor
LTR-559 light and proximity sensor
MICS6814 analog gas sensor
ADS1015 analog to digital converter (ADC)
MEMS microphone (datasheet)
0.96" colour LCD (160x80)
Connector for particulate matter (PM) sensor (available separately, see https://shop.pimoroni.com/products/pms5003-particulate-matter-sensor-with-cable?variant=29075640352851 )
The FGI-GSRx software receiver has been extensively used as a research platform for the last one decade in different national and international Research and Development (R&D) projects to develop, test and validate novel receiver processing algorithms for robust, resilient and precise Position, Navigation and Timing (PNT). At present, the FGI-GSRx can process GNSS signals from multiple constellations, including GPS, Galileo, BeiDou, GLONASS, and NavIC. The software receiver is intended to process raw Intermediate Frequency (IF) signals in post-processing. The processing chain of the software receiver consists of GNSS signal acquisition, code and carrier tracking, decoding the navigation message, pseudorange estimation, and Position, Velocity, and Timing (PVT) estimation. The software architecture is built in such a way that any new algorithm can be developed and tested at any stage in the receiver processing chain without requiring significant changes to the original codes.
X Keyboard Configuration Database
The goal is to provide the consistent, well-structured, frequently released open source of X keyboard configuration data for X Window System implementations (free, open source and commercial). The project is targeted to XKB-based systems. https://people.uleth.ca/~daniel.odonnell/Blog/custom-keyboard-in-linuxx11 looks useful as well.
Description of the test methods used for SQLite. The statements
Valgrind is a simulator - it simulates an x86 running a Linux binary. (Ports of Valgrind for platforms other than Linux are in development, but as of this writing, Valgrind only works reliably on Linux, which in the opinion of the SQLite developers means that Linux should be the preferred platform for all software development.)
are interesting, I did not get this from a casual reading of Valgrind's documentation.
While this blog article is about a new feature of the Scheme-based Guix Linux package manager, it contans the following interesting observation about erroneous shell settings: "it’s not uncommon for the shell to mess up with the whole environment. Why? Because, contrary to documented practice, it’s quite common for users to define or override environment variables in the startup files of non-login shells, ~/.bashrc for Bash, ~/.zshrc for Zsh. Instead, environment variable definitions should go to the startup file of login shells—~/.bash_profile, ~/.profile, or similar. But let’s face it: it’s a subtle distinction that few of us know or care about."