Skip to content

Instantly share code, notes, and snippets.

@RillonDodgers
RillonDodgers / README.md
Created April 3, 2026 12:54
Running vortex on linux with mise

Running Vortex on Linux with mise

description

This guide explains how to get Vortex running on Linux using mise for environment and task management.

It assumes you're working with a Node-based build setup and may encounter issues with DuckDB extension downloads. A small monkeypatch is included to prevent silent failures during the extension install step.

This setup keeps everything reproducible and avoids global toolchain drift by pinning versions via mise.

@jtallant
jtallant / setting-up-sinatra-with-active-record.md
Last active January 3, 2026 17:30
Setting up Sinatra with Active Record

Setting up Sinatra Project

create an empty project and add a Gemfile

cd ~/Desktop
mkdir project-name
cd project-name
touch Gemfile