The best Hacker News stories from Show from the past week

Go back

Latest posts:

Show HN: I built an app to create repeatable checklists to help with ADHD

Show HN: Gorse – An Out-of-the-box open-source Recommender System

Show HN: Gorse – An Out-of-the-box open-source Recommender System

Show HN: A low power 1U Raspberry Pi cluster server for inexpensive colocation

Show HN: I made an interactive anti-procrastination video course

Show HN: I made a simulator for personal finance and financial independence

Show HN: Fakeflix – Netflix open source clone

TinyPICO – tiny fully-featured ESP32 board

Show HN: Obsidian for Mobile – Plain-text knowledge base on the go

Show HN: Obsidian for Mobile – Plain-text knowledge base on the go

Show HN: Print a WiFi Login Card

Show HN: Print a WiFi Login Card

Show HN: Hck – a fast and flexible cut-like tool

Show HN: Earthly – Better Builds

CoffeeShopWifi.com – An HTTP website for connecting to guest WiFi

Show HN: SQLite query inside a Bash function

Part of the workflow for building my website is the generation of a table in tab-separated column format (.tsv). The source data is found in four other .tsv files. I use an SQLite query to perform a 4-way join and write out the new table. For convenience, I wrote a script that encapsulates the query inside a Bash function.<p>The example below illustrates this technique.<p><pre><code> repertoire() { pushd $CMM_SOURCES/_data sqlite3 <<EOS .headers on .mode tabs .import category.tsv category .import composition.tsv composition .import concert.tsv concert .import program.tsv program .once repertoire.tsv SELECT category.name AS category, composition.key, composition.composer, composition.name AS composition, concert.name AS concert FROM category, concert, composition, program WHERE julianday(concert.date) < julianday('now') AND composition.category = category.name AND program.key = composition.key AND program.date = concert.date ORDER BY category.sequence, composition.key ; EOS popd }</code></pre>

Show HN: Side Quest – An aggregator for not full-time tech jobs

Show HN: RSS feeds for arbitrary websites using CSS selectors

Show HN: Open-Source Chrome Extension for auto-grouping tabs by URL patterns

Show HN: Open-Source Chrome Extension for auto-grouping tabs by URL patterns

< 1 2 3 ... 119 120 121 122 123 ... 139 140 141 >