Build the buddy that gets you! We open-sourced a complete AI voice interaction system!
Hey everyone, we just open-sourced Buddie: a complete, AI-powered voice interaction system we built from the ground up, so you can create your own AI buddy.
It's a full-stack platform for developers, hackers, and students, including custom hardware, firmware, and a mobile app. Therefore, you can use our solution to create various forms of AI devices, such as earphones, speakers, bracelets, toys, or desktop ornaments.
What it can do:
Live transcribe & summarize meetings, calls, or in-person chats.
Get real-time hints during conversations .
Talk to LLMs completely hands-free.
Context-aware help without needing to repeat yourself.
We've put everything on GitHub, including docs, to get you started. We're just getting started and would love to hear your ideas, questions, or even wild feature requests. Let us know what you think!
https://redd.it/1mqxxjs
@r_opensource
Hey everyone, we just open-sourced Buddie: a complete, AI-powered voice interaction system we built from the ground up, so you can create your own AI buddy.
It's a full-stack platform for developers, hackers, and students, including custom hardware, firmware, and a mobile app. Therefore, you can use our solution to create various forms of AI devices, such as earphones, speakers, bracelets, toys, or desktop ornaments.
What it can do:
Live transcribe & summarize meetings, calls, or in-person chats.
Get real-time hints during conversations .
Talk to LLMs completely hands-free.
Context-aware help without needing to repeat yourself.
We've put everything on GitHub, including docs, to get you started. We're just getting started and would love to hear your ideas, questions, or even wild feature requests. Let us know what you think!
https://redd.it/1mqxxjs
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
Anyone else got charged a few cents by GitHub for an open-source repo?
I just noticed something odd and wanted to check if it’s only me.
On July 27, 2025, I opened a support ticket with GitHub after receiving an invoice that showed my public open-source repository being billed under “metered” usage. From what I understand, public repos shouldn’t trigger these charges.
I only got a reply on August 12, and the next day they explained it was a bug: some users were charged a couple of cents for metered billing products, even when they shouldn’t have been. They reversed the charge and said they’re working on a fix.
That’s fine — but now I’m wondering: how many other people saw a tiny $0.02 or $0.03 charge and didn’t bother contacting support?
Has anyone else here noticed small, unexpected charges for public repos recently?
https://redd.it/1mqz5sr
@r_opensource
I just noticed something odd and wanted to check if it’s only me.
On July 27, 2025, I opened a support ticket with GitHub after receiving an invoice that showed my public open-source repository being billed under “metered” usage. From what I understand, public repos shouldn’t trigger these charges.
I only got a reply on August 12, and the next day they explained it was a bug: some users were charged a couple of cents for metered billing products, even when they shouldn’t have been. They reversed the charge and said they’re working on a fix.
That’s fine — but now I’m wondering: how many other people saw a tiny $0.02 or $0.03 charge and didn’t bother contacting support?
Has anyone else here noticed small, unexpected charges for public repos recently?
https://redd.it/1mqz5sr
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
Curl Keeps Cars Rolling: How a Tiny Open-Source Tool Powers Millions of Vehicles
https://ostechnix.com/curl-runs-in-top-car-brands/
https://redd.it/1mqzy8d
@r_opensource
https://ostechnix.com/curl-runs-in-top-car-brands/
https://redd.it/1mqzy8d
@r_opensource
OSTechNix
Curl Runs In The World's Top 47 Car Brands [August 2025 Report] - OSTechNix
Learn how curl, a small open-source tool, is built into hundreds of millions of cars, including models from the world’s top 47 car brands.
A secure and private Android call recording app without root?
For Android 10 or higher.
https://redd.it/1mr3jwv
@r_opensource
For Android 10 or higher.
https://redd.it/1mr3jwv
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
Build Your own AI Agents
We've released Denser Agent as an open-source project! You can build your AI agents with weather forecast, meeting scheduling and database analytics capabilities.
GitHub: https://github.com/denser-org/denser-agent/
Youtube tutorial & Demo: https://www.youtube.com/watch?v=3\_KledHS-WM
Happy building on your AI Agents! 🛠️
https://redd.it/1mr4e7g
@r_opensource
We've released Denser Agent as an open-source project! You can build your AI agents with weather forecast, meeting scheduling and database analytics capabilities.
GitHub: https://github.com/denser-org/denser-agent/
Youtube tutorial & Demo: https://www.youtube.com/watch?v=3\_KledHS-WM
Happy building on your AI Agents! 🛠️
https://redd.it/1mr4e7g
@r_opensource
YouTube
Build Powerful AI Agents with Denser - Open Source, Tutorial & Demo
Learn how to build production-ready AI agents with simple, extensible code! In this tutorial, we demonstrate the Denser Agent framework and show you how to create AI agents with real-world capabilities including weather forecasting, meeting scheduling,…
Zulip 11.0: Organized chat for distributed teams
https://blog.zulip.com/2025/08/13/zulip-11-0-released/
https://redd.it/1mr6795
@r_opensource
https://blog.zulip.com/2025/08/13/zulip-11-0-released/
https://redd.it/1mr6795
@r_opensource
The Zulip Blog
Zulip 11.0: Organized chat for distributed teams
We’re excited to announce the release of Zulip Server 11.0, containing hundreds
of new features and bug fixes: message reminders, support for channels without
topics, channel folders, and so much more! Over 3,300 new commits have been
merged across the project…
of new features and bug fixes: message reminders, support for channels without
topics, channel folders, and so much more! Over 3,300 new commits have been
merged across the project…
Project: Unstructored -> structured
I’m building an open-source AI Agent that converts messy, unstructured documents into clean, structured data.
The idea is simple:
You upload multiple documents — invoices, purchase orders, contracts, medical reports, etc. — and get back structured data (CSV tables) so you can visualize and work with your information more easily.
Here’s the approach I’m testing:
1. inference_schema
A vLLM analyzes your documents and suggests the best JSON schema for them — regardless of the document type.
This schema acts as the “official” structure for all files in the batch.
2. invoice_data_capture
A specialized LLM maps the extracted fields strictly to the schema.
For each uploaded document, it returns something like this, always following the same structure:
>
3. generate_csv
Once all documents are structured in JSON, another specialized LLM (with tools like Pandas) designs CSV tables to clearly present the extracted data.
💬 What do you think about this approach? All feedback is welcome
https://redd.it/1mr9rms
@r_opensource
I’m building an open-source AI Agent that converts messy, unstructured documents into clean, structured data.
The idea is simple:
You upload multiple documents — invoices, purchase orders, contracts, medical reports, etc. — and get back structured data (CSV tables) so you can visualize and work with your information more easily.
Here’s the approach I’m testing:
1. inference_schema
A vLLM analyzes your documents and suggests the best JSON schema for them — regardless of the document type.
This schema acts as the “official” structure for all files in the batch.
2. invoice_data_capture
A specialized LLM maps the extracted fields strictly to the schema.
For each uploaded document, it returns something like this, always following the same structure:
>
3. generate_csv
Once all documents are structured in JSON, another specialized LLM (with tools like Pandas) designs CSV tables to clearly present the extracted data.
💬 What do you think about this approach? All feedback is welcome
https://redd.it/1mr9rms
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
Open-Source Civic Framework – Looking for Collaborators & Review
Open-source governance toolkit — modular, forkable, and maybe just a little bit sci-fi. Want to help shape it?
I’ve published the **first draft** of an open-source civic framework called **Constella**. It’s intended as a **modular governance toolkit** for communities, blending practical civic processes with some creative concepts (cosmic citizenship, AI companions).
GitHub repo:
📄 [Constella Framework – GitHub](https://github.com/Nightmarejam/constella-framework)
Looking for:
* Code review & contribution
* Ideas for modular features
* Advice on making the repo more contributor-friendly
https://redd.it/1mrdc52
@r_opensource
Open-source governance toolkit — modular, forkable, and maybe just a little bit sci-fi. Want to help shape it?
I’ve published the **first draft** of an open-source civic framework called **Constella**. It’s intended as a **modular governance toolkit** for communities, blending practical civic processes with some creative concepts (cosmic citizenship, AI companions).
GitHub repo:
📄 [Constella Framework – GitHub](https://github.com/Nightmarejam/constella-framework)
Looking for:
* Code review & contribution
* Ideas for modular features
* Advice on making the repo more contributor-friendly
https://redd.it/1mrdc52
@r_opensource
GitHub
GitHub - Nightmarejam/constella-framework: Constella — proof-before-scale civic OS for resilient siting, healthy homes, and fair…
Constella — proof-before-scale civic OS for resilient siting, healthy homes, and fair governance. - Nightmarejam/constella-framework
Released Lanemu P2P VPN 0.12.3 - Open-source alternative to Hamachi
https://gitlab.com/Monsterovich/lanemu/-/releases/0.12.3
https://redd.it/1mrexkz
@r_opensource
https://gitlab.com/Monsterovich/lanemu/-/releases/0.12.3
https://redd.it/1mrexkz
@r_opensource
GitLab
Release 0.12.3 · Nikolay Borodin / Lanemu P2P VPN · GitLab
Updated OpenJDK downloader: added download speed indicator and the link to the new version of OpenJDK has been updated. Switched to Bouncy Castle LTS, which...
I needed an efficient way to convert 5tb of unstructured html into dictionaries using just my laptop, so I wrote doc2dict.
I'm the developer of an open source package to work with SEC data. It turns out the SEC has 5tb of html. This data is visually standardized to humans, but under the hood is a mess of different tags and css.
There are a couple existing solutions for parsing html, but they usually involve a combination of LLMs and OCR, which is slow and expensive. So, I decided to write a flexible, algorithmic solution: doc2dict.
Installation
pip install doc2dict
User interface
dct = html2dict(content,mappingdict=None) # converts content to dictionary
visualizedict(dct) # visualizes the dictionary using your browser.
Note: I don't use this UI much, as I mostly use it via my SEC package. Docs
# Architecture
1. Iterate through DOM and via inheritance get characteristics such as bold, visual height, italics, etc for text on same line (e.g. within a block) to create instructions, e.g.
2. Use a rule set to determine how to convert instructions into a nested dictionary. This is customizable. For example, the mapping dict below tells the parser that 'items' should be nested under 'parts', in addition to the default rules.
​
tenkmappingdict = {
('part',r'^part\s([ivx]+)$') : 0,
('signatures',r'^signatures?\.$') : 0,
('item',r'^item\s(\d+)') : 1,
}
Note: This approach kinda works for modern pdfs. The text stream is often in the order a human would view as correct, so this kinda works. I've added the functionality to doc2dict, but it's in an early stage. (AKA, it sucks).
# Benchmarks
Benchmarks vary as I update the package w.r.t. to features (tables are slow!). Via my laptop:
500 pages per second single threaded
5,000 pages per second multi threaded
# Links
doc2dict GitHub
[raw html](https://html-preview.github.io/?url=https://raw.githubusercontent.com/john-friedman/doc2dict/refs/heads/main/example_output/html/msft_10k_2024.html#:~:text=embracing)
dictionary visualization (old)
[instructions visualization](https://html-preview.github.io/?url=https://github.com/john-friedman/doc2dict/blob/main/example_output/html/instructions_visualization.html) (old)
dictionary (old)
https://redd.it/1mrbkno
@r_opensource
I'm the developer of an open source package to work with SEC data. It turns out the SEC has 5tb of html. This data is visually standardized to humans, but under the hood is a mess of different tags and css.
There are a couple existing solutions for parsing html, but they usually involve a combination of LLMs and OCR, which is slow and expensive. So, I decided to write a flexible, algorithmic solution: doc2dict.
Installation
pip install doc2dict
User interface
dct = html2dict(content,mappingdict=None) # converts content to dictionary
visualizedict(dct) # visualizes the dictionary using your browser.
Note: I don't use this UI much, as I mostly use it via my SEC package. Docs
# Architecture
1. Iterate through DOM and via inheritance get characteristics such as bold, visual height, italics, etc for text on same line (e.g. within a block) to create instructions, e.g.
[{'text': 'BOARD MEETINGS', 'all_caps': True, 'bold': True, 'font-size': 15.995999999999999}]2. Use a rule set to determine how to convert instructions into a nested dictionary. This is customizable. For example, the mapping dict below tells the parser that 'items' should be nested under 'parts', in addition to the default rules.
​
tenkmappingdict = {
('part',r'^part\s([ivx]+)$') : 0,
('signatures',r'^signatures?\.$') : 0,
('item',r'^item\s(\d+)') : 1,
}
Note: This approach kinda works for modern pdfs. The text stream is often in the order a human would view as correct, so this kinda works. I've added the functionality to doc2dict, but it's in an early stage. (AKA, it sucks).
# Benchmarks
Benchmarks vary as I update the package w.r.t. to features (tables are slow!). Via my laptop:
500 pages per second single threaded
5,000 pages per second multi threaded
# Links
doc2dict GitHub
[raw html](https://html-preview.github.io/?url=https://raw.githubusercontent.com/john-friedman/doc2dict/refs/heads/main/example_output/html/msft_10k_2024.html#:~:text=embracing)
dictionary visualization (old)
[instructions visualization](https://html-preview.github.io/?url=https://github.com/john-friedman/doc2dict/blob/main/example_output/html/instructions_visualization.html) (old)
dictionary (old)
https://redd.it/1mrbkno
@r_opensource
GitHub
GitHub - john-friedman/datamule-python: A package to work with SEC data. Incorporates datamule endpoints.
A package to work with SEC data. Incorporates datamule endpoints. - john-friedman/datamule-python
Best practice for including third-party licenses in an OSS library?
I built a public library that’s MIT-licensed (the license is in a LICENSE file).
The package uses some third-party code, each with its own license.
I’m trying to figure out the standard way to include those third-party licenses in my repo:
Add them directly to my LICENSE file?
Create a separate file like THIRDPARTYLICENSES or NOTICE?
Also, when someone uses my package, do they need to include all these third-party licenses in their app?
One concern: I’ve noticed that some app license generators only pull the main LICENSE file of each dependency, so if third-party licenses are in a separate file, they might be missed. How do you handle this?
My library has 300k downloads a month, and I think it’s time to fix this in the best way.
Currently I only have in the readme a section with links to the third party code that I use with their license type.
Thanks
https://redd.it/1mrep4m
@r_opensource
I built a public library that’s MIT-licensed (the license is in a LICENSE file).
The package uses some third-party code, each with its own license.
I’m trying to figure out the standard way to include those third-party licenses in my repo:
Add them directly to my LICENSE file?
Create a separate file like THIRDPARTYLICENSES or NOTICE?
Also, when someone uses my package, do they need to include all these third-party licenses in their app?
One concern: I’ve noticed that some app license generators only pull the main LICENSE file of each dependency, so if third-party licenses are in a separate file, they might be missed. How do you handle this?
My library has 300k downloads a month, and I think it’s time to fix this in the best way.
Currently I only have in the readme a section with links to the third party code that I use with their license type.
Thanks
https://redd.it/1mrep4m
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
Seeking code review for open source Canadian shopping extension before launch
Built a browser extension for Canadian e-commerce (keeping details light until launch). Looking for a code review from experienced developers
Stack is TypeScript + Vue. Considering the Canadian angle, this might interest Canadian devs, but would welcome feedback from anyone
Send a DM for the repo link
Thanks
https://redd.it/1mrimzr
@r_opensource
Built a browser extension for Canadian e-commerce (keeping details light until launch). Looking for a code review from experienced developers
Stack is TypeScript + Vue. Considering the Canadian angle, this might interest Canadian devs, but would welcome feedback from anyone
Send a DM for the repo link
Thanks
https://redd.it/1mrimzr
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
I made a privacy-focused webtools site – P2P file sharing, browser fingerprint test, PDF tools & more, all client-side
https://inettool.com
https://redd.it/1mri9lj
@r_opensource
https://inettool.com
https://redd.it/1mri9lj
@r_opensource
Inettool
iNetTool: Free Online Browser & Network Utilities
A collection of free, client-side browser and network tools, including a QR code generator, permissions checker, latency test, and more.
Need Contributors for PairPay
Need a contributor to add a feature for PairPay
PairPay uses:
1. React Native
2. react-native-reanimated
3. expo
4. supabase
The feature is about adding a chart for customers to see their data on a chart. The chart can show data how much they owe in which currencies and how much they are owed and in which currency.
If you would like to be part of this project DM.
https://play.google.com/store/apps/details?id=com.alisinayousofi.greenred
https://redd.it/1mrnl2l
@r_opensource
Need a contributor to add a feature for PairPay
PairPay uses:
1. React Native
2. react-native-reanimated
3. expo
4. supabase
The feature is about adding a chart for customers to see their data on a chart. The chart can show data how much they owe in which currencies and how much they are owed and in which currency.
If you would like to be part of this project DM.
https://play.google.com/store/apps/details?id=com.alisinayousofi.greenred
https://redd.it/1mrnl2l
@r_opensource
Google Play
PairPay - Apps on Google Play
Track transactions between you and another person across multiple currencies.
Olympic Sports Image Classification with TensorFlow & EfficientNetV2
https://eranfeit.net/olympic-sports-image-classification-with-tensorflow-efficientnetv2/
https://redd.it/1mrnxwj
@r_opensource
https://eranfeit.net/olympic-sports-image-classification-with-tensorflow-efficientnetv2/
https://redd.it/1mrnxwj
@r_opensource
Eran Feit
Olympic Sports Image Classification with EfficientNetV2 – Eran Feit
Introduction Image classification is one of the most exciting applications of computer vision. It powers technologies in sports analytics, autonomous driving, h
Rust Utility for Managing PATH
✦ Global Path Add - Rust Utility for Managing PATH
I've built a Rust utility that permanently adds directories to your PATH environment variable across different shell environments.
What it does:
Makes persistent PATH changes that apply to all new terminal sessions, unlike temporary solutions.
Current status (Pre-Alpha):
\- ✅ Works with Bash shell
\- ⚠️ Fish shell support semi-implemented (files created but not fully functional)
\- ⚠️ Only works with absolute paths
\- ⚠️ Not thoroughly tested - use at your own risk!
Usage:
1 global_path_add /absolute/path/to/directory
Why I'm sharing:
This is my first Rust project and I'm looking for feedback and contributors to help improve it. I need help with:
\- Completing Fish shell support
\- Support for other shells
\- Better error handling
\- Unit tests
\- Code refactoring
Licensed under MIT. Any feedback or contributions would be greatly appreciated!
GitHub: https://github.com/streamtechteam/global\_path\_add
What do you think? Would you find this useful?
https://redd.it/1mrplcl
@r_opensource
✦ Global Path Add - Rust Utility for Managing PATH
I've built a Rust utility that permanently adds directories to your PATH environment variable across different shell environments.
What it does:
Makes persistent PATH changes that apply to all new terminal sessions, unlike temporary solutions.
Current status (Pre-Alpha):
\- ✅ Works with Bash shell
\- ⚠️ Fish shell support semi-implemented (files created but not fully functional)
\- ⚠️ Only works with absolute paths
\- ⚠️ Not thoroughly tested - use at your own risk!
Usage:
1 global_path_add /absolute/path/to/directory
Why I'm sharing:
This is my first Rust project and I'm looking for feedback and contributors to help improve it. I need help with:
\- Completing Fish shell support
\- Support for other shells
\- Better error handling
\- Unit tests
\- Code refactoring
Licensed under MIT. Any feedback or contributions would be greatly appreciated!
GitHub: https://github.com/streamtechteam/global\_path\_add
What do you think? Would you find this useful?
https://redd.it/1mrplcl
@r_opensource
GitHub
GitHub - streamtechteam/global_path_add: a Rust Utility for Managing PATH
a Rust Utility for Managing PATH. Contribute to streamtechteam/global_path_add development by creating an account on GitHub.
🛡️ Find security pitfalls fast: heuristics + local AI (StarCoder2‑3B) — NeuralScan
\- 💻 Lightweight desktop code scanner with a minimal GUI. Fast heuristics + optional on-device AI explanations.
\- 🧭 What it flags: command exec, unsafe deserialization, weak crypto (MD5/SHA1/DES), destructive FS, secrets, network IOCs. Works on common source/configs (e.g., .py/.sh/Dockerfile).
\- 🤖 AI: bigcode/starcoder2‑3b via HF Transformers; local-only, with deterministic fallback when AI isn’t available.
\- 🐳 Optional Trivy integration (Docker) for dependency scanning. Safe degradation if Docker is off.
\- 📊 Outputs a security score, risk categories (with severity weighting), and keeps recent scan history locally.
\- 🧰 Cross‑platform (Linux/Win/macOS), Python 3.9+, MIT.
GitHub
https://redd.it/1mrteh0
@r_opensource
\- 💻 Lightweight desktop code scanner with a minimal GUI. Fast heuristics + optional on-device AI explanations.
\- 🧭 What it flags: command exec, unsafe deserialization, weak crypto (MD5/SHA1/DES), destructive FS, secrets, network IOCs. Works on common source/configs (e.g., .py/.sh/Dockerfile).
\- 🤖 AI: bigcode/starcoder2‑3b via HF Transformers; local-only, with deterministic fallback when AI isn’t available.
\- 🐳 Optional Trivy integration (Docker) for dependency scanning. Safe degradation if Docker is off.
\- 📊 Outputs a security score, risk categories (with severity weighting), and keeps recent scan history locally.
\- 🧰 Cross‑platform (Linux/Win/macOS), Python 3.9+, MIT.
GitHub
https://redd.it/1mrteh0
@r_opensource
GitHub
GitHub - exiv703/NeuralScan: 🛡️ Lightweight desktop code scanner — heuristics + local AI (StarCoder2‑3B), optional Trivy. Local‑first…
🛡️ Lightweight desktop code scanner — heuristics + local AI (StarCoder2‑3B), optional Trivy. Local‑first, MIT. - exiv703/NeuralScan
What are some cool open source projects where I can contribute ?
I am a full stack developer having 1.5 YOE but no projects in my resume, so it gets rejected everytime.
My skillset -
- Javanoscript
- Typenoscript
- Nodejs
- Nestjs
- ReactJS
- Postgres & Mongodb
- Sequelize & Momgoose
- Docker
I am more interested in backend.
Any help would be appreciated
Thanks in adv.
https://redd.it/1mrteef
@r_opensource
I am a full stack developer having 1.5 YOE but no projects in my resume, so it gets rejected everytime.
My skillset -
- Javanoscript
- Typenoscript
- Nodejs
- Nestjs
- ReactJS
- Postgres & Mongodb
- Sequelize & Momgoose
- Docker
I am more interested in backend.
Any help would be appreciated
Thanks in adv.
https://redd.it/1mrteef
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
looking for FOSS alarm clock, for windows.
i used to use alarm clock pro alarm clock pro (paid) for some reason it glitched out in my old device and i was able to use the free trial eternally (LOL)
and since i switched to a new device, i have been looking for an alternative...
found Free Alarm Clock a run down version of (paid) Hot Alarm Clock , working fine but it was not able to play a flac audio file
was wondering if there was an opensource or free alternative for alarm clock pro, i mainly need features like to play audio files (.flac also) in loop (single/many),can autostart, can wake up from sleep, can run in background(stay alive in hidden icons- bottom right) if possible- can open files , can run timers with same output mechanism
features of this alarm clock pro
can autorun at startup and probably wake from sleep (has never let me down)
set multiple alarms, on and off them (basic function)
select the alarm time, and snooze timings for each snooze and frequency of alarms
play any audio,many A/V files (plays even flac!), customize volume of alarm too + more
change the loop and playback speed 😱
can shutdown/sleep at alarm , can open any? file or folder , create log, run shell command settings-shell command
freealarmclock
choose frequency, time, song (mp3), custom volume at time of alarm +(https://files.catbox.moe/4tzf3j.png)
https://redd.it/1mrx1p6
@r_opensource
i used to use alarm clock pro alarm clock pro (paid) for some reason it glitched out in my old device and i was able to use the free trial eternally (LOL)
and since i switched to a new device, i have been looking for an alternative...
found Free Alarm Clock a run down version of (paid) Hot Alarm Clock , working fine but it was not able to play a flac audio file
was wondering if there was an opensource or free alternative for alarm clock pro, i mainly need features like to play audio files (.flac also) in loop (single/many),can autostart, can wake up from sleep, can run in background(stay alive in hidden icons- bottom right) if possible- can open files , can run timers with same output mechanism
features of this alarm clock pro
can autorun at startup and probably wake from sleep (has never let me down)
set multiple alarms, on and off them (basic function)
select the alarm time, and snooze timings for each snooze and frequency of alarms
play any audio,many A/V files (plays even flac!), customize volume of alarm too + more
change the loop and playback speed 😱
can shutdown/sleep at alarm , can open any? file or folder , create log, run shell command settings-shell command
freealarmclock
choose frequency, time, song (mp3), custom volume at time of alarm +(https://files.catbox.moe/4tzf3j.png)
https://redd.it/1mrx1p6
@r_opensource
Koingosw
Alarm Clock Pro 15 for Mac & PC: Apple Music alarm clock, stop watch, timer
Apple Music alarm clock, stop watch, timer, and more!
Centralised Cloud Platform
Hello Folks,
Is there any open-source or alternative available platform like meshcloud.io?
TIA
https://redd.it/1ms0j1z
@r_opensource
Hello Folks,
Is there any open-source or alternative available platform like meshcloud.io?
TIA
https://redd.it/1ms0j1z
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community