Flowgramming – Programs that read like sentences
Most programming languages were built for machines first and humans second.
Flowgramming flips that.
It’s an open-source project to design a modular, flow-based programming environment where logic reads like natural language.
Instead of writing syntax, you describe what should happen — and FlowOS builds the logic through modular, auditable components called FlowBlocks.
For example, this is valid FlowScript:
action:
intent: "sortlist"
input: "DataBlock: numbers.raw"
output: "DataBlock: numbers.sorted"
tags: [lowmemory, auditable]
That line means:
>
Flowgramming handles the rest — picking the best ActionBlock, enforcing memory and security rules, and logging the entire process for audit.
The full system includes:
FlowDirector — the runtime and scheduler
ActionSystem — modular, self-contained logic units
CommSystem — controlled communication blocks
DataSystem — trusted data handling and versioning
FlowGuard — built-in trust and security enforcement
FlowLog — transparent observability and audit trail
It’s licensed under MPL 2.0, so it stays open but flexible for research or enterprise use.
The documentation is being expanded weekly — early contributors are very welcome.
GitHub repo: https://github.com/donsauber/FlowOS
If you’re interested in:
Declarative systems design
Flow-based programming
Modular runtime architectures
Or making code genuinely human-readable
…come take a look, leave a star, or join the Discussions tab.
Flowgramming is still early — but the goal is simple:
make programming something you can read, explain, and trust.
https://redd.it/1oadjsw
@r_opensource
Most programming languages were built for machines first and humans second.
Flowgramming flips that.
It’s an open-source project to design a modular, flow-based programming environment where logic reads like natural language.
Instead of writing syntax, you describe what should happen — and FlowOS builds the logic through modular, auditable components called FlowBlocks.
For example, this is valid FlowScript:
action:
intent: "sortlist"
input: "DataBlock: numbers.raw"
output: "DataBlock: numbers.sorted"
tags: [lowmemory, auditable]
That line means:
>
Flowgramming handles the rest — picking the best ActionBlock, enforcing memory and security rules, and logging the entire process for audit.
The full system includes:
FlowDirector — the runtime and scheduler
ActionSystem — modular, self-contained logic units
CommSystem — controlled communication blocks
DataSystem — trusted data handling and versioning
FlowGuard — built-in trust and security enforcement
FlowLog — transparent observability and audit trail
It’s licensed under MPL 2.0, so it stays open but flexible for research or enterprise use.
The documentation is being expanded weekly — early contributors are very welcome.
GitHub repo: https://github.com/donsauber/FlowOS
If you’re interested in:
Declarative systems design
Flow-based programming
Modular runtime architectures
Or making code genuinely human-readable
…come take a look, leave a star, or join the Discussions tab.
Flowgramming is still early — but the goal is simple:
make programming something you can read, explain, and trust.
https://redd.it/1oadjsw
@r_opensource
GitHub
GitHub - donsauber/FlowOS: Programming that reads like a sentence.
Programming that reads like a sentence. Contribute to donsauber/FlowOS development by creating an account on GitHub.
Rivet.dev
In looking for durable object's open source alternatives. After search for a while, I found rivet.dev.
Did someone ever use this project, it's quite an interesting project with tons of stars. But looking at the npm download, it's like no one using them.
https://redd.it/1oaeurb
@r_opensource
In looking for durable object's open source alternatives. After search for a while, I found rivet.dev.
Did someone ever use this project, it's quite an interesting project with tons of stars. But looking at the npm download, it's like no one using them.
https://redd.it/1oaeurb
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
Open source: Serverless Framework plugin for fast Python dependency resolution
https://github.com/Programmer-RD-AI/serverless-uv-requirements
https://redd.it/1oafu12
@r_opensource
https://github.com/Programmer-RD-AI/serverless-uv-requirements
https://redd.it/1oafu12
@r_opensource
GitHub
GitHub - Programmer-RD-AI/serverless-uv-requirements: serverless plugin for fast python dependency resolution using uv. generates…
serverless plugin for fast python dependency resolution using uv. generates requirements.txt from pyproject.toml for lambda packaging. - Programmer-RD-AI/serverless-uv-requirements
How do you manage bad code reviews on your open source project?
So I have a small project which has picked up some users and a small GitHub following.
Every few months I get the odd PR.
The most recent one was to add config to determine which columns to show in a table in the application.
The application already has a config file, which is in yaml. The PR proposes using a single string with template syntax to determine which columns to show; my preference would be to just use a list of booleans as it's more clear.
I suggested this, and the person who raised the PR replied with a GenAI generated comment weighing up the pros and cons of each, then updated the PR to do both which I feel is unnecessary and makes it more messy and sufficient to understand.
How do people go about dealing with stuff like this? If this was at work, and the PR came from someone who works for me, I would just have a chat and ultimately would have the power to make a final decision. Ultimately I can decide whether or not to merge this, but it feels different with volunteers. I don't want to seem a dick, but I also don't want to merge some garbage, and then have this in my name on my public GitHub.
Any thoughts/advice? Both about this, but also in the general case?
https://redd.it/1oai5m6
@r_opensource
So I have a small project which has picked up some users and a small GitHub following.
Every few months I get the odd PR.
The most recent one was to add config to determine which columns to show in a table in the application.
The application already has a config file, which is in yaml. The PR proposes using a single string with template syntax to determine which columns to show; my preference would be to just use a list of booleans as it's more clear.
I suggested this, and the person who raised the PR replied with a GenAI generated comment weighing up the pros and cons of each, then updated the PR to do both which I feel is unnecessary and makes it more messy and sufficient to understand.
How do people go about dealing with stuff like this? If this was at work, and the PR came from someone who works for me, I would just have a chat and ultimately would have the power to make a final decision. Ultimately I can decide whether or not to merge this, but it feels different with volunteers. I don't want to seem a dick, but I also don't want to merge some garbage, and then have this in my name on my public GitHub.
Any thoughts/advice? Both about this, but also in the general case?
https://redd.it/1oai5m6
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
Meet Journiv — A self-hosted private journaling & mood tracker (Day One / Apple Journal alternative)
Hey folks!
I got into self-hosting last year. While exploring, I noticed there’s no real self-hosted open source equivalent to **Day One** or **Apple Journal**. Most suggestions were note-taking apps or older abandoned projects — not quite what I wanted. I specifically wanted "On this day" and prompt based journaling experience with a clean and minimal writing interface.
So I built my own: **Journiv** — a private, self-hosted journal and mood-tracking app.
Demo video: [https://imgur.com/a/Z5oBMgU](https://imgur.com/a/Z5oBMgU) (subreddit does not allow video attachment)
**Stack**
* **Backend:** Python + FastAPI + PostgreSQL (Dockerized)
* **Frontend:** Flutter (cross-platform web + mobile)
**Features**
* Clean, minimal, distraction-free writing
* “On this day” view
* Prompt-based journaling
* Mood tracking
* Multiple journals + tags
* Full-text search
* Insights & analytics
* Light/dark mode
* Media gallery view
**Coming soon**
* Quick audio notes
* Apple Journaling Suggestions integration
* Weather & health metadata
* Location tagging (map view for travel entries)
I’m planning to open-source this soon and would love some early feedback first. Curious if folks here would find a self-hosted journaling app like this useful — and what features you’d want to see. It’s my first real project in Python + Flutter, so there are definitely a few rough spots. Early testers and feedback would mean a lot!
https://redd.it/1oak21g
@r_opensource
Hey folks!
I got into self-hosting last year. While exploring, I noticed there’s no real self-hosted open source equivalent to **Day One** or **Apple Journal**. Most suggestions were note-taking apps or older abandoned projects — not quite what I wanted. I specifically wanted "On this day" and prompt based journaling experience with a clean and minimal writing interface.
So I built my own: **Journiv** — a private, self-hosted journal and mood-tracking app.
Demo video: [https://imgur.com/a/Z5oBMgU](https://imgur.com/a/Z5oBMgU) (subreddit does not allow video attachment)
**Stack**
* **Backend:** Python + FastAPI + PostgreSQL (Dockerized)
* **Frontend:** Flutter (cross-platform web + mobile)
**Features**
* Clean, minimal, distraction-free writing
* “On this day” view
* Prompt-based journaling
* Mood tracking
* Multiple journals + tags
* Full-text search
* Insights & analytics
* Light/dark mode
* Media gallery view
**Coming soon**
* Quick audio notes
* Apple Journaling Suggestions integration
* Weather & health metadata
* Location tagging (map view for travel entries)
I’m planning to open-source this soon and would love some early feedback first. Curious if folks here would find a self-hosted journaling app like this useful — and what features you’d want to see. It’s my first real project in Python + Flutter, so there are definitely a few rough spots. Early testers and feedback would mean a lot!
https://redd.it/1oak21g
@r_opensource
Reddit
From the opensource community on Reddit: Meet Journiv — A self-hosted private journaling & mood tracker (Day One / Apple Journal…
Explore this post and more from the opensource community
Open source diary for Android/IOS - worth a try?
https://storypad.me
https://redd.it/1oalx5p
@r_opensource
https://storypad.me
https://redd.it/1oalx5p
@r_opensource
storypad.me
StoryPad - Timeline Diary | Open Source
Not another journal app. A timeline for your life. StoryPad lets you capture everything - notes, thoughts, emotions, workouts, travels - on a single continuous timeline. No folders. No tabs. Just your life, beautifully organized.
Trained the first foundation model for a low-resource language
Hi everybody! I just wanted to share a project that I have been working on for the last few months called BULaMU, the first large language model that has been trained from scratch in Luganda. It is an open-weight model and is available to download for free from my Huggingface repo. I am continually working to improve BULaMU because I believe that tiny language models like this have the ability to greatly broaden access to AI in Uganda and possibly even enable more community-driven solutions.
Details on how I trained BULaMU: https://zenodo.org/records/17271688
Link to my Huggingface: https://huggingface.co/datasets/mwebazarick/BULaMU
https://redd.it/1oano1j
@r_opensource
Hi everybody! I just wanted to share a project that I have been working on for the last few months called BULaMU, the first large language model that has been trained from scratch in Luganda. It is an open-weight model and is available to download for free from my Huggingface repo. I am continually working to improve BULaMU because I believe that tiny language models like this have the ability to greatly broaden access to AI in Uganda and possibly even enable more community-driven solutions.
Details on how I trained BULaMU: https://zenodo.org/records/17271688
Link to my Huggingface: https://huggingface.co/datasets/mwebazarick/BULaMU
https://redd.it/1oano1j
@r_opensource
Zenodo
BULaMU: An Open Foundation Model for Luganda
Uganda, colloquially referred to as the “pearl of Africa”, is home to over 50 million people, 56 tribes, and over 40 languages, most of which descend from the Bantu family. Luganda is the most popular language in Uganda, boasting over 20 million speakers…
Made ProxyBridge - a Proxyfier alternative for windows to redirect Windows traffic to HTTP/Socks5 proxy with Windivert for kernel
https://github.com/InterceptSuite/ProxyBridge
https://redd.it/1oap7yi
@r_opensource
https://github.com/InterceptSuite/ProxyBridge
https://redd.it/1oap7yi
@r_opensource
GitHub
GitHub - InterceptSuite/ProxyBridge: Proxifier Alternative to redirect any Windows/MacOS TCP and UDP traffic to HTTP/Socks5 proxy
Proxifier Alternative to redirect any Windows/MacOS TCP and UDP traffic to HTTP/Socks5 proxy - InterceptSuite/ProxyBridge
A decentralized music player
https://anttp.antsnest.site/dd5883a1420003ace38868a53ec049091ce781f498d9c39ecdb72e6ac19f7e14/jams-lite/index.html?address=d918456a92f941e8a7072b0e0f90fc5948ad01dd6aed7eb7adc54b5292894ec2
https://redd.it/1oaq04a
@r_opensource
https://anttp.antsnest.site/dd5883a1420003ace38868a53ec049091ce781f498d9c39ecdb72e6ac19f7e14/jams-lite/index.html?address=d918456a92f941e8a7072b0e0f90fc5948ad01dd6aed7eb7adc54b5292894ec2
https://redd.it/1oaq04a
@r_opensource
Reddit
From the opensource community on Reddit: A decentralized music player
Posted by autonerf - 1 vote and 0 comments
Visualizing Your Service Architecture with OtelMap
Hey everyone!
I recently built **OtelMap** — a small open-source project that helps you visualize OpenTelemetry traces on an interactive map.
Live product already deployed to https://otelmap.com
👉 Repo: https://github.com/jack5341/otelmap
⭐ If you like it, drop a star or open an issue — every bit helps!
https://redd.it/1oaq00k
@r_opensource
Hey everyone!
I recently built **OtelMap** — a small open-source project that helps you visualize OpenTelemetry traces on an interactive map.
Live product already deployed to https://otelmap.com
👉 Repo: https://github.com/jack5341/otelmap
⭐ If you like it, drop a star or open an issue — every bit helps!
https://redd.it/1oaq00k
@r_opensource
GitHub
GitHub - jack5341/otelmap: Open-source service map visualization tool that generates service dependency maps from OpenTelemetry…
Open-source service map visualization tool that generates service dependency maps from OpenTelemetry trace data. - jack5341/otelmap
[WIP] Screen Studio Open-Source Alternative
Hey everyone 👋
I’ve been working on [ScreenArc](https://github.com/tamnguyenvan/screenarc) — an open-source & cross-platform (Linux, Windows, macOS) screen recording \*\*and editing\*\* app inspired by apps like Screen Studio.
It’s built with \*\*Electron + React + FFmpeg\*\*, and the goal is to eventually reach that same **cinematic quality and smooth experience**, but fully open source.
✨ \*\*What it does\*\*
* \*Tracks your mouse automatically and adds smooth \*\*pan & zoom\*\* animations
* Includes a simple \*\*timeline editor\*\* to trim, adjust backgrounds, shadows, or aspect ratios
* Lets you \*\*export high-quality MP4/GIF\*\* with just a few clicks
* Works on \*\*Windows, macOS, and Linux\*\* (yep, cross-platform!)
🎥 Here’s what it looks like in action:
🧱 \*\*Tech Stack:\*\*
* Electron
* React
* TailwindCSS
* Zustand
* FFmpeg
🚧 It’s still a work in progress — a lot of polish and features are on the way, but it’s already functional enough to play with.
If you’re into open-source tools for content creation or you love building creative desktop apps, check it out and maybe drop a ⭐️ on GitHub!
👉 [Repo url](https://github.com/tamnguyenvan/screenarc)
Would love feedback or ideas from the community 🙌
https://redd.it/1oat92z
@r_opensource
Hey everyone 👋
I’ve been working on [ScreenArc](https://github.com/tamnguyenvan/screenarc) — an open-source & cross-platform (Linux, Windows, macOS) screen recording \*\*and editing\*\* app inspired by apps like Screen Studio.
It’s built with \*\*Electron + React + FFmpeg\*\*, and the goal is to eventually reach that same **cinematic quality and smooth experience**, but fully open source.
✨ \*\*What it does\*\*
* \*Tracks your mouse automatically and adds smooth \*\*pan & zoom\*\* animations
* Includes a simple \*\*timeline editor\*\* to trim, adjust backgrounds, shadows, or aspect ratios
* Lets you \*\*export high-quality MP4/GIF\*\* with just a few clicks
* Works on \*\*Windows, macOS, and Linux\*\* (yep, cross-platform!)
🎥 Here’s what it looks like in action:
🧱 \*\*Tech Stack:\*\*
* Electron
* React
* TailwindCSS
* Zustand
* FFmpeg
🚧 It’s still a work in progress — a lot of polish and features are on the way, but it’s already functional enough to play with.
If you’re into open-source tools for content creation or you love building creative desktop apps, check it out and maybe drop a ⭐️ on GitHub!
👉 [Repo url](https://github.com/tamnguyenvan/screenarc)
Would love feedback or ideas from the community 🙌
https://redd.it/1oat92z
@r_opensource
GitHub
GitHub - tamnguyenvan/screenarc: ScreenArc – Cross-platform screen recorder & editor with automatic cinematic zooms, mouse tracking…
ScreenArc – Cross-platform screen recorder & editor with automatic cinematic zooms, mouse tracking, and effortless video creation. - tamnguyenvan/screenarc
How do you promote your open-source projects and get contributors?
Hey everyone,
I have made a few open-source projects on GitHub, but none of them have really been noticed (0 stars, 0 contributions).
How do people usually promote their open-source projects? Any tips?
https://redd.it/1oax0la
@r_opensource
Hey everyone,
I have made a few open-source projects on GitHub, but none of them have really been noticed (0 stars, 0 contributions).
How do people usually promote their open-source projects? Any tips?
https://redd.it/1oax0la
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
mpvExtended – A modern Android media player built on mpv-android & mpvKt
https://github.com/marlboro-advance/mpvEx
https://redd.it/1oazmje
@r_opensource
https://github.com/marlboro-advance/mpvEx
https://redd.it/1oazmje
@r_opensource
GitHub
GitHub - marlboro-advance/mpvEx: A beautiful media player for android, based on mpv-android and built with Jetpack Compose. Forked…
A beautiful media player for android, based on mpv-android and built with Jetpack Compose. Forked from mpvKt - marlboro-advance/mpvEx
Open-source FastAPI production template with CI/CD and container releases
Open-sourcing a reusable template for small FastAPI services.
CI with tests, lint, CodeQL
Dependabot for dependencies and Actions
Tag to build, smoke test, push to GHCR, and create a GitHub Release
Optional Postgres and Sentry via secrets
Looking for contributors interested in telemetry, staging recipes, and hardening.
any feedback would be appreciated. if its good plz star and support my journey.
Repo: https://github.com/ArmanShirzad/fastapi-production-template
https://redd.it/1ob3apk
@r_opensource
Open-sourcing a reusable template for small FastAPI services.
CI with tests, lint, CodeQL
Dependabot for dependencies and Actions
Tag to build, smoke test, push to GHCR, and create a GitHub Release
Optional Postgres and Sentry via secrets
Looking for contributors interested in telemetry, staging recipes, and hardening.
any feedback would be appreciated. if its good plz star and support my journey.
Repo: https://github.com/ArmanShirzad/fastapi-production-template
https://redd.it/1ob3apk
@r_opensource
GitHub
GitHub - ArmanShirzad/fastapi-production-template: production-ready FastAPI template with Docker, CI/CD, observability, and one…
production-ready FastAPI template with Docker, CI/CD, observability, and one-click deployment to Render or Koyeb. - ArmanShirzad/fastapi-production-template
OC I made a FOSS music fetching CLI program for Linux - songfetch!
Hi all!
I've worked on songfetch as a fun Python side project for a couple of weeks, and here is the result!
I haven't found any existing ones that shows actual ASCII art, and not just pixelated version of album covers, so I hope this post is allowed!
It's available on the AUR, you can also check it out on GitHub:
https://github.com/fwtwoo/songfetch
https://aur.archlinux.org/packages/songfetch
https://redd.it/1ob4s6j
@r_opensource
Hi all!
I've worked on songfetch as a fun Python side project for a couple of weeks, and here is the result!
I haven't found any existing ones that shows actual ASCII art, and not just pixelated version of album covers, so I hope this post is allowed!
It's available on the AUR, you can also check it out on GitHub:
https://github.com/fwtwoo/songfetch
https://aur.archlinux.org/packages/songfetch
https://redd.it/1ob4s6j
@r_opensource
GitHub
GitHub - ekrlstd/songfetch: A Linux CLI tool, very similar to neofetch, that displays current song information in the terminal.
A Linux CLI tool, very similar to neofetch, that displays current song information in the terminal. - ekrlstd/songfetch
What are the best tools or platforms for creating a user-friendly, documentation website for an open-source software library?
https://redd.it/1ob5s61
@r_opensource
https://redd.it/1ob5s61
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
Snip - The Command-Line Note-Taking Tool I Built Because I Was Tired of Slow Apps
\## TL;DR
I built Snip because I was frustrated with slow note-taking apps. It's a command-line tool that's fast, local, and actually works. No AI, no cloud, no BS - just you, your terminal, and your thoughts.
\---
\## The Problem That Drove Me Crazy
Picture this: You're debugging a complex authentication issue at 2 AM. You have a brilliant insight, but every note-taking app you try is either:
\- Too slow to open
\- Requires you to leave your terminal
\- Wants you to create an account
\- Has a bloated interface that gets in the way
Sound familiar? (If it doesn't, i envy you) This happened to me way too many times. As a developer, I live in my terminal. Why should I have to leave it just to write down a thought?
\---
\## What I Built
Snip is a command-line note-taking tool that respects your workflow. It's built with Go, uses SQLite for storage, and gets out of your way. Think of it as your personal knowledge base that lives in your terminal.
\### The Core Philosophy
\- **Fast**: No waiting, no loading screens
\- **Local**: Your data stays on your machine
\- **Simple**: No accounts, no subnoscriptions, no complexity
\- **Terminal-native**: Works where you already are
\---
\## Why This Matters
\### For Developers
You're already in your terminal. Why leave it just to write down a thought? Snip lets you capture ideas instantly without breaking your flow.
\### For Writers
Quick idea capture, organized with tags, exportable to Markdown. Perfect for anyone who thinks in text.
\### For Students
Lecture notes, study guides, quick references. All searchable, all local, all fast.
\---
\## The Technical Story
I built Snip with Go because I wanted something that would be:
\- **Fast to compile**: No waiting for builds
\- **Cross-platform**: Works on Windows, macOS, Linux
\- **Self-contained**: No external dependencies
\- **Reliable**: Go's error handling keeps things stable
The database is SQLite with FTS4 for full-text search. It's not the most sophisticated setup, but it works. And that's the point - it works.
\---
\## What Makes It Different
\### Not Another Note App
Most note-taking apps are designed for everyone. Snip is designed for people who think in text and live in terminals.
\### No Lock-in
Your notes are stored in a local SQLite database. Export them anytime. Import from anywhere. You own your data.
\### No Complexity
No accounts, no sync, no cloud. Just you and your notes. Sometimes simple is better.
\---
\## The Real-World Impact
Since building Snip, I've:
\- **Captured ideas faster**: No more losing thoughts while switching apps
\- **Stayed in flow**: No context switching when debugging
\- **Organized better**: Tags and search make finding things easy
\- **Backed up easily**: Export to Markdown, import anywhere
\## What's Next
I'm not done yet. Here's what I'm thinking about:
\- **Markdown Preview**: Visualize rendered Markdown so you can see your notes as they'd appear formatted
\---
\## The Story Behind Snip
I've been a developer for years, and I've always struggled with note-taking tools. They're either too slow, too complex, or too locked-in to specific platforms.
One day, I was debugging a complex authentication issue, and I needed to quickly jot down some thoughts. Every tool I tried was either too slow to open or required me to leave my terminal. That's when I realized: developers need a tool that lives in their terminal.
So I built Snip. Not just another note-taking app, but a developer-first tool that respects your workflow. It's fast, it's local, and it gets out of your way.
\---
\## Why I'm Sharing This
I built Snip to solve my own problem, but I think other developers might find it useful too. It's open source, it's free, and it's built by someone who actually uses it.
If you're tired of slow, bloated note-taking apps, give Snip a try. It might just
\## TL;DR
I built Snip because I was frustrated with slow note-taking apps. It's a command-line tool that's fast, local, and actually works. No AI, no cloud, no BS - just you, your terminal, and your thoughts.
\---
\## The Problem That Drove Me Crazy
Picture this: You're debugging a complex authentication issue at 2 AM. You have a brilliant insight, but every note-taking app you try is either:
\- Too slow to open
\- Requires you to leave your terminal
\- Wants you to create an account
\- Has a bloated interface that gets in the way
Sound familiar? (If it doesn't, i envy you) This happened to me way too many times. As a developer, I live in my terminal. Why should I have to leave it just to write down a thought?
\---
\## What I Built
Snip is a command-line note-taking tool that respects your workflow. It's built with Go, uses SQLite for storage, and gets out of your way. Think of it as your personal knowledge base that lives in your terminal.
\### The Core Philosophy
\- **Fast**: No waiting, no loading screens
\- **Local**: Your data stays on your machine
\- **Simple**: No accounts, no subnoscriptions, no complexity
\- **Terminal-native**: Works where you already are
\---
\## Why This Matters
\### For Developers
You're already in your terminal. Why leave it just to write down a thought? Snip lets you capture ideas instantly without breaking your flow.
\### For Writers
Quick idea capture, organized with tags, exportable to Markdown. Perfect for anyone who thinks in text.
\### For Students
Lecture notes, study guides, quick references. All searchable, all local, all fast.
\---
\## The Technical Story
I built Snip with Go because I wanted something that would be:
\- **Fast to compile**: No waiting for builds
\- **Cross-platform**: Works on Windows, macOS, Linux
\- **Self-contained**: No external dependencies
\- **Reliable**: Go's error handling keeps things stable
The database is SQLite with FTS4 for full-text search. It's not the most sophisticated setup, but it works. And that's the point - it works.
\---
\## What Makes It Different
\### Not Another Note App
Most note-taking apps are designed for everyone. Snip is designed for people who think in text and live in terminals.
\### No Lock-in
Your notes are stored in a local SQLite database. Export them anytime. Import from anywhere. You own your data.
\### No Complexity
No accounts, no sync, no cloud. Just you and your notes. Sometimes simple is better.
\---
\## The Real-World Impact
Since building Snip, I've:
\- **Captured ideas faster**: No more losing thoughts while switching apps
\- **Stayed in flow**: No context switching when debugging
\- **Organized better**: Tags and search make finding things easy
\- **Backed up easily**: Export to Markdown, import anywhere
\## What's Next
I'm not done yet. Here's what I'm thinking about:
\- **Markdown Preview**: Visualize rendered Markdown so you can see your notes as they'd appear formatted
\---
\## The Story Behind Snip
I've been a developer for years, and I've always struggled with note-taking tools. They're either too slow, too complex, or too locked-in to specific platforms.
One day, I was debugging a complex authentication issue, and I needed to quickly jot down some thoughts. Every tool I tried was either too slow to open or required me to leave my terminal. That's when I realized: developers need a tool that lives in their terminal.
So I built Snip. Not just another note-taking app, but a developer-first tool that respects your workflow. It's fast, it's local, and it gets out of your way.
\---
\## Why I'm Sharing This
I built Snip to solve my own problem, but I think other developers might find it useful too. It's open source, it's free, and it's built by someone who actually uses it.
If you're tired of slow, bloated note-taking apps, give Snip a try. It might just
change how you capture and organize your thoughts.
\---
\## Try It Today
**GitHub**: https://github.com/matheuzgomes/Snip
**Website**: https://snip-notes.vercel.app/
\---
https://redd.it/1ob8qzc
@r_opensource
\---
\## Try It Today
**GitHub**: https://github.com/matheuzgomes/Snip
**Website**: https://snip-notes.vercel.app/
\---
https://redd.it/1ob8qzc
@r_opensource
GitHub
GitHub - matheuzgomes/Snip: A fast and efficient command-line note-taking tool built with Go. Snip helps you capture, organize…
A fast and efficient command-line note-taking tool built with Go. Snip helps you capture, organize, and search your notes. - matheuzgomes/Snip
A Season of Change at OSI
https://opensource.org/blog/a-season-of-change-at-osi
https://redd.it/1obrbmw
@r_opensource
https://opensource.org/blog/a-season-of-change-at-osi
https://redd.it/1obrbmw
@r_opensource
Open Source Initiative
A Season of Change at OSI
Members Newsletter – October 2025
Welcome to our OSI October newsletter. In this edition we’ll share how we spent our September and highlight our upcoming October activities. As always, if you’re interested in more information about anything we’re working…
Welcome to our OSI October newsletter. In this edition we’ll share how we spent our September and highlight our upcoming October activities. As always, if you’re interested in more information about anything we’re working…
Any good open-source offline Postman alternatives worth trying?
I’ve been looking into Postman alternatives, especially ones that can work offline or be self-hosted. I came across a tool called Apicat that seems to handle OpenAPI and Postman imports while working completely offline, which caught my eye.
I’m curious are there any other open-source or self-hosted Postman alternatives you’d recommend? Would love to hear what’s been reliable for your workflow.
https://redd.it/1odvbyf
@r_opensource
I’ve been looking into Postman alternatives, especially ones that can work offline or be self-hosted. I came across a tool called Apicat that seems to handle OpenAPI and Postman imports while working completely offline, which caught my eye.
I’m curious are there any other open-source or self-hosted Postman alternatives you’d recommend? Would love to hear what’s been reliable for your workflow.
https://redd.it/1odvbyf
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community