Watch R1 “think” with animated chains of thought

watch-r1-“think”-with-animated-chains-of-thought

We can visualize the “thought process” for R1 by: Saving the chains of thought as text Converting the text to embeddings with the OpenAI API Plotting the embeddings sequentially with t-SNE Here’s what it looks like when R1 answers a question (in this case “Describe how a bicycle works.”): Consecutive Distance It might be useful […]

Hk, a new Git hook manager from jdx

hk is built by @jdx. Why does this exist? ​ In short: performance and mise-en-place. Initially mise users wanted more functionality than mise provides in its basic mise generate git-pre-commit command provided—such as the ability to only run tasks when certain files are changed. Rather than bake that into mise, I felt it was unique […]

Open Source projects could sell SBoM fragments

open-source-projects-could-sell-sbom-fragments

Open Source projects could sell SBOM fragments | Discoveries Home Blog 2025-02-17 Scanning source files for licensing information (because the package managers‘ metadata is insufficient) is a lot of work, and a lot of wasted effort, because only rarely do companies pool their resources. One example is OSSelot, another is ClearlyDefined. But maybe Open Source […]

(Ab)using general search algorithms on dynamic optimization problems (2023)

(ab)using-general-search-algorithms-on-dynamic-optimization-problems-(2023)

Jan. 24, 2023 In retrospect, my most ambitious blog yet. As it goes, I was reading “Artificial Intelligence. A Modern Approach” the other day. In one of the earlier chapters the authors discuss general search algorithms: breadth-first search, depth-first search, uniform-cost search (Dijkstra), and variations of those. A bit later they also cover Monte Carlo […]

Show HN: Bag of words – Build and share smart data apps using AI

show-hn:-bag-of-words-–-build-and-share-smart-data-apps-using-ai

Build and share smart data apps using AI Bag of words enables users to create comprehensive dashboards with a single prompt and refine them iteratively. It integrates seamlessly with various data sources, including databases, APIs, and business systems, allowing for effective data utilization. Key Features: • Data Source Integration: Connect to databases, APIs, files, and […]

Nginx: try_files Is Evil Too

nginx:-try-files-is-evil-too

We have by far the largest RPM repository with NGINX module packages and VMODs for Varnish. If you want to install NGINX, Varnish, and lots of useful performance/security software with smooth yum upgrades for production use, this is the repository for you. Active subscription is required. The benefits of try_files NGINX has many useful directives […]

Representing Graphs in PostgreSQL

insert into edges (type, from_id, to_id, details) values — Everyone in the fellowship is friends with everyone else (‘friend’, 1, 3, ‘{}’), — Frodo and Sam (‘friend’, 1, 5, ‘{}’), — Frodo and Gandalf (‘friend’, 1, 6, ‘{}’), — Frodo and Aragorn (‘friend’, 1, 8, ‘{}’), — Frodo and Legolas (‘friend’, 1, 10, ‘{}’), — […]

0+0 > 0: C++ thread-local storage performance

0+0->-0:-c++-thread-local-storage-performance

We’ll discuss how to make sure that your access to TLS (thread-local storage) is fast. If you’re interested strictly in TLS performance guidelines and don’t care about the details, skip right to the end — but be aware that you’ll be missing out on assembly listings of profound emotional depth, which can shake even a […]

An early social un-network

an-early-social-un-network

Feb 16, 2025 reminiscence POWCON Vax With one thing and another I’ve recently been feeling quite nostalgic for the technology landscape of my early university days (around 1990) and so I wanted to write a little bit about that. Background To set the scene for you, I was at university – or rather at polytechnic […]

Searchcode.com’s SQLite database is probably 6 terabytes bigger than yours

searchcode.com’s-sqlite-database-is-probably-6-terabytes-bigger-than-yours

searchcode.com’s SQLite database is probably one of the largest in the world, at least for a public facing website. It’s actual size is 6.4 TB. Which is probably 6 terabytes bigger than yours. -rw-r–r– 1 searchcode searchcode 6.4T Feb 17 04:30 searchcode.db At least, I think its bigger. I have no evidence to the contrary, […]