Squoosh
Private browser image compression and format conversion.
RESOURCES · FIELD KIT · CHECKED 2026-04-21
A PointCast working shelf: converters, open-source tools, local-first utilities, references, and instructionals that make computers feel more like instruments and less like chores.
START HERE
Private browser image compression and format conversion.
A complete cross-platform toolchain to record, convert, and stream audio/video.
A browser workbench for encoding, decoding, hashing, compression, and data analysis.
MIT's practical course on shell fluency, editors, Git, debugging, packaging, and agentic coding.
Small files, sane formats, no mystery upload step unless the tool earns it.
web app · open source
Private browser image compression and format conversion.
Drop an image, compare codecs side-by-side, export the smallest version that still looks right.cli · open source
The command-line workhorse for creating, editing, and converting bitmap images.
magick input.png -resize "1600x1600>" output.webpcli · open source
A complete cross-platform toolchain to record, convert, and stream audio/video.
ffmpeg -i input.mov -vf "scale=1920:-2" -c:v libx264 -crf 23 -c:a aac output.mp4desktop · open source
A friendly desktop video transcoder for modern MP4, MKV, and WebM outputs.
Open source, choose a preset, set the destination, start encode.cli · open source
The universal document converter for Markdown, HTML, DOCX, PDF workflows, and slides.
pandoc notes.md -o notes.docxcli · open source
Read, write, and remove metadata from images, audio, video, and document files.
exiftool -all= image.jpgTools for understanding strange files, logs, feeds, tables, and blobs.
web app · open source
A browser workbench for encoding, decoding, hashing, compression, and data analysis.
Paste input, add operations to the recipe, let Auto Bake show the result.cli · open source
A lightweight command-line processor for slicing, filtering, and reshaping JSON.
curl -s https://pointcast.xyz/blocks.json | jq ".items[0] | {title, url}"cli · open source
An in-process analytical SQL database that can query local CSV and Parquet directly.
duckdb -c "select * from read_csv_auto('data.csv') limit 10"reference · open source
The small, durable database file that quietly runs half the modern world.
sqlite3 local.db ".schema"cli · open source
A multi-tool for exploring, publishing, and turning SQLite data into JSON APIs.
datasette data.dbBoring utilities that make computers feel less stuck.
cli · open source
The missing package manager for macOS or Linux.
brew install imagemagick ffmpeg jq pandoc duckdbdesktop · open source
Continuous peer-to-peer file synchronization across your own devices.
Pair devices, share a folder, let Syncthing keep both sides current.cli · open source
Cloud storage sync, copy, mount, backup, and migration from the command line.
rclone configdesktop · open source
Free and open-source screen recording and live streaming software.
Create a scene, add a display/window source, hit Start Recording.Open tools for diagrams, visuals, and creative work that survive being shared.
web app · open source
A hand-drawn style whiteboard with an open JSON file format.
Sketch, export PNG/SVG, save the .excalidraw file next to the project.reference · open source
Text-based diagrams that render in Markdown-friendly places, including GitHub.
Start with graph TD, sequenceDiagram, or timeline in a fenced mermaid block.desktop · open source
Free and open-source 3D creation for modeling, animation, rendering, and visual effects.
Start with the official tutorials, then automate repeat work through Python.desktop · open source
A professional free and open-source painting program.
Create a canvas, pick a brush preset, keep source .kra files with exported PNGs.Instructionals worth bookmarking because they teach durable habits, not just button locations.
course · free course
MIT's practical course on shell fluency, editors, Git, debugging, packaging, and agentic coding.
Take Course Overview, Shell, Git, Debugging, then Agentic Coding.course · free docs
Structured web development tutorials from the MDN community.
Start with environment setup, then HTML, CSS, JavaScript.course · free docs
Google/Chrome team courses on HTML, CSS, JavaScript, performance, accessibility, privacy, and images.
Pair Learn Images with Squoosh and ImageMagick, then Learn Performance.reference · open source
Community-driven command examples that make man pages usable in the moment.
pipx install tldrcourse · free course
Hands-on GitHub learning paths for repositories, Markdown, pull requests, and collaboration.
Start with introduction to GitHub, then pull requests and Markdown.course · community
A community-maintained path to a free self-taught computer science education.
Read the prerequisites and follow the core sequence slowly.reference · community
Community-created roadmaps, guides, and skill paths for modern developer roles.
Pick one path, ignore the rest for a week, and build one tiny project from it.Local resources on this site that help agents and humans understand the operating system here.
reference · free docs
PointCast's opinionated AI tools guide: what we reach for and why.
Read the principles first, then the daily tier.reference · free docs
Technical disclosure for the runtime, content, Tezos, and agent layers.
Pair /stack with /stack.json.reference · free docs
The human-readable map of every endpoint and machine surface on PointCast.
Start at /agents.json when code is doing the reading.RECIPES
magick input.png -resize "1600x1600>" output.webp Keeps aspect ratio and only shrinks images larger than the target box.
cp image.jpg clean.jpg && exiftool -all= clean.jpg Work on a copy so original capture metadata stays recoverable.
ffmpeg -i input.mov -vf "scale=1920:-2" -c:v libx264 -crf 23 -c:a aac output.mp4 Good default for turning a huge MOV into a shareable MP4.
curl -s https://pointcast.xyz/feed.json | jq ".items[0] | {title, url}" Useful for checking what an agent or feed reader sees first.
duckdb -c "select * from read_csv_auto('data.csv') limit 10" Skip spreadsheet import friction when all you need is a fast look.
PRINCIPLES