If you're an open-source developer/user who uses XMPP or IRC, please fill this survey
I'm currently writing an academic paper on open source technologies that use XMPP and IRC and I'm conducting an anonymous survey to receive inputs from the users and what they think about the services.
If you're a user of these protocols, please fill this form:
It's fully anonymous and a hosted by a free software google forms alternative called formbricks
Link to the survey: https://app.formbricks.com/s/cmfrqnx2l7nl5xh015yrwiplt
https://redd.it/1nlrbs1
@r_opensource
I'm currently writing an academic paper on open source technologies that use XMPP and IRC and I'm conducting an anonymous survey to receive inputs from the users and what they think about the services.
If you're a user of these protocols, please fill this form:
It's fully anonymous and a hosted by a free software google forms alternative called formbricks
Link to the survey: https://app.formbricks.com/s/cmfrqnx2l7nl5xh015yrwiplt
https://redd.it/1nlrbs1
@r_opensource
Formbricks
Survey for Academic Paper on XMPP and IRC | Formbricks
Please complete this survey.
Testing the water here with possible job opening (UK)...
I'm a lawyer who has a deep specialism in open source, based in the UK. Through my company, Orcro Limited, we do a lot of open source compliance work for companies all over the world, and we're looking for a junior compliance engineer. If you're geeky in nature, love open source, aren't frightened of Linux, and have an interest in open source software licensing, give me shout.
https://redd.it/1nlrzph
@r_opensource
I'm a lawyer who has a deep specialism in open source, based in the UK. Through my company, Orcro Limited, we do a lot of open source compliance work for companies all over the world, and we're looking for a junior compliance engineer. If you're geeky in nature, love open source, aren't frightened of Linux, and have an interest in open source software licensing, give me shout.
https://redd.it/1nlrzph
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
Pure Python Cryptographic Commitment Scheme — General-Purpose, Offline-Capable, Zero Dependencies
Hello everyone, I have created a cryptographic commitment scheme that is universally applicable to any computer running python, it provides cryptographic security to any average coder just by copy and pasting the code module I curated below, it has many use cases and has never been available/accessible until now according to GPT deep search. My original intent was to create a verifiable psi experiment, then it turned into a universally applicable cryptographic commitment module code that can be used and applied by anyone at this second from the GitHub repository. Lmk what ya
ChatGPT’s denoscription:
This post introduces a minimal cryptographic commitment scheme written in pure Python. It relies exclusively on the Python standard library. No frameworks, packages, or external dependencies are required. The design goal was to make secure commitment–reveal verification universally usable, auditably simple, and deployable on any system that runs Python.
The module uses HMAC-SHA256 with domain separation and random per-instance keys. The resulting commitment string can later be verified against a revealed key and message, enabling proof-of-prior-knowledge, tamper-evident disclosures, and anonymous timestamping.
⸻
Repositories:
• Minimal module:
https://github.com/RayanOgh/Minimal-HMAC-SHA256-Commitment-Verification-Skeleton-Python-
• Extended module with logging/timestamping:
https://github.com/RayanOgh/Remote-viewing-commitment-scheme
⸻
Core Capabilities:
• HMAC-SHA256 cryptographic commitment
• Domain separation using a contextual prefix
• 32-byte key generation using os.urandom
• Deterministic, tamper-evident output
• Constant-time comparison via hmac.compare_digest
• Canonicalization option for message normalization
• Fully offline operation
• Executable in restricted environments
⸻
Applications:
1. Scientific Pre-Registration
• Commit to experimental hypotheses or outputs before public release
2. Anonymous Proof-of-Authorship
• Time-lock or hash-lock messages without revealing them until desired
3. Decentralized Accountability
• Enable individuals or groups to prove intent, statements, or evidence at a later time
4. Censorship Resistance
• Content sealed offline can be later verified despite network interference or regime suppression
5. Digital Self-Testimony
• Individuals can seal claims about future events, actions, or beliefs for later validation
6. Secure Collaborative Coordination
• Prevent cheating in decision processes that require asynchronous commitment and later reveal
7. Education in Applied Cryptography
• Teaches secure commitment schemes with no prerequisite tooling
8. Blockchain-Adjacent Use
• Works as an off-chain oracle verification mechanism or as a pre-commitment protocol
⸻
Design Philosophy:
The code does not represent innovation in algorithm design. It is a structural innovation in distribution, accessibility, and real-world usability. It converts high-trust commitment protocols into direct, deployable, offline-usable infrastructure. All functionality is transparent and auditable. Because it avoids dependency on complex libraries or hosted backends, it is portable across both privileged and under-resourced environments.
⸻
Conclusion:
This module allows anyone to generate cryptographic proofs of statements, events, or data without needing a company, a blockchain, or a third-party platform. The source code is auditable, adaptable, and already functioning. It is general-purpose digital infrastructure for public verifiability and personal integrity.
Use cases are active. Implementation is immediate. The code is already working.
https://redd.it/1nlta2m
@r_opensource
Hello everyone, I have created a cryptographic commitment scheme that is universally applicable to any computer running python, it provides cryptographic security to any average coder just by copy and pasting the code module I curated below, it has many use cases and has never been available/accessible until now according to GPT deep search. My original intent was to create a verifiable psi experiment, then it turned into a universally applicable cryptographic commitment module code that can be used and applied by anyone at this second from the GitHub repository. Lmk what ya
ChatGPT’s denoscription:
This post introduces a minimal cryptographic commitment scheme written in pure Python. It relies exclusively on the Python standard library. No frameworks, packages, or external dependencies are required. The design goal was to make secure commitment–reveal verification universally usable, auditably simple, and deployable on any system that runs Python.
The module uses HMAC-SHA256 with domain separation and random per-instance keys. The resulting commitment string can later be verified against a revealed key and message, enabling proof-of-prior-knowledge, tamper-evident disclosures, and anonymous timestamping.
⸻
Repositories:
• Minimal module:
https://github.com/RayanOgh/Minimal-HMAC-SHA256-Commitment-Verification-Skeleton-Python-
• Extended module with logging/timestamping:
https://github.com/RayanOgh/Remote-viewing-commitment-scheme
⸻
Core Capabilities:
• HMAC-SHA256 cryptographic commitment
• Domain separation using a contextual prefix
• 32-byte key generation using os.urandom
• Deterministic, tamper-evident output
• Constant-time comparison via hmac.compare_digest
• Canonicalization option for message normalization
• Fully offline operation
• Executable in restricted environments
⸻
Applications:
1. Scientific Pre-Registration
• Commit to experimental hypotheses or outputs before public release
2. Anonymous Proof-of-Authorship
• Time-lock or hash-lock messages without revealing them until desired
3. Decentralized Accountability
• Enable individuals or groups to prove intent, statements, or evidence at a later time
4. Censorship Resistance
• Content sealed offline can be later verified despite network interference or regime suppression
5. Digital Self-Testimony
• Individuals can seal claims about future events, actions, or beliefs for later validation
6. Secure Collaborative Coordination
• Prevent cheating in decision processes that require asynchronous commitment and later reveal
7. Education in Applied Cryptography
• Teaches secure commitment schemes with no prerequisite tooling
8. Blockchain-Adjacent Use
• Works as an off-chain oracle verification mechanism or as a pre-commitment protocol
⸻
Design Philosophy:
The code does not represent innovation in algorithm design. It is a structural innovation in distribution, accessibility, and real-world usability. It converts high-trust commitment protocols into direct, deployable, offline-usable infrastructure. All functionality is transparent and auditable. Because it avoids dependency on complex libraries or hosted backends, it is portable across both privileged and under-resourced environments.
⸻
Conclusion:
This module allows anyone to generate cryptographic proofs of statements, events, or data without needing a company, a blockchain, or a third-party platform. The source code is auditable, adaptable, and already functioning. It is general-purpose digital infrastructure for public verifiability and personal integrity.
Use cases are active. Implementation is immediate. The code is already working.
https://redd.it/1nlta2m
@r_opensource
GitHub
GitHub - RayanOgh/Minimal-HMAC-SHA256-Commitment-Verification-Skeleton-Python-
Contribute to RayanOgh/Minimal-HMAC-SHA256-Commitment-Verification-Skeleton-Python- development by creating an account on GitHub.
How to open source?
tl;dr Can somebody point me where online I can learn how to run open source repository?
--
I have my custom built tool that I want to open source. I will continue to develop it and if somebody finds it usefull I want to develop it with them.
I've never worked in developement enviroment in a coding comapany. I've been mostly making simple custom tools for myself. I've been using git for my own version control, never with somebody.
How does it work?
I put it on git open repository.
Everyone can make pushes? And then I aprove those pushes and they become part of my code?
What if somebody puts some sneaky library? How can I review deep nested libaries? Is that commin and expected that someone will try to hack me?
What do people expect if they make pulls or pushes? How to merge conflicting pushes?
I know this is all basic git stuff, but I've never had opportunity to work with somebody (I work in construction company and code for myself making program tools for myself).
Where can I learn? I really want to share one of my tools, I think it's cool and usefull, but I need to know something atleast before I open the repository.
https://redd.it/1nlu2vc
@r_opensource
tl;dr Can somebody point me where online I can learn how to run open source repository?
--
I have my custom built tool that I want to open source. I will continue to develop it and if somebody finds it usefull I want to develop it with them.
I've never worked in developement enviroment in a coding comapany. I've been mostly making simple custom tools for myself. I've been using git for my own version control, never with somebody.
How does it work?
I put it on git open repository.
Everyone can make pushes? And then I aprove those pushes and they become part of my code?
What if somebody puts some sneaky library? How can I review deep nested libaries? Is that commin and expected that someone will try to hack me?
What do people expect if they make pulls or pushes? How to merge conflicting pushes?
I know this is all basic git stuff, but I've never had opportunity to work with somebody (I work in construction company and code for myself making program tools for myself).
Where can I learn? I really want to share one of my tools, I think it's cool and usefull, but I need to know something atleast before I open the repository.
https://redd.it/1nlu2vc
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
How people promote their OSS projects in this second quarter of the century?
I've been a FL/OSS contributor and maintainer for ages. Many years ago it was quite simple, if you had something to show, people were coming and contributing, using, or just throwing shit at your project in no time.
Then the Opensource scene start to gain a good amount of friction and we got r/opensource and r/coolgithubprojects, in the beginning it was quite amazing, a lot of positive or negative interactions, some honest criticisms, trolling were even welcomes sometimes.
Now there's a huge noise on every community of these kinds, your project can be good or shit, but often you don't know either, because even reaching the right audience is a nightmare, or at least this is my feeling.
How people do? Do they spam regularly all the internet corners till they get attention?
This is not a flame, I'm genuinely curious to understand how it works without asking to a random LLM bot 😅
https://redd.it/1nm4ac7
@r_opensource
I've been a FL/OSS contributor and maintainer for ages. Many years ago it was quite simple, if you had something to show, people were coming and contributing, using, or just throwing shit at your project in no time.
Then the Opensource scene start to gain a good amount of friction and we got r/opensource and r/coolgithubprojects, in the beginning it was quite amazing, a lot of positive or negative interactions, some honest criticisms, trolling were even welcomes sometimes.
Now there's a huge noise on every community of these kinds, your project can be good or shit, but often you don't know either, because even reaching the right audience is a nightmare, or at least this is my feeling.
How people do? Do they spam regularly all the internet corners till they get attention?
This is not a flame, I'm genuinely curious to understand how it works without asking to a random LLM bot 😅
https://redd.it/1nm4ac7
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
Lavender Photos is now stable!
Lavender Photos is an opensource, no non-sense, smooth, and performant gallery app for Android! Today it reached v1.0.0 stable. I am very proud of this achievement and it marks quite the milestone in my development journey.
Here are some features:
Browse all your photos and videos smoothly, separated by date
Add and remove albums as you wish, no arbitrary or forced selections
Search for an image by its name or date (in many formats!)
Immich integration for safe and easy cloud media backup
Trash Bin that's sorted by recently trashed
Full fledged favouriting system
A selection system that doesn't suck
Edit and personalize any photo or video, any time, without an internet connection
Secure sensitive photos in an encrypted medium, for safe keeping
Find all the relevant information for a photo from one button click
Copy and Move photos to albums easily
Clean UI and smooth UX
Privacy focused design, no chance of anything happening without your permission
Customizable to your heart's content
Any feedback would be greatly appreciated <3
https://redd.it/1nm6jgb
@r_opensource
Lavender Photos is an opensource, no non-sense, smooth, and performant gallery app for Android! Today it reached v1.0.0 stable. I am very proud of this achievement and it marks quite the milestone in my development journey.
Here are some features:
Browse all your photos and videos smoothly, separated by date
Add and remove albums as you wish, no arbitrary or forced selections
Search for an image by its name or date (in many formats!)
Immich integration for safe and easy cloud media backup
Trash Bin that's sorted by recently trashed
Full fledged favouriting system
A selection system that doesn't suck
Edit and personalize any photo or video, any time, without an internet connection
Secure sensitive photos in an encrypted medium, for safe keeping
Find all the relevant information for a photo from one button click
Copy and Move photos to albums easily
Clean UI and smooth UX
Privacy focused design, no chance of anything happening without your permission
Customizable to your heart's content
Any feedback would be greatly appreciated <3
https://redd.it/1nm6jgb
@r_opensource
GitHub
GitHub - kaii-lb/LavenderPhotos: A sweet looking photo app for android!
A sweet looking photo app for android! Contribute to kaii-lb/LavenderPhotos development by creating an account on GitHub.
Student project: looking for open-source data wiping projects to study/adapt
Hi everyone,
We’re a 6-member college team building a **secure data wiping application** as a software prototype. The requirements include:
* Cross-platform wiping (Windows, Linux, Android, including SSDs and hidden sectors).
* One-click, user-friendly GUI.
* Generating tamper-proof wipe certificates (JSON/PDF, digitally signed).
* Offline/bootable USB/ISO support.
Since many of us are beginners, we want to **study existing open-source projects** to understand:
1. **Wiping methods** – How do open-source tools securely erase drives?
2. **GUI integration** – How do they structure the GUI and engine together?
3. **Proof-of-wipe/certificates** – Are there any projects that implement some form of verifiable wipe logs or certificates?
We found tools like **DBAN, nwipe, BleachBit, and Parted Magic**, but we’re unsure:
* Which of these are most useful to study for **implementation guidance**?
* Are there smaller, beginner-friendly projects that demonstrate **secure deletion + GUI + logging/certificates**?
* Any GitHub repos, libraries, or references you recommend for a **student prototype**?
We’re not asking for code to copy — just **projects and references to learn from**, so we can design our software correctly and split tasks among our team.
Thanks a lot for any guidance! 🙏
https://redd.it/1nm7k2u
@r_opensource
Hi everyone,
We’re a 6-member college team building a **secure data wiping application** as a software prototype. The requirements include:
* Cross-platform wiping (Windows, Linux, Android, including SSDs and hidden sectors).
* One-click, user-friendly GUI.
* Generating tamper-proof wipe certificates (JSON/PDF, digitally signed).
* Offline/bootable USB/ISO support.
Since many of us are beginners, we want to **study existing open-source projects** to understand:
1. **Wiping methods** – How do open-source tools securely erase drives?
2. **GUI integration** – How do they structure the GUI and engine together?
3. **Proof-of-wipe/certificates** – Are there any projects that implement some form of verifiable wipe logs or certificates?
We found tools like **DBAN, nwipe, BleachBit, and Parted Magic**, but we’re unsure:
* Which of these are most useful to study for **implementation guidance**?
* Are there smaller, beginner-friendly projects that demonstrate **secure deletion + GUI + logging/certificates**?
* Any GitHub repos, libraries, or references you recommend for a **student prototype**?
We’re not asking for code to copy — just **projects and references to learn from**, so we can design our software correctly and split tasks among our team.
Thanks a lot for any guidance! 🙏
https://redd.it/1nm7k2u
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
Looking for open source project and team management software that runs locally
the most basic product im looking for is basically just a kanban board that doesn't run as a web service, although having a calendar and gant chart integrated would also be nice.
It seems like such a simple thing but everything seems to be made as a service that runs on docker and targeted at teams not single people managing projects through more traditional means.
edit: punctuation
https://redd.it/1nm69fb
@r_opensource
the most basic product im looking for is basically just a kanban board that doesn't run as a web service, although having a calendar and gant chart integrated would also be nice.
It seems like such a simple thing but everything seems to be made as a service that runs on docker and targeted at teams not single people managing projects through more traditional means.
edit: punctuation
https://redd.it/1nm69fb
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
Open Drone Spotter : a community app to log & share drone sightings
TL;DR What if there was a free, open-source “Waze for drones”?
You see or hear a drone → drop a quick pin on a shared map → people nearby get an alert. Later on,sensors could plug in to automatically validate alerts.
Why? Drones are showing up more often ( recent borders issues etc). Ukraine already has something similar, but I wonder if a citizen-driven, open version could work elsewhere.
Questions for you:
• Useful or just noise?
• Best way to start (open-source beta, small region test)?
• Anyone here curious to collaborate?
Not selling anything, just exploring if this could become a community projectg worth building.
https://redd.it/1nmadtq
@r_opensource
TL;DR What if there was a free, open-source “Waze for drones”?
You see or hear a drone → drop a quick pin on a shared map → people nearby get an alert. Later on,sensors could plug in to automatically validate alerts.
Why? Drones are showing up more often ( recent borders issues etc). Ukraine already has something similar, but I wonder if a citizen-driven, open version could work elsewhere.
Questions for you:
• Useful or just noise?
• Best way to start (open-source beta, small region test)?
• Anyone here curious to collaborate?
Not selling anything, just exploring if this could become a community projectg worth building.
https://redd.it/1nmadtq
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
Abundant IP Theft Fixes Here
Ask ai to add the following to your standalone index.html files.
Safeguards: anti-tamper / anti-coercion / anti-cooption / anti-theft
https://redd.it/1nmc9lp
@r_opensource
Ask ai to add the following to your standalone index.html files.
Safeguards: anti-tamper / anti-coercion / anti-cooption / anti-theft
https://redd.it/1nmc9lp
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
Customer friendly (mostly FOSS) DAP hardware?
I had a shower thought this morning, and I thought I would run it by you guys and see if this already exists or is even viable. I want a customer friendly (preferably FOSS) digital audio player.
I've seen people modding iPods and that's great, I love it. But you're working with 20 year old technology. I want something that is built for today.
I want something that can handle 24bit FLAC files and every other codec out there. I want something that (mostly) does not require a soldering iron to repair or to replace parts.
I spent some time today researching MCUs, DACs, Amps and other things to see if this was possible.
But before I go off obsessing about creating this, Does anyone know if this has been done before? Would people even be interested in this?
Thanks!
https://redd.it/1nma0ar
@r_opensource
I had a shower thought this morning, and I thought I would run it by you guys and see if this already exists or is even viable. I want a customer friendly (preferably FOSS) digital audio player.
I've seen people modding iPods and that's great, I love it. But you're working with 20 year old technology. I want something that is built for today.
I want something that can handle 24bit FLAC files and every other codec out there. I want something that (mostly) does not require a soldering iron to repair or to replace parts.
I spent some time today researching MCUs, DACs, Amps and other things to see if this was possible.
But before I go off obsessing about creating this, Does anyone know if this has been done before? Would people even be interested in this?
Thanks!
https://redd.it/1nma0ar
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
Graphite (FOSS, non-destructive 2D art/design suite) September update - project's largest release to date
https://www.youtube.com/watch?v=Vl5BA4g3QXM
https://redd.it/1nmez7b
@r_opensource
https://www.youtube.com/watch?v=Vl5BA4g3QXM
https://redd.it/1nmez7b
@r_opensource
YouTube
September Update - Graphite, the Open Source 2D Graphics Suite
Graphite is a procedural design tool and graphics editor that's free and open source. What's new in the September 2025 release, our biggest update ever? Find out the most exciting and noteworthy improvements from over 300 changes developed by our project…
I made a static site generator with a TUI!
Hey everyone,
I’m excited to share **Blogr** — a static site generator built in Rust that lets you write, edit, and deploy blogs entirely from the command line or terminal UI.
# How it works
The typical blogging workflow involves jumping between tools - write markdown, build, preview in browser, make changes, repeat. With Blogr:
1.
2. Write in the TUI editor with live preview alongside your text
3. Save and quit when done
4.
# Example
You can see it in action at blog.gokuls.in \- built with the included Minimal Retro theme.
# Installation
git clone https://github.com/bahdotsh/blogr.git
cd blogr
cargo install --path blogr-cli
# Set up a new blog
blogr init my-blog
cd my-blog
# Create a post (opens TUI editor)
blogr new "Hello World"
# Preview locally
blogr serve
# Deploy when ready
blogr deploy
# Looking for theme contributors
Right now there's just one theme (Minimal Retro), and I'd like to add more options. The theme system is straightforward - each theme provides HTML templates, CSS/JS assets, and configuration options. Themes get compiled into the binary, so once merged, they're available immediately.
If you're interested in contributing themes or have ideas for different styles, I'd appreciate the help. The current theme structure is in blogr-themes/src/minimal_retro/ if you want to see how it works.
The project is on GitHub with full documentation in the README. Happy to answer questions if you're interested in contributing or just want to try it out.
https://redd.it/1nmhz6q
@r_opensource
Hey everyone,
I’m excited to share **Blogr** — a static site generator built in Rust that lets you write, edit, and deploy blogs entirely from the command line or terminal UI.
# How it works
The typical blogging workflow involves jumping between tools - write markdown, build, preview in browser, make changes, repeat. With Blogr:
1.
blogr new "My Post Title"2. Write in the TUI editor with live preview alongside your text
3. Save and quit when done
4.
blogr deploy to publish# Example
You can see it in action at blog.gokuls.in \- built with the included Minimal Retro theme.
# Installation
git clone https://github.com/bahdotsh/blogr.git
cd blogr
cargo install --path blogr-cli
# Set up a new blog
blogr init my-blog
cd my-blog
# Create a post (opens TUI editor)
blogr new "Hello World"
# Preview locally
blogr serve
# Deploy when ready
blogr deploy
# Looking for theme contributors
Right now there's just one theme (Minimal Retro), and I'd like to add more options. The theme system is straightforward - each theme provides HTML templates, CSS/JS assets, and configuration options. Themes get compiled into the binary, so once merged, they're available immediately.
If you're interested in contributing themes or have ideas for different styles, I'd appreciate the help. The current theme structure is in blogr-themes/src/minimal_retro/ if you want to see how it works.
The project is on GitHub with full documentation in the README. Happy to answer questions if you're interested in contributing or just want to try it out.
https://redd.it/1nmhz6q
@r_opensource
GitHub
GitHub - bahdotsh/blogr: Write, edit, and publish your blog without ever leaving your terminal!
Write, edit, and publish your blog without ever leaving your terminal! - bahdotsh/blogr
Foundational LLM
Hi Guys,
I have about $7500 USD of credits in Lambda AI, do you think I would be able to create a very very small foundational model with these credits? I just want to raise some funds using this foundational model from a VC I have connection with. Also ofcouse would love to Open Source the model.
Best,
Akhil
https://redd.it/1nmiv8g
@r_opensource
Hi Guys,
I have about $7500 USD of credits in Lambda AI, do you think I would be able to create a very very small foundational model with these credits? I just want to raise some funds using this foundational model from a VC I have connection with. Also ofcouse would love to Open Source the model.
Best,
Akhil
https://redd.it/1nmiv8g
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
duvc-ctl Windows library for UVC camera control and Property control
https://github.com/allanhanan/duvc-ctl
https://redd.it/1nmiaa7
@r_opensource
https://github.com/allanhanan/duvc-ctl
https://redd.it/1nmiaa7
@r_opensource
GitHub
GitHub - allanhanan/duvc-ctl: Windows DirectShow UVC camera control library with C++, Python and CLI tools. duvc-ctl lets you …
Windows DirectShow UVC camera control library with C++, Python and CLI tools. duvc-ctl lets you programmatically control USB cameras on Windows. Set pan, tilt, zoom, focus, exposure, and other UVC ...
How to use code from MIT github project?
Hi, I'm building a plugin, that use parts of code from another MIT project. How I must approach this situation?
\- I don't want to fork and than `cherry pick` because i don't need sync with upstream and I don't need 90% of an upstream project
\- If i just copy I kinda lose all contributors info. Is it ok?
If losing contributors data is not ok, is there any way to obtain contributors list in necessary format? Because contributions are scattered around project and it is time consuming to determine, who have worked on specific parts of code i gonna use
https://redd.it/1nmlu2v
@r_opensource
Hi, I'm building a plugin, that use parts of code from another MIT project. How I must approach this situation?
\- I don't want to fork and than `cherry pick` because i don't need sync with upstream and I don't need 90% of an upstream project
\- If i just copy I kinda lose all contributors info. Is it ok?
If losing contributors data is not ok, is there any way to obtain contributors list in necessary format? Because contributions are scattered around project and it is time consuming to determine, who have worked on specific parts of code i gonna use
https://redd.it/1nmlu2v
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
What is DriveLite architecture
## Introduction
DriveLite is an open-source, self-hostable file storage system designed with privacy-first principles. Unlike traditional cloud storage, DriveLite ensures your files are encrypted end-to-end by default, so even your server cannot see your data.
At the same time, DriveLite is flexible advanced users can opt into server-trusted mode to enable features like previews, AI tagging, and semantic search.
This post explains DriveLite’s architecture and how it balances maximum privacy with optional convenience.
---
## 1. Core Principles
- Privacy by default → End-to-end encryption (E2EE) + zero-trust.
- Flexible control → Users can choose server-trusted mode for enhanced features.
- Modular architecture → Storage, backend, and AI/search services are separate and scalable.
---
## 2. How DriveLite Handles Security
### E2EE + Zero Trust (Default)
- Files are encrypted in the browser before upload.
- Server only stores ciphertext, cannot read user files.
- Protects against server compromises, rogue admins, or cloud breaches.
- Ideal for privacy-conscious users and sensitive data.
- Use on device AI models
### Server-Trusted Mode (Optional)
- Admins can opt-in for server-trusted mode per deployment
- Enables advanced features:
- File previews
- Semantic search
- AI tagging and AI-assisted file organization
---
## 3. Components Breakdown
### Frontend Web (React + Tailwind)
- Handles encryption/decryption for E2EE by default.
- Offers clear privacy vs. convenience toggle for users or admins.
- On-device ML (in case of E2EE + Zero trust)
### Backend (Go + Echo)
- Serves APIs for file upload, metadata, sharing, and search.
- Detects if server-trusted mode is enabled and handles decrypted files accordingly.
### Storage (MinIo (S3-compatible ) / File system)
- Stores encrypted blobs in default mode.
- Can store decrypted content when server-trusted mode is active.
### Database Layer (SQLite / PostgreSQL)
- Stores metadata and encryption keys securely.
- Supports pluggable backends for scalability.
### AI + Semantic Search (Python + Qdrant + gRPC)
- Only has access to file content in server-trusted mode.
- Enables semantic search, tagging, and AI features when opted-in.
---
## 4. Why This Architecture?
- Privacy-first by default → E2EE ensures maximum data security.
- Feature-flexible → Users can opt-in for richer functionality.
- Modular & Scalable → Each component can be independently maintained, scaled, or replaced.
- Clear tradeoff → Users control their own security vs. convenience balance.
---
## 5. Roadmap & Vision
- Mobile clients (Flutter)
- Collaborative features with optional server-trusted mode
- AI-assisted file management
- Community plugins and extensions
---
## Conclusion
DriveLite’s architecture is privacy-first, flexible, and future-proof. By default, your data is encrypted and zero-trust, but if you want enhanced features like previews and AI search, you can opt-in to server-trusted mode.
This approach makes DriveLite stand out in the self-hosting ecosystem, offering both security-conscious users and feature-hungry users exactly what they need.
Explore DriveLite and take control of your data: Github
https://redd.it/1nmpnbs
@r_opensource
## Introduction
DriveLite is an open-source, self-hostable file storage system designed with privacy-first principles. Unlike traditional cloud storage, DriveLite ensures your files are encrypted end-to-end by default, so even your server cannot see your data.
At the same time, DriveLite is flexible advanced users can opt into server-trusted mode to enable features like previews, AI tagging, and semantic search.
This post explains DriveLite’s architecture and how it balances maximum privacy with optional convenience.
---
## 1. Core Principles
- Privacy by default → End-to-end encryption (E2EE) + zero-trust.
- Flexible control → Users can choose server-trusted mode for enhanced features.
- Modular architecture → Storage, backend, and AI/search services are separate and scalable.
---
## 2. How DriveLite Handles Security
### E2EE + Zero Trust (Default)
- Files are encrypted in the browser before upload.
- Server only stores ciphertext, cannot read user files.
- Protects against server compromises, rogue admins, or cloud breaches.
- Ideal for privacy-conscious users and sensitive data.
- Use on device AI models
### Server-Trusted Mode (Optional)
- Admins can opt-in for server-trusted mode per deployment
- Enables advanced features:
- File previews
- Semantic search
- AI tagging and AI-assisted file organization
---
## 3. Components Breakdown
### Frontend Web (React + Tailwind)
- Handles encryption/decryption for E2EE by default.
- Offers clear privacy vs. convenience toggle for users or admins.
- On-device ML (in case of E2EE + Zero trust)
### Backend (Go + Echo)
- Serves APIs for file upload, metadata, sharing, and search.
- Detects if server-trusted mode is enabled and handles decrypted files accordingly.
### Storage (MinIo (S3-compatible ) / File system)
- Stores encrypted blobs in default mode.
- Can store decrypted content when server-trusted mode is active.
### Database Layer (SQLite / PostgreSQL)
- Stores metadata and encryption keys securely.
- Supports pluggable backends for scalability.
### AI + Semantic Search (Python + Qdrant + gRPC)
- Only has access to file content in server-trusted mode.
- Enables semantic search, tagging, and AI features when opted-in.
---
## 4. Why This Architecture?
- Privacy-first by default → E2EE ensures maximum data security.
- Feature-flexible → Users can opt-in for richer functionality.
- Modular & Scalable → Each component can be independently maintained, scaled, or replaced.
- Clear tradeoff → Users control their own security vs. convenience balance.
---
## 5. Roadmap & Vision
- Mobile clients (Flutter)
- Collaborative features with optional server-trusted mode
- AI-assisted file management
- Community plugins and extensions
---
## Conclusion
DriveLite’s architecture is privacy-first, flexible, and future-proof. By default, your data is encrypted and zero-trust, but if you want enhanced features like previews and AI search, you can opt-in to server-trusted mode.
This approach makes DriveLite stand out in the self-hosting ecosystem, offering both security-conscious users and feature-hungry users exactly what they need.
Explore DriveLite and take control of your data: Github
https://redd.it/1nmpnbs
@r_opensource
GitHub
GitHub - Moukhtar-youssef/DriveLite: DriveLite: The Supabase for File Storage. A modular, self-hostable backend with end-to-end…
DriveLite: The Supabase for File Storage. A modular, self-hostable backend with end-to-end encryption. - Moukhtar-youssef/DriveLite
ZHCL — A Natural Language Compiler That Lets You Code in Your Own Words
## 🧠 ZHCL — 自然語言程式編譯器(Natural Language Compiler)
This is not a translator. This is not a prompt.
**This is a real compiler that takes traditional Chinese sentences as source code and generates valid, executable programs.**
---
### 🧩 What is ZHCL?
> A multi-target natural language compiler:
> You write code like this 👇
```zh
主函式 開始
輸出("你好世界")
結束
結束
Then it gets compiled to .c, .class, or .exe.
🚀 Key Features
Write programs in natural language (Traditional Chinese or English)
Output to C, JVM Bytecode (.class), or native executable
Works with math models, I/O, type resolution, _Generic
Self-contained CLI with --show-c, --emit-class, --strict flags
Built-in examples:
stonehenge.zh simulates Stonehenge solar alignment
kukulcan.zh simulates the serpent shadow of the Mayan pyramid
Fully open source (MIT)
📂 GitHub
👉https://github.com/Retryixagi/ZHCL
Contains:
Compiled binaries (CLI ready to use)
Examples written in .zh
Scientific simulations powered by natural language
🧪 Demo Example: Stonehenge
請輸入時間(年、月、日、時、分)
如果太陽仰角 ≈ 巨石陣對準角度,輸出「對準成功」
Yes, this is fully executable logic written in Chinese.
❤️ Why I made this?
Because programming should not be limited by syntax.
Because not everyone thinks in English.
Because language is the most powerful interface humans have — and compilers should honor that.
Let me know what you think.
If you want to help expand to other languages (like Japanese, French, etc.), feel free to PR or fork it.
🧠 I'm actively looking for collaborators, testers, and language contributors.
https://redd.it/1nmr864
@r_opensource
## 🧠 ZHCL — 自然語言程式編譯器(Natural Language Compiler)
This is not a translator. This is not a prompt.
**This is a real compiler that takes traditional Chinese sentences as source code and generates valid, executable programs.**
---
### 🧩 What is ZHCL?
> A multi-target natural language compiler:
> You write code like this 👇
```zh
主函式 開始
輸出("你好世界")
結束
結束
Then it gets compiled to .c, .class, or .exe.
🚀 Key Features
Write programs in natural language (Traditional Chinese or English)
Output to C, JVM Bytecode (.class), or native executable
Works with math models, I/O, type resolution, _Generic
Self-contained CLI with --show-c, --emit-class, --strict flags
Built-in examples:
stonehenge.zh simulates Stonehenge solar alignment
kukulcan.zh simulates the serpent shadow of the Mayan pyramid
Fully open source (MIT)
📂 GitHub
👉https://github.com/Retryixagi/ZHCL
Contains:
Compiled binaries (CLI ready to use)
Examples written in .zh
Scientific simulations powered by natural language
🧪 Demo Example: Stonehenge
請輸入時間(年、月、日、時、分)
如果太陽仰角 ≈ 巨石陣對準角度,輸出「對準成功」
Yes, this is fully executable logic written in Chinese.
❤️ Why I made this?
Because programming should not be limited by syntax.
Because not everyone thinks in English.
Because language is the most powerful interface humans have — and compilers should honor that.
Let me know what you think.
If you want to help expand to other languages (like Japanese, French, etc.), feel free to PR or fork it.
🧠 I'm actively looking for collaborators, testers, and language contributors.
https://redd.it/1nmr864
@r_opensource
GitHub
GitHub - Retryixagi/ZHCL: Universal Natural Language Programming Engine for C. Write and execute logic using Traditional Chinese…
Universal Natural Language Programming Engine for C. Write and execute logic using Traditional Chinese or English. Supports math functions, semantic mapping, CLI integration, and low-to-high level ...
NotNow - Issue tracker backed by vanilla Github repo.
Transform your GitHub issues into a powerful task tracking system with a Quake-style dropdown terminal -- https://notnowboss.com/
https://redd.it/1nmr122
@r_opensource
Transform your GitHub issues into a powerful task tracking system with a Quake-style dropdown terminal -- https://notnowboss.com/
https://redd.it/1nmr122
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
Enfyra – Auto-generated REST & GraphQL APIs from your database
**Enfyra** is an open-source platform that automatically creates REST and GraphQL APIs from your database schema, with a visual admin interface.
**Key features:**
* Visual table/relationship builder – no SQL required
* Automatic REST + GraphQL endpoints with filtering, sorting, and pagination
* Add custom logic in JS/TS handlers
* Install and use any NPM package directly from the admin UI
* Admin interface updates instantly when the schema changes
**Use cases:** e-commerce backends, CMS, CRM, API modernization, and more.
The project is currently in beta with core API generation, admin UI, custom handlers, and runtime package installation already working.
Source:
* FE: [https://github.com/dothinh115/enfyra-app](https://github.com/dothinh115/enfyra-app)
* BE: [https://github.com/dothinh115/enfyra-be](https://github.com/dothinh115/enfyra-be)
docs: [https://github.com/dothinh115/enfyra-docs](https://github.com/dothinh115/enfyra-docs)
Live demo: [https://demo.enfyra.io](https://demo.enfyra.io)
**Enfyra is open-source; feedback, ideas, and contributions are welcome!**
https://redd.it/1nmuh37
@r_opensource
**Enfyra** is an open-source platform that automatically creates REST and GraphQL APIs from your database schema, with a visual admin interface.
**Key features:**
* Visual table/relationship builder – no SQL required
* Automatic REST + GraphQL endpoints with filtering, sorting, and pagination
* Add custom logic in JS/TS handlers
* Install and use any NPM package directly from the admin UI
* Admin interface updates instantly when the schema changes
**Use cases:** e-commerce backends, CMS, CRM, API modernization, and more.
The project is currently in beta with core API generation, admin UI, custom handlers, and runtime package installation already working.
Source:
* FE: [https://github.com/dothinh115/enfyra-app](https://github.com/dothinh115/enfyra-app)
* BE: [https://github.com/dothinh115/enfyra-be](https://github.com/dothinh115/enfyra-be)
docs: [https://github.com/dothinh115/enfyra-docs](https://github.com/dothinh115/enfyra-docs)
Live demo: [https://demo.enfyra.io](https://demo.enfyra.io)
**Enfyra is open-source; feedback, ideas, and contributions are welcome!**
https://redd.it/1nmuh37
@r_opensource
GitHub
GitHub - dothinh115/enfyra-app
Contribute to dothinh115/enfyra-app development by creating an account on GitHub.