CC tweaked: CloverOS.
An OS written in lua,
CloverOS is just like minux but for windows. (planned)
How too install on an CC tweaked advanced computer.
Here is the stuff you need setting up the computer:
1. Place an speaker ontop of the advanced computer.
2. Place an disk drive on the right of the advanced computer.
3. Insert an floppy disk into the disk drive
4. Run inside of the advanced computer: wget run https://palordersoftworksofficial.github.io/CloverOS/netinstall.lua
(Yes we use git pages as an CDN :3)
End of steps.
Git repo: https://github.com/PalorderSoftWorksOfficial/CloverOS
Im looking for contributors, as alot is still needed to be setup like the readme file.
https://redd.it/1ofn1nd
@r_opensource
An OS written in lua,
CloverOS is just like minux but for windows. (planned)
How too install on an CC tweaked advanced computer.
Here is the stuff you need setting up the computer:
1. Place an speaker ontop of the advanced computer.
2. Place an disk drive on the right of the advanced computer.
3. Insert an floppy disk into the disk drive
4. Run inside of the advanced computer: wget run https://palordersoftworksofficial.github.io/CloverOS/netinstall.lua
(Yes we use git pages as an CDN :3)
End of steps.
Git repo: https://github.com/PalorderSoftWorksOfficial/CloverOS
Im looking for contributors, as alot is still needed to be setup like the readme file.
https://redd.it/1ofn1nd
@r_opensource
Ethical issues in Open Source software (curious to learn)
I’m trying to understand the ethical side of open source software. I know open source focuses on collaboration and transparency, but I’m wondering
Are there ethical challenges or dilemmas that contributors or companies face in open source projects?
Like generally wht are the main ethical issues or concerns in open source projects
https://redd.it/1ofosjx
@r_opensource
I’m trying to understand the ethical side of open source software. I know open source focuses on collaboration and transparency, but I’m wondering
Are there ethical challenges or dilemmas that contributors or companies face in open source projects?
Like generally wht are the main ethical issues or concerns in open source projects
https://redd.it/1ofosjx
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
My open-source project PdfDing is receiving a grant
Hi r/opensource,
for quite some time I have been working on the open-source project PdfDing - a selfhosted PDF manager, viewer and editor offering a seamless user experience on multiple devices. You can find the repository [here](https://github.com/mrmn2/PdfDing). As always I would be quite happy about a star and you trying out the application.
Last week PdfDing was selected to receive a grant from the [NGI Zero Commons Fund](https://nlnet.nl/news/2025/20251016-selection-NGI0CommonsFund.html). This fund is dedicated to helping deliver, mature and scale new internet commons across the whole technology spectrum and is amongst others funded by the European Commission. The exact sum of the grant still needs to be discussed, but obviously I am very stocked to have been selected and need to share it with the community.
PdfDings features include:
* Seamless browser based PDF viewing on multiple devices. Remembers current position - continue where you stopped reading
* Stay on top of your PDF collection with multi-level tagging, starring and archiving functionalities
* Edit PDFs by adding comments, highlighting and drawings
* Manage and export PDF highlights and comments in dedicated sections
* Clean, intuitive UI with dark mode, inverted color mode, custom theme colors and multiple layouts
* SSO support via OIDC
* Share PDFs with an external audience via a link or a QR Code with optional access control
* Markdown Notes
* Progress bars show the reading progress of each PDF at a quick glance
https://redd.it/1ofpn7y
@r_opensource
Hi r/opensource,
for quite some time I have been working on the open-source project PdfDing - a selfhosted PDF manager, viewer and editor offering a seamless user experience on multiple devices. You can find the repository [here](https://github.com/mrmn2/PdfDing). As always I would be quite happy about a star and you trying out the application.
Last week PdfDing was selected to receive a grant from the [NGI Zero Commons Fund](https://nlnet.nl/news/2025/20251016-selection-NGI0CommonsFund.html). This fund is dedicated to helping deliver, mature and scale new internet commons across the whole technology spectrum and is amongst others funded by the European Commission. The exact sum of the grant still needs to be discussed, but obviously I am very stocked to have been selected and need to share it with the community.
PdfDings features include:
* Seamless browser based PDF viewing on multiple devices. Remembers current position - continue where you stopped reading
* Stay on top of your PDF collection with multi-level tagging, starring and archiving functionalities
* Edit PDFs by adding comments, highlighting and drawings
* Manage and export PDF highlights and comments in dedicated sections
* Clean, intuitive UI with dark mode, inverted color mode, custom theme colors and multiple layouts
* SSO support via OIDC
* Share PDFs with an external audience via a link or a QR Code with optional access control
* Markdown Notes
* Progress bars show the reading progress of each PDF at a quick glance
https://redd.it/1ofpn7y
@r_opensource
GitHub
GitHub - mrmn2/PdfDing: Selfhosted PDF manager, viewer and editor offering a seamless user experience on multiple devices.
Selfhosted PDF manager, viewer and editor offering a seamless user experience on multiple devices. - mrmn2/PdfDing
We’ve open-sourced our internal AI coding IDE
We built this IDE internally to help us with coding
and to experiment with custom workflows using AI.
We also used it to build and improve the IDE itself.
It’s built around a flexible
extension system,
making it easy to develop, test, and tweak new ideas fast.
Each extension is a Python package that
runs locally.
**GitHub Repo:** [https://github.com/notbadai/ide/tree/main](https://github.com/notbadai/ide/tree/main)
**Extensions Collection:** [https://github.com/notbadai/extensions](https://github.com/notbadai/extensions)
**Discord:** [https://discord.gg/PaDEsZ6wYk](https://discord.gg/PaDEsZ6wYk)
## Installation (macOS Only)
To install or update the app:
```bash
curl -sSL https://raw.githubusercontent.com/notbadai/ide/main/install.sh | bash
```
***We have a set default extensions installed with the above installation command, ready to use with the IDE.***
## Extensions
Extensions have access to the file system, terminal content, cursor position, currently opened tabs, user selection, chat history etc.
So a developer can have own system prompts, call multiple models, and orchestrate complex agent workflows.
**Chat and apply** is the workflow I use the most.
You can quickly switch between different chat extensions for different types tasks from the dropdown menu.
To apply code suggestions we use [Morph](https://x.com/morphllm).
**For complex code sometimes code completions** are better.
We have a extensions that suggests code completions and the editor shows them inline in grey.
These can be single or multi-line.
It's easy to switch the models and prompts for this to fit the project and workflow.
**Extensions can also have simple UIs**.
For instance, we have an extension that suggest commit messages (according to a preferred format) based on the changes.
It shows the the suggestion in a simple UI and user can edit the message and commit.
More features and extensions are listed in our [documentation](https://github.com/notbadai/ide/tree/main).
## Example Extension Ideas We’ve Tried
* Determine the file context using another call to a LLM based on the request
In our initial experiments, the user had to decide the context by manually selecting which files to add. We later tried
asking an LLM to choose the files instead, by providing it with the list of files and the user’s request, and it turned
out to be quite effective at picking the right ones to fulfill the request. Newer models can now use tools like read
file to handle this process automatically.
* Tool use
Adding tools like get last edits by user and git diff proved helpful, as models could call them when they needed more
context. Tools can also be used to make edits. For some models, found this approach cleaner than presenting changes
directly in the editor, where suggestions and explanations often got mixed up.
* Web search
To provide more up-to-date information, it’s useful to have a web search extension. This can be implemented easily
using free search APIs such as [DuckDuckGo](https://duckduckgo.com/) and
open-source [web crawlers](https://github.com/unclecode/crawl4ai).
* Separate planning and building
When using the IDE, even advanced models weren’t great at handling complex tasks directly. What usually worked best was
breaking things down to the function level and asking the model to handle each piece separately. This process can be
automated by introducing multiple stages and model calls for example, a dedicated planning stage that breaks down
complex tasks into smaller subtasks or function stubs, followed by separate model calls to complete each of them.
* Shortcut based use-cases like refactoring, documenting, reformatting
https://redd.it/1ofqa8c
@r_opensource
We built this IDE internally to help us with coding
and to experiment with custom workflows using AI.
We also used it to build and improve the IDE itself.
It’s built around a flexible
extension system,
making it easy to develop, test, and tweak new ideas fast.
Each extension is a Python package that
runs locally.
**GitHub Repo:** [https://github.com/notbadai/ide/tree/main](https://github.com/notbadai/ide/tree/main)
**Extensions Collection:** [https://github.com/notbadai/extensions](https://github.com/notbadai/extensions)
**Discord:** [https://discord.gg/PaDEsZ6wYk](https://discord.gg/PaDEsZ6wYk)
## Installation (macOS Only)
To install or update the app:
```bash
curl -sSL https://raw.githubusercontent.com/notbadai/ide/main/install.sh | bash
```
***We have a set default extensions installed with the above installation command, ready to use with the IDE.***
## Extensions
Extensions have access to the file system, terminal content, cursor position, currently opened tabs, user selection, chat history etc.
So a developer can have own system prompts, call multiple models, and orchestrate complex agent workflows.
**Chat and apply** is the workflow I use the most.
You can quickly switch between different chat extensions for different types tasks from the dropdown menu.
To apply code suggestions we use [Morph](https://x.com/morphllm).
**For complex code sometimes code completions** are better.
We have a extensions that suggests code completions and the editor shows them inline in grey.
These can be single or multi-line.
It's easy to switch the models and prompts for this to fit the project and workflow.
**Extensions can also have simple UIs**.
For instance, we have an extension that suggest commit messages (according to a preferred format) based on the changes.
It shows the the suggestion in a simple UI and user can edit the message and commit.
More features and extensions are listed in our [documentation](https://github.com/notbadai/ide/tree/main).
## Example Extension Ideas We’ve Tried
* Determine the file context using another call to a LLM based on the request
In our initial experiments, the user had to decide the context by manually selecting which files to add. We later tried
asking an LLM to choose the files instead, by providing it with the list of files and the user’s request, and it turned
out to be quite effective at picking the right ones to fulfill the request. Newer models can now use tools like read
file to handle this process automatically.
* Tool use
Adding tools like get last edits by user and git diff proved helpful, as models could call them when they needed more
context. Tools can also be used to make edits. For some models, found this approach cleaner than presenting changes
directly in the editor, where suggestions and explanations often got mixed up.
* Web search
To provide more up-to-date information, it’s useful to have a web search extension. This can be implemented easily
using free search APIs such as [DuckDuckGo](https://duckduckgo.com/) and
open-source [web crawlers](https://github.com/unclecode/crawl4ai).
* Separate planning and building
When using the IDE, even advanced models weren’t great at handling complex tasks directly. What usually worked best was
breaking things down to the function level and asking the model to handle each piece separately. This process can be
automated by introducing multiple stages and model calls for example, a dedicated planning stage that breaks down
complex tasks into smaller subtasks or function stubs, followed by separate model calls to complete each of them.
* Shortcut based use-cases like refactoring, documenting, reformatting
https://redd.it/1ofqa8c
@r_opensource
GitHub
GitHub - notbadai/ide
Contribute to notbadai/ide development by creating an account on GitHub.
I just open-sourced an offline "mini-Google" semantic search engine you can install and forget until you need it, for emergencies, off-grid use, or personal notes
In case you want to have a look, the link is: [https://github.com/Ohrest88/offlinesearchengine](https://github.com/Ohrest88/offlinesearchengine)
It was an experiment where I wanted to see if something like an offline "mini-Google" could run completely on-device (on my Android phone), with semantic search (searching by meaning, like popular search engines, not just keywords).
That opened a whole can of worms:
* running a small in-built model for generating embeddings
* storing the vector embeddings in a local database
* doing vector search for semantic similarity
* keeping everything offline
* make it work on android
The second part of the experiment was making it ideally multiplatform, so it's in flutter and currently there are pre-built executables for Android (play store) and Linux (AppImage)
Of course, happy with any feedback :)
https://redd.it/1ofs1wv
@r_opensource
In case you want to have a look, the link is: [https://github.com/Ohrest88/offlinesearchengine](https://github.com/Ohrest88/offlinesearchengine)
It was an experiment where I wanted to see if something like an offline "mini-Google" could run completely on-device (on my Android phone), with semantic search (searching by meaning, like popular search engines, not just keywords).
That opened a whole can of worms:
* running a small in-built model for generating embeddings
* storing the vector embeddings in a local database
* doing vector search for semantic similarity
* keeping everything offline
* make it work on android
The second part of the experiment was making it ideally multiplatform, so it's in flutter and currently there are pre-built executables for Android (play store) and Linux (AppImage)
Of course, happy with any feedback :)
https://redd.it/1ofs1wv
@r_opensource
GitHub
GitHub - Ohrest88/offlinesearchengine: Offline Search Engine
Offline Search Engine. Contribute to Ohrest88/offlinesearchengine development by creating an account on GitHub.
Tired of tailoring your resume to multiple Job denoscriptions? I made this!
https://github.com/ricky-aufvaa/Dynamic-Resume-Builder
https://redd.it/1ofoypf
@r_opensource
https://github.com/ricky-aufvaa/Dynamic-Resume-Builder
https://redd.it/1ofoypf
@r_opensource
GitHub
GitHub - ricky-aufvaa/Dynamic-Resume-Builder
Contribute to ricky-aufvaa/Dynamic-Resume-Builder development by creating an account on GitHub.
(Gathering Feedback and Activity) MCServerNap – Automatically start & stop your Minecraft server on player join/leave (Rust application)
https://github.com/uwuhazelnut/MCServerNap
https://redd.it/1ofv9nr
@r_opensource
https://github.com/uwuhazelnut/MCServerNap
https://redd.it/1ofv9nr
@r_opensource
GitHub
GitHub - uwuhazelnut/MCServerNap: Turns your MC Server into a placebo serverless service
Turns your MC Server into a placebo serverless service - uwuhazelnut/MCServerNap
Any open source photoshop alternative?
Any open source photoshop alternatives that can actually rival with adobe?
https://redd.it/1ofvv11
@r_opensource
Any open source photoshop alternatives that can actually rival with adobe?
https://redd.it/1ofvv11
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
Is there a forum standard that combines the best from traditional forums and IMs?
Often a project has both conventional forums (Discussion / BBPress / MyBB) and Instant Messaging chatrooms (Matrix / SimpleX / IRC), often causing community fragmentation on small projects. Is there a standard that unites their advantages in one place?
https://redd.it/1ofwv1c
@r_opensource
Often a project has both conventional forums (Discussion / BBPress / MyBB) and Instant Messaging chatrooms (Matrix / SimpleX / IRC), often causing community fragmentation on small projects. Is there a standard that unites their advantages in one place?
https://redd.it/1ofwv1c
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
looking for an open source mobile OS that runs on a huawei y5p
I recently changed phone because my old Huawei y5p was blocked everywhere by google supported programms and couldn't made any security update even from huawei itself. So now I am looking for some degooglelised and huawei-free open-source os (basicaly kind of linux for mobile) that could run on this phone to give it a second life instead of forget it in a drawer.
https://redd.it/1ofzp3f
@r_opensource
I recently changed phone because my old Huawei y5p was blocked everywhere by google supported programms and couldn't made any security update even from huawei itself. So now I am looking for some degooglelised and huawei-free open-source os (basicaly kind of linux for mobile) that could run on this phone to give it a second life instead of forget it in a drawer.
https://redd.it/1ofzp3f
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
FloatView - A video browser that finds and fills unused screen space automatically
https://github.com/mrconter1/FloatView
https://redd.it/1og028g
@r_opensource
https://github.com/mrconter1/FloatView
https://redd.it/1og028g
@r_opensource
GitHub
GitHub - mrconter1/FloatView: Auto-positioning video browser that finds and fills unused screen space
Auto-positioning video browser that finds and fills unused screen space - mrconter1/FloatView
Markdrop - A powerful visual markdown editor and builder
Hey everyone! I just launched Markdrop, a minimalist, feature-rich markdown editor designed for speed and simplicity!
GitHub Repo: https://github.com/rakheOmar/Markdrop
If you’re into webdev, open-source, or just looking to make your first contribution, we’d love your feedback, ideas, and help!
How you can help:
Open a PR if you see something you want to fix or build! We review and merge good PRs quickly!
Starring the repo! This is the #1 way to help—it massively boosts our visibility and helps others find the project!
Check out our "good first issue" and "beginner friendly" labels. We've set up several issues specifically for new contributors.
Suggest new features you'd like to see.
Every contribution, (even a small doc fix or a star!) means a lot to us. Let's build something cool together!
https://redd.it/1og26d0
@r_opensource
Hey everyone! I just launched Markdrop, a minimalist, feature-rich markdown editor designed for speed and simplicity!
GitHub Repo: https://github.com/rakheOmar/Markdrop
If you’re into webdev, open-source, or just looking to make your first contribution, we’d love your feedback, ideas, and help!
How you can help:
Open a PR if you see something you want to fix or build! We review and merge good PRs quickly!
Starring the repo! This is the #1 way to help—it massively boosts our visibility and helps others find the project!
Check out our "good first issue" and "beginner friendly" labels. We've set up several issues specifically for new contributors.
Suggest new features you'd like to see.
Every contribution, (even a small doc fix or a star!) means a lot to us. Let's build something cool together!
https://redd.it/1og26d0
@r_opensource
GitHub
GitHub - rakheOmar/Markdrop: Markdrop - A powerful visual markdown editor and builder. Create beautiful README files, documentation…
Markdrop - A powerful visual markdown editor and builder. Create beautiful README files, documentation, and markdown content with an intuitive drag-and-drop interface. Features live preview, custom...
GitHub - whitlocktech/Otexum-Pulse: A windows application to auto launch an application based on user idle time.
https://github.com/whitlocktech/Otexum-Pulse
https://redd.it/1og3ox7
@r_opensource
https://github.com/whitlocktech/Otexum-Pulse
https://redd.it/1og3ox7
@r_opensource
GitHub
GitHub - whitlocktech/Otexum-Pulse: A windows application to auto launch an application based on user idle load time.
A windows application to auto launch an application based on user idle load time. - whitlocktech/Otexum-Pulse
Looking for someone to fork/update a project
https://github.com/szszss/TpacTool
ever since the latest update, this tool is no longer able to open tpac files, it crashes when you click on any of the assets. unfortunately i'm not a developer just a concerned modder whod like to be able to extract 3d models and textures again.
https://redd.it/1og2wxy
@r_opensource
https://github.com/szszss/TpacTool
ever since the latest update, this tool is no longer able to open tpac files, it crashes when you click on any of the assets. unfortunately i'm not a developer just a concerned modder whod like to be able to extract 3d models and textures again.
https://redd.it/1og2wxy
@r_opensource
GitHub
GitHub - szszss/TpacTool: An unofficial asset explorer for Mount&Blade II: Bannerlord
An unofficial asset explorer for Mount&Blade II: Bannerlord - szszss/TpacTool
Best realistic FOSS driving simulator?
Realistic not in graphics, but to prepare for driving school. Like FlightGear from the world of cars. It should support wheels, pedals and stuff.
https://redd.it/1og5tnd
@r_opensource
Realistic not in graphics, but to prepare for driving school. Like FlightGear from the world of cars. It should support wheels, pedals and stuff.
https://redd.it/1og5tnd
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
MouseUtils - An autoclicker for Windows and Linux
MouseUtils is an autoclicker, currently supporting Windows and Linux (X11 only), written in C++ with a Qt6 GUI.
This is my first C++ project I've released, and to be honest, made (excluding the classic "Hello, world!"). There will most likely be (and I believe there is) bad practices and general mistakes in the source code. I'm a bit of a newb :P
Feel free to play around, and if you're interested in contributing, please do!
GitHub: https://github.com/AngusAU293/MouseUtils
Thank you, and have a great day!
https://redd.it/1og7bu1
@r_opensource
MouseUtils is an autoclicker, currently supporting Windows and Linux (X11 only), written in C++ with a Qt6 GUI.
This is my first C++ project I've released, and to be honest, made (excluding the classic "Hello, world!"). There will most likely be (and I believe there is) bad practices and general mistakes in the source code. I'm a bit of a newb :P
Feel free to play around, and if you're interested in contributing, please do!
GitHub: https://github.com/AngusAU293/MouseUtils
Thank you, and have a great day!
https://redd.it/1og7bu1
@r_opensource
GitHub
GitHub - AngusAU293/MouseUtils: An autoclicker written in C++ for Windows and Linux
An autoclicker written in C++ for Windows and Linux - AngusAU293/MouseUtils
What are your favorite open source services?
Hey everyone! I have been DeGoogling and I’m prioritizing replacing Google services with ones that are also open source. I thought it would be interesting to share favorite opensource tools!
Mine are:
Browser: Librewolf
Email: Tuta Mail
Calendar: Tuta Calendar
Photos: Ente Password manager: Bitwarden & KeepassXC
Google docs: Cryptpad
https://redd.it/1ofz88q
@r_opensource
Hey everyone! I have been DeGoogling and I’m prioritizing replacing Google services with ones that are also open source. I thought it would be interesting to share favorite opensource tools!
Mine are:
Browser: Librewolf
Email: Tuta Mail
Calendar: Tuta Calendar
Photos: Ente Password manager: Bitwarden & KeepassXC
Google docs: Cryptpad
https://redd.it/1ofz88q
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
What are you using for mailing lists?
So I have an open source project that has a mailing list where people can sign up to hear about new versions. It has a few hundred subscribers and I send 0-2 e-mails a month, most months nothing. Everyone on it has explicitly signed up for it.
Up until now I've been running a self-hosted phpList instance but that means I'm dealing with issues with my web host's IP address reputation etc. I'd like to move to something hosted. So question 1 is: What are people using?
MailChimp is an option. I tried phpList.com but something's wrong with my account configuration and I'm not getting a response from their support. Searching around here I found someone recommend SendFox, which looks really nice, so I thought I'd try that.
But that brings us to question 2: A lot of these services require a physical address be attached to each e-mail to comply with the CAN-SPAM act, including SendFox, and I'd really rather not blast my personal address out like that. What are people doing for that? Paying for a P.O. box or one of these services that give you an address and scan your mail for you? Or should I stay with self-hosted and try to fight out the deliverability issues myself? I know I'm not the first person to run into this.
https://redd.it/1ogc7sn
@r_opensource
So I have an open source project that has a mailing list where people can sign up to hear about new versions. It has a few hundred subscribers and I send 0-2 e-mails a month, most months nothing. Everyone on it has explicitly signed up for it.
Up until now I've been running a self-hosted phpList instance but that means I'm dealing with issues with my web host's IP address reputation etc. I'd like to move to something hosted. So question 1 is: What are people using?
MailChimp is an option. I tried phpList.com but something's wrong with my account configuration and I'm not getting a response from their support. Searching around here I found someone recommend SendFox, which looks really nice, so I thought I'd try that.
But that brings us to question 2: A lot of these services require a physical address be attached to each e-mail to comply with the CAN-SPAM act, including SendFox, and I'd really rather not blast my personal address out like that. What are people doing for that? Paying for a P.O. box or one of these services that give you an address and scan your mail for you? Or should I stay with self-hosted and try to fight out the deliverability issues myself? I know I'm not the first person to run into this.
https://redd.it/1ogc7sn
@r_opensource
ROM /e/OS
Is anyone else testing this ROM?
I had 3 problems with it.
1° I can't install applications from outside the store, it says "unable to install".
2° It always fails when I put a password on my cell phone, not even one type of password remains.
3° On the map I cannot locate where I am with echolocation.
I haven't found how to solve it yet, not one of the 3. .-.
If anyone managed to do it, please give a tip to your friends.
https://redd.it/1ogcrbd
@r_opensource
Is anyone else testing this ROM?
I had 3 problems with it.
1° I can't install applications from outside the store, it says "unable to install".
2° It always fails when I put a password on my cell phone, not even one type of password remains.
3° On the map I cannot locate where I am with echolocation.
I haven't found how to solve it yet, not one of the 3. .-.
If anyone managed to do it, please give a tip to your friends.
https://redd.it/1ogcrbd
@r_opensource
Reddit
From the opensource community on Reddit
Explore this post and more from the opensource community
Flathub announces toolchain fixes to address longstanding license and copyright compliance issues
https://docs.flathub.org/blog/enhanced-license-compliance-tools
https://redd.it/1ogdab6
@r_opensource
https://docs.flathub.org/blog/enhanced-license-compliance-tools
https://redd.it/1ogdab6
@r_opensource
docs.flathub.org
Enhanced License Compliance Tools for Flathub | Flathub Documentation
tl;dr: Flathub has improved tooling to make license compliance easier for developers. Distros should rebuild OS images with updated runtimes from Flathub; app developers should ensure they're using up-to-date runtimes and verify that licenses and copyright…
My First Open Source Project: GitRead
Hey everyone! 👋
I'm excited to share my first open-source project with the community — GitRead, an AI-powered README generator that helps developers create professional project documentation in seconds.
🔧 GitRead analyzes your GitHub repository, generates a high-quality README, and allows you to customize it with a live Markdown editor and preview. Whether you're launching a new project or improving an existing one, GitRead can save you time and make your repo shine!
This project means a lot to me — it’s my first open-source contribution and I'm really looking forward to feedback from other developers. I'm super happy (and a little nervous 😅).
# 💻 GitHub Repository
👉 https://github.com/PoRiFiRo123/gitread
## 🌐 Live Demo
👉 https://git-read.vercel.app
https://redd.it/1ogegx5
@r_opensource
Hey everyone! 👋
I'm excited to share my first open-source project with the community — GitRead, an AI-powered README generator that helps developers create professional project documentation in seconds.
🔧 GitRead analyzes your GitHub repository, generates a high-quality README, and allows you to customize it with a live Markdown editor and preview. Whether you're launching a new project or improving an existing one, GitRead can save you time and make your repo shine!
This project means a lot to me — it’s my first open-source contribution and I'm really looking forward to feedback from other developers. I'm super happy (and a little nervous 😅).
# 💻 GitHub Repository
👉 https://github.com/PoRiFiRo123/gitread
## 🌐 Live Demo
👉 https://git-read.vercel.app
https://redd.it/1ogegx5
@r_opensource
GitHub
GitHub - PoRiFiRo123/gitread: GitRead is an AI-powered tool that automatically generates professional, customizable README files…
GitRead is an AI-powered tool that automatically generates professional, customizable README files for GitHub repositories by analyzing the project’s structure and metadata—saving time and improvin...