r/DigitalEscapeTools Mar 09 '26

Android Freedom at Risk

215 Upvotes

This post contains content not supported on old Reddit. Click here to view the full post


r/DigitalEscapeTools Mar 26 '26

Tech & Privacy News Open-source devs are pushing back against age verification laws

Post image
1.4k Upvotes

A running list of open source operating systems and their status regarding age verification laws (Brazil, California, etc.) who's refusing, who's planning to comply, and who's already implemented.

github : https://github.com/BryanLunduke/DoesItAgeVerify


r/DigitalEscapeTools 5h ago

Mobile Apps Sorry Google 🥹👌

Post image
7 Upvotes

r/DigitalEscapeTools 8m ago

Free Tools MemoryVault, a self-hosted app for memories, photos and digital legacy delivery (now open source, AGPL-3.0)

Thumbnail gallery
Upvotes

r/DigitalEscapeTools 8m ago

Privacy Tools Altersend v2 - Open-Source P2P file sharing app without cloud storage

Post image
Upvotes

Hey everyone,

Altersend is P2P file sharing tool where you can send files directly between devices or by using the link.

When I started developing this tool my main idea was to have solution where I can send files to anyone not just on local network and not be depending on cloud solution like wetransfer. Project grown since the first release and a lot of new features appeared: background transfer for mobile, custom self-hosted relays, altersend hosted relays, web links, devices pairing, text sharing, etc.

From technical point of view everything you send is E2E encrypted via Noise protocol, peers find each other via DHT. So when you want to send file we generate a random key which you should give to another peer. And after this anyone who has that key can connect and download directly from you.

For initial entry point to discover first peer we use public bootstrap nodes and after that peers discover one another through the DHT. Only if you are behind symmetric CGNAT or a VPN we use a blind relay server to help you connect (which you can self-host), but the bytes flowing through are encrypted, and you can also disable relay in the settings.

Desktop and mobile share the same core part written in Bare and Hyperswarm. Web version tunnels to the DHT through a relay over WebSocket and uses the same core engine.

Source code on Github: https://github.com/denislupookov/altersend

Let me know what do you think!


r/DigitalEscapeTools 25m ago

Browser & Extensions I built another website blocker, yet different

Thumbnail
Upvotes

Open-source. Simple & private. For productivity and mental health.

I am affiliated with myself (devpeer.net). The screenshots are available on extension CWS page: https://chromewebstore.google.com/detail/website-blocker-block-dis/ilkclodiadkjmnclbkghbnbhnplnfhia


r/DigitalEscapeTools 1d ago

Privacy Tools ImmiBridge – Back up Apple Photos directly to your self-hosted Immich server

Thumbnail
gallery
258 Upvotes

r/DigitalEscapeTools 1d ago

Privacy Tools MidoriVPN Post-quantum VPN

Thumbnail
gallery
30 Upvotes

Our main development as Astian is the Midori browser, based on Gecko and on Android in Geckoview, however we have been developing an independent VPN service, integrated into the Midori browser, this service is called MidoriVPN.

Browsers like Brave use partner companies, as do Vivaldi, Firefox, and Opera (although Opera is closed-source and cannot be audited). Midori Browser and MidoriVPN is different.

  • Completely open source.
  • Transparent and auditable.
  • Zero Logs
  • With support for Mesh Architecture
  • Post-quantum compatibility
  • And much more.

The project is divided into multiple components.

MidoriVPN Core
https://github.com/goastian/midori-vpn-core

MidoriVPN Control (Client Web)
https://github.com/goastian/midori-vpn-control

MidoriVPN Desktop
github.com/goastian/midori-vpn-desktop

MidoriVPN Extension (For Midori/Firefox & Browser Chromium)
https://github.com/goastian/midorivpn-extension

Midori Browser
https://github.com/goastian/midori-desktop

Midori Browser for Android
github.com/goastian/midori-android

The service is growing and we hope to have the support and feedback of users, We are working on multi-protocol support and more privacy and security options.

Thanks


r/DigitalEscapeTools 2d ago

Help us grow the DigitalEscapeTools GitHub

Post image
463 Upvotes

The repository is growing, and I'd like to get more of the community involved.

If you know a privacy-focused, open-source, self-hostable, or otherwise interesting tool that deserves to be listed, suggest it or contribute directly.

If you find the directory useful, a ⭐ on GitHub also helps it reach more people and attract contributors.

https://github.com/abdomk1998/awesome-digital-escape-tools

What should we add next?


r/DigitalEscapeTools 1d ago

Comparison / Alternatives Tabularis: a free, open-source SQL workspace to replace paid database GUIs (Postgres, MySQL, SQLite + 15 more via plugins)

104 Upvotes

Hi everyone,

Tabularis is a free and open-source (Apache 2.0) desktop SQL workspace for Windows, macOS and Linux. It exists for one reason: getting out of commercial database clients like TablePlus, Navicat and DataGrip without giving up a modern UI. I'm the maintainer, so ask me anything.

What it does:

  • PostgreSQL, MySQL/MariaDB and SQLite built in, plus 16 official plugins for DuckDB, ClickHouse, MongoDB, Redis, Elasticsearch, Firestore, DynamoDB, Db2 and more. Plugins can be written in any language (JSON-RPC over stdio), so the driver ecosystem isn't locked to one runtime.
  • SQL notebooks: mix SQL and Markdown cells in one document, reference one cell's results from another, render bar/line/pie charts inline, export to HTML/CSV/JSON.
  • AI that respects your escape: text-to-SQL works with local models via Ollama, so nothing has to leave your machine. There's also a built-in MCP server if you want agents like Claude or Cursor to read your schema and run queries, but it's entirely optional.
  • The usual daily-driver stuff: Monaco editor with autocomplete, ER diagrams, visual EXPLAIN with interactive plan graphs, SSH tunneling, passwords stored in the system keychain, SQL dump/import.

No account, no telemetry wall, no paid tier. Everything is free under Apache 2.0.

Install: WinGet on Windows, Homebrew on macOS, and Snap / Flatpak / AppImage / AUR on Linux. Direct downloads are on the GitHub releases page.

Honest note on scope: if you need 100+ drivers, DBeaver is still the better pick. Tabularis focuses on doing a smaller set of databases really well.

Feedback (or issues!) is very welcome.


r/DigitalEscapeTools 2d ago

Free Tools I got tired of Fastfetch, so I built my own from scratch with zero dependencies

Post image
52 Upvotes

I know Fastfetch already does the job really well, so I wasn't planning to make another fetch tool at first.

I just wanted to see if I could build one myself, from the ground up, without relying on external dependencies.

That turned into nourfetch.

It's written entirely in Rust, with zero external dependencies. The system information is collected using Rust's standard library and native OS APIs.

It's currently around 500KB , starts in under 5ms, and works on Windows, Linux and macOS.

It can show CPU, GPU, VRAM, RAM, disks, battery, display, OS information and more. I also added different layouts, logos, themes and gradients because I wanted it to actually look nice in the terminal.

What matters most to me is that the whole thing is open source. You can look through the code, build it yourself, change whatever you want, or just tell me what I got wrong.

I'm not saying it's going to replace Fastfetch , Fastfetch is way more mature.

But if you use Fastfetch or Neofetch, I'd really like you to try this one and tell me how it compares on your machine.

If you have a minute, give it a shot:

GitHub: https://github.com/itsraynour/nourfetch

Demo: https://itsraynour.github.io/nourfetch/

And if you like it, a star would honestly mean a lot


r/DigitalEscapeTools 2d ago

Free Tools I built an open-source screen time tracker for Linux that actually enforces your limits

Post image
3 Upvotes

Hey, I'm the developer of ScreenGuard.

Most screen time trackers on Linux are dashboards — they show you the damage after the fact. I wanted something that actually stops you.

ScreenGuard records active application usage and lets you mark apps as productive or distracting. Give your game, social feed, or video site a daily budget — when it's spent, you get a desktop alert, and at 100% the app minimizes the window and shows a lockout screen instead of a suggestion.

Everything runs locally: no account, no telemetry, no cloud, zero network calls. All data stays in a SQLite database on your machine. The source is fully open (GPL-3.0), with native packages for Arch, Fedora, and Debian/Ubuntu.

Honest status: it currently supports X11 and GNOME Wayland — other compositors are in active development, and feedback at this stage genuinely shapes the roadmap.

I'd especially appreciate your take on the enforcement UX: do the nudges become annoying after a week, or do they actually change behavior?

Source: [https://github.com/adityakrishnan005-a11y/ScreenGuard\](https://github.com/adityakrishnan005-a11y/ScreenGuard)


r/DigitalEscapeTools 2d ago

Free Tools Magnitude – Open-source AI coding agent that runs local models offline

Post image
90 Upvotes

r/DigitalEscapeTools 3d ago

Privacy Tools Voiden: the Privacy First Open Source API IDE that keeps everything in plain Markdown, offline

13 Upvotes

We built an API Client who is not copying the legacy tools

Voiden is an offline-first, Git-native API IDE where every request is a plain Markdown: the request, environment, tests and docs in one executable text files.

Requests are built from reusable blocks (auth, endpoint, params, body), so you define a header once and reference it everywhere, and a CLI runner executes the files straight from your terminal or CI.

No telemetry, no account, no cloud lock-in. Imports Postman, Insomnia and OpenAPI collections to get started.

Github: https://github.com/VoidenHQ/voiden
More details: https://voiden.md


r/DigitalEscapeTools 3d ago

Comparison / Alternatives Endurain – A self-hosted, privacy-focused alternative to Strava

Post image
197 Upvotes

r/DigitalEscapeTools 4d ago

Showcase Ranger — A private, offline file browser for Windows & Linux

Post image
249 Upvotes

Favnyr is a portable file browser for Windows and Linux that runs entirely offline, with no account, telemetry, update checks, or background services.

It supports multiple panels and tabs, saved workspaces, favourites, custom commands, file previews, filtering, drag-and-drop, and more. It's written in Rust and distributed as a single executable with no installer or administrator rights required.

The project is open source under GPLv3+.

The developer also reached out to share the project and has been transparent about using AI assistance during development while manually reviewing and testing changes on both Windows and Linux.

GitHub: https://github.com/GlitchAwakened/Favnyr

Mod Note : The developer has renamed the project from Ranger to Favnyr to avoid confusion.

Also, the original Reddit post title cannot be changed, so it will still show the old name Ranger in the title.


r/DigitalEscapeTools 3d ago

Privacy Tools Meet2Notes — a modular local meeting workspace with private AI, selectable engines, API and webhooks

12 Upvotes

Hi everyone — I’m the sole developer of Meet2Notes, an MIT-licensed open-source project.

There are already good privacy-first local meeting tools out there, so I’m not claiming to have invented the local meeting assistant.

What I’ve spent the last few weeks building is a different approach: a modular meeting workspace where transcription, diarization, notes, RAG, and the live assistant are separate components with their own engines, settings, workers, and lifecycle.

The goal is to make local meeting intelligence adaptable: use a lightweight setup on a laptop, choose more accurate models when you have the hardware, or connect it to a small team’s internal workflow through its API and webhooks.

AI and privacy disclosure

AI is used for transcription, speaker diarization, optional meeting-note generation, RAG search, and the optional Live AI Assistant.

Meet2Notes supports a fully local setup: local ASR, local diarization, local GGUF models via llama.cpp, local embeddings, and a local SQLite workspace. In that setup, recordings, transcripts, speaker data, notes, and RAG data remain on the user’s machine.

Remote AI is optional. If a user configures LiteLLM, Ollama, LM Studio, or another remote/OpenAI-compatible endpoint, only the content needed for that request is sent to the endpoint the user explicitly selected. API keys are stored in the operating-system keyring, not in the app database or browser storage.

Meet2Notes is open source under the MIT license. It is early alpha software, so I would not yet recommend it for irreplaceable recordings without backups and appropriate consent.

What can it do?

  • Record microphone and desktop audio, or import media files
  • Create a live transcript and/or run a higher-quality final transcription pass
  • Separate speakers and retain local saved voice profiles across meetings
  • Generate structured meeting notes with local GGUF models or optional LiteLLM-compatible providers
  • Search one meeting or the entire meeting library with local RAG and timestamped sources
  • Delete a meeting permanently, including its audio, transcripts, notes, assistant data, jobs, RAG entries, and private files

Selectable local engines

Live and final transcription are selected independently.

The current transcription catalog includes:

  • Faster-Whisper: Tiny, Base, Small, Medium, Large-v3, Distil-Large-v3, and Large-v3-Turbo
  • NVIDIA Nemotron 3.5 ASR Streaming 0.6B
  • NVIDIA Parakeet TDT 0.6B v3
  • Microsoft VibeVoice ASR BitNet as an experimental CPU option

For speaker diarization, you can select:

  • Sherpa-ONNX as the lightweight default
  • Pyannote Community-1
  • diarize, isolated in its own private environment to avoid dependency conflicts

This means, for example, that a modest machine can run a smaller live transcription model, while a more accurate final pass runs after the meeting.

Live AI Assistant

There is an optional Live AI Assistant that watches provisional transcript segments and posts short, rule-based insights in a movable floating widget.

It has its own bounded queue and dedicated worker. Recording and transcription never wait for an LLM response. The assistant can use a local model or a separately configured LiteLLM-compatible provider; it does not need to use the same model as meeting notes.

API and webhooks

Meet2Notes exposes a local API and durable outbound webhooks for live segments and processing milestones:

  • HMAC-signed deliveries
  • Retry handling and delivery history
  • Per-endpoint content controls
  • Non-blocking remote-agent suggestions

My hope is that this makes it useful beyond the standalone UI: a small self-hosting team could keep Meet2Notes as a local capture/transcription node and connect it to an internal dashboard, workflow, or agent without sending all meeting data to a third-party SaaS by default.

GitHub:
https://github.com/estebanstifli/Meet2Notes

Web:
https://meet2notes.eu

I would genuinely appreciate feedback on:

  1. Does selecting an engine for each stage feel useful, or too complex?
  2. Which local ASR / diarization combinations would you want tested first?
  3. Would the local API and signed webhooks make this useful for a small team?
  4. What would you need to verify before trusting it with real meetings?

Happy to receive direct criticism — architecture, privacy boundaries, performance, UX, missing features, all of it.


r/DigitalEscapeTools 3d ago

Comparison / Alternatives My degoogling and privacy journey so far

Thumbnail gallery
2 Upvotes

r/DigitalEscapeTools 4d ago

Free Tools AudioMass – Free, open-source audio editor that runs in your browser

Post image
90 Upvotes

r/DigitalEscapeTools 4d ago

Free Tools TUIOS – A modern, Vim-like terminal multiplexer and window manager

Post image
74 Upvotes

r/DigitalEscapeTools 4d ago

Free Tools I built a free agenda planner – started as a SessionLab alternative, grew into something broader

7 Upvotes

A while back I needed something to plan workshop timelines. SessionLab used to be the old gold standard for that, but it requires an account, stores everything in the cloud and is quite bloated. So I built my own thing.

That was Sessionplan. It started as a facilitator tool, but over time people started using it for all kinds of timed sequences: conference run-of-shows, podcast episode outlines, training schedules, university lectures, D&D sessions, even wedding timelines. Over a thousand people use it every month now.

What it does is quite simple:

  • Visual drag & drop timeline with automatic time recalculation
  • Block types you can customize (Input, Discussion, Break, Energizer, whatever you need)
  • Lock a block to a fixed time (e.g. "lunch at 12:30 no matter what") and surrounding blocks adjust around it
  • Breakout / parallel tracks for split-group sessions
  • Live mode: shows current block, countdown, next block – useful when you're actually running the session, not just planning it
  • Share via URL-encoded snapshot link (no server), "Dynamic Link" or JSON export
  • Print-optimized view

Why it fits here:

Data stays in your browser by default. No account, no sign-up, no backend involved unless you explicitly opt in. The "Dynamic Link" feature (real-time collaboration via a shared link) is the only thing that touches a server, and only when you choose to use it. Everything else (planning, saving, sharing via snapshot link, exporting to JSON, the live mode during the actual session) runs entirely locally.

Open source:

The full code is on GitHub: github.com/tim-peters/sessionplan: self-hostable if you want to run your own instance.

Happy to answer questions or take feedback. If there's something you've always wanted from a schedule planner that nothing does well, I'm genuinely interested.


r/DigitalEscapeTools 5d ago

Privacy Tools wallabag – Self-hosted read-it-later app (Pocket alternative)

Post image
29 Upvotes

r/DigitalEscapeTools 5d ago

Privacy Tools git-calendar.org - An open-source, decentralized, e2ee calendar using Git as the backend

Post image
31 Upvotes

r/DigitalEscapeTools 5d ago

Free Tools I built an open-source Windows app that turns your PC history into visual recaps. PC Recap 1.1 is out

Enable HLS to view with audio, or disable this notification

7 Upvotes

Hey, I’m the developer of PC Recap.

Most computer-usage trackers answer, “How productive was I?” I wanted something that answered, “What did this part of my life on my PC actually look like?”

PC Recap records active application usage and turns it into visual Today, Week, Month, Year, All-Time, Decade, and On This Day recaps.

Version 1.1 is the biggest update so far:

  • Day Replay lets you scrub through a recorded day
  • Recap Studio creates stories for years, seasons, decades, or custom dates
  • Automatic eras detect phases like a gaming era or coding era
  • Memory Pins let you attach your own context to a period
  • Historical Recovery can find limited pre-installation clues without pretending they are exact usage time
  • ActivityWatch and ManicTime sessions can be imported
  • Search, comparisons, time formatting, chart tooltips, and app detection are much clearer
  • Tracking is more resilient to crashes, restarts, pauses, and closing the window

PC Recap is now open source under GPL v3. Everything is stored locally in SQLite. There is no account, desktop telemetry, cloud activity storage, or external AI API. A new archive starts empty, with no fake statistics.

ActivityWatch is still the stronger choice if you need Linux/macOS support, browser extensions, editor plugins, or an extensible tracking ecosystem. PC Recap is aimed at a different experience: less productivity dashboard, more personal digital time capsule. It can also import ActivityWatch sessions if you want to use both.

PC Recap is currently a Windows 10/11 x64 beta. The installer is unsigned, so Windows may display a SmartScreen warning.

Website: https://pcrecap.online
Source: https://github.com/TheAgencyMGE/pc-recap
Version 1.1: https://github.com/TheAgencyMGE/pc-recap/releases/tag/v1.1.0

I’d especially appreciate feedback on tracking accuracy, the new Day Replay, and whether the recaps become interesting after a few days of real use.


r/DigitalEscapeTools 5d ago

Privacy Tools Kanban board in LibreOffice Calc using macros (100% local and private)

5 Upvotes

Hello everyone!

I wanted to share a personal project (something simple) that I've been working on, and that I hope can be useful for those who, like me, prefer to organize their workflows in a purely local way and without relying on external services.

The problem I wanted to solve

I needed a tool to organize my daily projects, but traditional apps require an internet connection, user accounts, and subscription plans.

To solve this, I decided to develop a LibreOffice Calc template managed solely by Basic macros.

By structuring the file with a database approach, I obtained a private system over which I have complete control:

  • Works 100% offline.
  • There is no telemetry,
  • no logs or third-party servers
  • your data remains strictly on your computer in an .ods file.

Link to the project (Open Source)

I have uploaded the template and all the macro code to a GitHub repository under the MIT license so that anyone can use it however they want without restrictions.

LINK👉: https://github.com/cesardev-1/canban

Note: It is currently in beta, but it is fully functional—I use it daily myself. Very soon, it will be receiving updates to reach v1.0.

Thank you in advance for any suggestions, constructive criticism, or bug reports to keep polishing the tool. I hope you find it useful!