Weekly Shaarli

All links of one week in a single page.

Week 42 (October 18, 2021)

Data Glasses Head Mounted Display for Multi-meter with Arduino

A display constructed out of common materials, giving you HMD overview of a connected sensor (through bluetooth).
Idea can probably be converted slightly for a more thorough / programmable HUD on the glasses.

Prototype presented here was roughly 70€

Replace smartwatch compation softwares for Android phone with this app

A free and cloudless replacement for your gadget vendors' closed source Android applications. See the list for supported devices. https://gadgetbridge.org

GitHub - newsdev/stevedore: search document dumps: ingest and explore in one extensible framework
thumbnail

search document dumps: ingest and explore in one extensible framework - GitHub - newsdev/stevedore: search document dumps: ingest and explore in one extensible framework

Arduino Weather Station

Creating a weather station for air pressure, temperature, rain, humidity (soil and air).

GitHub - woop/awesome-quantified-self: Websites, Resources, Devices, Wearables, Applications, and Platforms for Self Tracking
thumbnail

List of quantified self resources - some outdated and some missing (Grafana would fit into many qs deployments, datasette, etc) but not bad for an overview.

A Beginner's Guide to Arduino

An extensive introduction to all things Arduino and circuitry - goes through setting up and using Arduino, various electrical components, foundations of electrical engineering, analog parts, communication with computers, and more.

Grabbing and storing personal data

karlicoss of the data liberation project HPI explains how to best store and access data moved from various points in the cloud/web/internet to your drives and why databases might not always be the best choice.

TLDR.
Save your grabbed data without any manipulation.
Let the manipulation happen every time you access/interpret the data.
If you have slices of data (mostly time frames), don't try to merge them on disk but save as extra files and merge on access/interpretation as well.
You can make use of databases for access caching since the last points generate some overhead for each access.