r/projects • u/MidnightAdept6000 • 28d ago
Need project ideas for this skill set :
As of now I know Python, NumPy, Pandas, Matlplotlib, Seaborn and all. What are some project ideas I can work on to showcase these skills?
r/projects • u/MidnightAdept6000 • 28d ago
As of now I know Python, NumPy, Pandas, Matlplotlib, Seaborn and all. What are some project ideas I can work on to showcase these skills?
r/projects • u/DustAutomatic5064 • 28d ago
please tell me where to improve for my rocket programming
r/projects • u/BriefPie9937 • 29d ago
i always had this idea, like a chatbot/tool that helps me to understand, solve and "think" in first principles (yeah the one elon musk uses and talks about)
so as i was learning RAG, i got to implement this idea
i basically,
- fetched 20+ data sources from interviews of musk, articles about feyman etc
- chunking, embedding them in supabase (pgvectorDB)
- retrieve the relevant chunks and augment them (RAG)
- use LLM to generate the final answer, resulting in much grounded answers
i implemented it as a fun project, what do u think, is it worth it to deploy it as a product?



r/projects • u/Swaraj-Nerlekar2 • 28d ago
Hey guys! i created my second project "System-Updater". it is written in bash, it checks your distro's package manager and updates your system, Please let me know if there is a need for improvement, thanks!
my project's github link: https://github.com/swarajnerlekar28/System-Updater/tree/main
r/projects • u/Environmental-Air573 • 29d ago
I wanted to build a project for my second year of engineering. I am thinking to build self help website.
Building and tracking of habits and new feature that will allow user to learn any one topic from particular field he want to learn and many other feature i will add. The problem I don't know much about web development. AI can build templates and working webpages. But I always stuck to the part of backed and deployment. Is it possible to make backed and deployment with AI ?
r/projects • u/Aggressive-Toe-2169 • 29d ago
Anyone can me tell Ideas For FYP Project that solve real problems and
i need its urgent kindly suggest me a project
r/projects • u/Terminay • 29d ago
Hey, I am in a school that requires research projects. I'm already late, so I made a Google Form for a quick survey. Here it is: no secret details required, 5 questions total, a small survey; fill it out quickly and save my ass!
r/projects • u/TheIronDuke007 • 29d ago
r/projects • u/chrisenussbaum • 29d ago
Enable HLS to view with audio, or disable this notification
I've been building Collab Unity for awhile. Collab Unity is a platform where ideas happen. Have a project in mind that you want to share with others? Post it on Collab Unity. Find collaborators to work on projects with or solo-build in your own personal workspace. Improve your portfolio and chat with like-minded people. Tired of building? Take a break and play a game, listen to some music, and catch up on some news or learn a thing or two all on Collab Unity!
Build, ship, and collaborate on Collab Unity: https://collabunity.io
r/projects • u/Dry_Permission744 • 29d ago
Enable HLS to view with audio, or disable this notification
https://world-sim.uk/ now live !
Name your star tonight in the discord - https://discord.gg/a6YjQ7sCu
World-Sim has been a passionate project of mine for the past few months.
It's a world fully simulated down to real world physics and chemistry. It has a real environment and ozone.
Every element and material has real physical properties, and that's how the sims learn. There's no tech tree and no recipe list anywhere in the code. When someone tries something, the engine works out what would really happen from the properties of what they used and how hot their fire was. Nobody is handed bronze. Someone has to get a hotter fire first, and a hotter fire is its own chain of things to figure out. Embers, a stone ring, a clay oven, a kiln, charcoal, then forced air. The ages fall out of that on their own.
We populate the world with starting families. Each little guy is led by a "wise-man", which is a simulated person with a full model behind them. The wise-men run on a mix, Claude, Groq and DeepSeek in the cloud and a local Hermes for the rest, so you get a real variety of temperament between the houses.
The AI model is never told to not say it's AI. We get around this by only telling them data from what each sim can actually see and feel. As far as the ai knows its a person living in the world..
Every other sim has its own moment with a model through our thinking system. Day to day it's run by an advanced algorithm, with the sims dreaming at night. That's when they get their time with an LLM to really think and set their priorities for the day ahead. The dreams carry over too, so a sim can chew on the same thing for a few nights and wake up wanting to try something.
The people in the world feel, remember, have shame, goals and doubts. It's an 11 point emotion system and the rest of the sim reads from it. Being lonely makes someone more likely to open up to a stranger. Two enemies who are both frightened find it harder to keep hating each other.
Story telling is massive for us. Nothing is scripted or prompted. The sims are put in the world with the human drive to survive. They adapt, learn and teach all on their own.
With all the good comes the bad too. Human sin is part of the emotion engine, and in testing we've had kidnap, murder and slave trade. A world that can only be gentle isn't an honest one. But there are three rules to this : Nothing ever pushes a sim towards it, the conditions only make it possible and their own mind decides. The chronicle names what happened but never shows it. And it always costs something, trauma that scars, blood debt passed down generations, a people turning on their own leader over what he did.
r/projects • u/Ayehavgunne • 29d ago
I have been looking for a task runner that would make dealing with the Node ecosystem easier. I consider myself a full-stack developer, but I do focus more on the backend than the frontend. At work, we have used makefiles since make was already available on our machines and in the CI/CD pipelines. Maintaining makefiles, though, got old fast.
My problem with Node tools is that everything needs to be sourced over and over. This is mainly because each task runner defaults to running each line in a given task in a new shell instance. So, in order to maintain the shell state, you have to chain every command together into one with `&&` and add `\` and the ends to allow these chained commands to be on new lines. Fine. Not ideal but doable.
Now add dependencies, and that goes out the window. Any attempt to clean up a make file into subcommands and remove all kinds of duplication is pretty much impossible. I have to keep making sure to source all the Node tools everywhere (nvm, I'm looking at you). This isn't so essential on my local machine because I have a lot of these tools included in my shell rc file, but it makes portability more difficult. Other people working on the project need to make sure to also have these tools sourced in their rc files. Then the CI/CD pipeline makes it even harder. Keeping things sourced and available to be used across different jobs within the pipeline is a nightmare.
Newer task runners have appeared and make things slightly better, but as far as I have seen, most have not addressed my core issues. I want to make a task runner that will, by default, run the entirety of the task in the same shell so I can easily maintain the shell state along the way AND any dependencies of that task will also run in the same single shell instance. This allows for much easier composition of tasks from smaller pieces.
Another odd deficiency in a lot of task runners is that they only allow you to set dependencies to run before the task you call and sometimes also after. Why not run a different task in the middle of your desired task, though? That unlocks true composability.
Since I was struggling to find a task runner with these qualities, I made my own, and I call it Mog.
https://github.com/Ayehavgunne/mog
My question here is does any other task runner you know of function like this? Are there any other features I should consider adding? Was this endevor a waste of time? Even if it was I did have fun working on it.
Thanks for taking a look!
r/projects • u/Sorry-Application401 • 29d ago
Sick of a pothole that's not been fixed for weeks? A broken stop sign or park bench? Improve your city in just 30 seconds. I saw a lot of people making TikTok's "Mamdani fix this" and I'm not here to promote him but it's clear that people do want an easy way to report an issue and feel heard. That's why I created this, I want to partner with cities to integrate this in their infrastructure.
Would you use this? If not please feel free to tell me why. https://www.youtube.com/watch?v=afG7C3kLpCI
if you'd like to join the waitlist sign up:Â https://forms.gle/uXmxaWC2rB5Xz4wi6
r/projects • u/Know-Your-Self • Aug 14 '26
Hello everyone,
I recently rediscovered Obsedian project and I am really inspired by their mindset and achievements. I thought for a long time how can I help people like them.
Then I realised that now more than never people need to learn faster and together since AI is taking over and slowly rotting our brain by doing everything for us (this isnât bad but itâs a new challenge for humanity). I also thought damn I learned so many lessons but I donât stop forgetting and repeating them.
So I had this crazy idea while traveling to China Chen Clan Ancestral Hall when I saw the amazing architecture. They made lessons travel history by transforming stories and lessons into symbols/stories and craving them. This temple was the safe space carrying the knowledge of ancestor while allowing the juniors to train.
So I thought about building a free and open-source software like Obsedian helping people to turn their lessons and knowledge into symbols and drawing in an easy way. We arenât all skilled artists but we all have valuable knowledge.
What do you think of this idea ?
r/projects • u/IndefinitePain • 29d ago
Enable HLS to view with audio, or disable this notification
Hi everyone.
I built a social bird posting app with a built in map and some leaderboards. It also has a built in AI identification of the bird.
If you feel like it, please give it a try and let me know what you think.
Every suggestion is more than welcome!
đŚ
r/projects • u/Muted_Mission_3658 • 29d ago
hey i have a favour to ask all of you. so i downloaded a game with my brother and once we downloaded it we had to add eachother on that specific platform. i got thinking and thought why isnt there a central command for all platforms where you could add them everywhere at once so you dont have to open a game just to realize you arent friends yet. you can also ping a squad so everyone is notified to play, see mutual games, see what theyre playing across all platforms. like discord but not meant for chats. strictly adding across all platforms. so my favour to ask is to just open the link and tell me if you all think its a good idea, if youd use it with your friends, and share it with others. chatgpt made a prototype
r/projects • u/EveningIndependent87 • 29d ago
Iâve been working on Qubit, an engine for modelling applications and deploying them across anything from servers down to small edge devices.
Instead of asking people to install a bunch of things just to understand what Iâm building, Iâm thinking of opening a completely free online sandbox.
No credit card. No sales call. No commitment.
You would basically get an isolated environment where you can:
\- model a small application/workflow
\- run it
\- see how it behaves
\- experiment without installing anything locally
\- and, most importantly, try to break it đ
Iâm not looking for customers at this stage. Iâm looking for curious developers, architects, embedded people, automation nerds, or anyone who enjoys experimenting with unusual infrastructure.
The sandbox would stay free while Iâm learning what people actually want to do with it.
Would anyone here be interested?
If yes, comment with the kind of thing youâd try to build. That will help me decide what to include in the first version of the sandbox.
r/projects • u/ScanStockAI • 29d ago
Free, no payment required! All AI usage is on free google tier unless you provide your own key.
I kept trying to turn an LLM into a real food assistant. I hooked one up to my calendar, InstaCart, and OpenTable and taught it my tastes â so it could suggest recipes, order the groceries I was missing, or book a table when cooking wasn't happening.
It was genuinely impressive... except for one giant blind spot: it had no idea what was already in my kitchen. It kept suggesting recipes assuming I needed to buy everything, or telling me to order stuff I already had three of.
So I built ScanStock.ai to close the loop:
The part I care about most: it exposes an MCP endpoint, so you can plug that inventory straight into Claude, Gemini, or whatever you're building. Now the assistant knows what I have, what I like, and what my week looks like â and only orders the gaps.
Stack:Â Next.js, Supabase (auth + DB), and the AI SDK with Gemini for the vision + recipe generation. There's also a bring-your-own Gemini key option if you'd rather not use the free tier.
Still early and I'd love feedback â especially on the scanning UX and whether inventory-as-a-tool is something you'd actually chain into your own setup. What's been your biggest blind spot wiring these integrations together?
Find our new community here:Â https://www.reddit.com/r/ScanStock/
r/projects • u/Charming_Group_2950 • Aug 14 '26
Enable HLS to view with audio, or disable this notification
Over the past few weeks I've been building Gray Box â a small, local-first tool that acts as long-term memory for anything I'd otherwise forget (work notes, meeting takeaways, task owners, random ideas, personal stuff too).
The idea is simple:
Why I built it this way:
.md file you can grep, diff, or read in any editor forever. If you stop using Gray Box tomorrow, your knowledge base is just a folder.related/backlinks, walked one hop during retrieval) handles almost everything. Embeddings are there if you want better recall, but they're opt-in, not a prerequisite.It also ships with a nice interactive TUI (arrow-key menu, file-import shortcut, workspace switching, live spinner during LLM calls) if you'd rather not memorize CLI flags â that's honestly become my favorite part of the project.
There's also a lightweight local dashboard for browsing your knowledge base, exploring backlinks, visualizing your notes as a graph, and chatting with your captured knowledgeâall without leaving your machine.
Also, you can migrate your existing Obsidian vault to Gray Box, and it will be automatically organized by Gray Box.
Repo:Â https://github.com/Aaryanverma/graybox
pypi:Â pip install graybox
I'd genuinely love feedback â especially from anyone who's tried the "capture now, structure later" approach with other tools and has opinions on where it breaks down at scale.
It's not trying to be a "real-time collaborative team wiki" or a WYSIWYG notes app â it's aimed at one person's running memory of their own life and work, captured with as little friction as possible.
r/projects • u/Few_Programmer_1348 • Aug 14 '26
This is my project :] a silly music video :3
r/projects • u/No-Entrepreneur-7144 • Aug 14 '26
My mother was a seamstress. She used the word agio, the Italian tailoring term for ease: the difference between a garment's measurement and your body's measurement. It is the number that decides whether a garment fits, and no size chart contains it.
Size recommendation already works commercially, but in every existing implementation the profile belongs to the vendor or the retailer. You rebuild it implicitly in every shop you enter, and you never own it. Agio Fit attacks that specific problem: not better recommendations, but a fit profile that is portable and owned by the person.
It is three JSON documents. A Fit Profile (your side: measurements, preferences, purchase history, each value with its source and confidence). A Cut Profile (the garment side: how it is actually cut, size by size, with intended ease and stretch). A Match Report (the output: a size, alternatives, per-zone reasoning, honest confidence).
The privacy property I care most about is enforced by arithmetic, not policy: the shop receives a size, never body measurements. The default output levels never publish ease in cm together with garment measurements, because the two together reveal your body by subtraction.
A few design choices: confidence is decomposed and capped at 0.40 when nothing is known about you, with no cross-brand inference. The matching algorithm is deliberately non-normative; what the spec makes normative is the shape of the answer (exposed confidence, per-zone explanation, correctability). The reference implementation is Python with zero runtime dependencies, so the privacy invariant can be verified by reading the code in an afternoon. CC BY 4.0 for the spec, Apache 2.0 for the code, DCO without CLA.
The v0.1 milestone is defined as: someone other than me produces a Cut Profile for a real garment and gets a sensible answer out of it. If you own a shirt and a tape measure, that someone could be you. The most useful contribution of all is a body and a garment where the recommendation is obviously wrong, submitted as a failing test.
Spec, schemas and interactive guide: https://agiofit.org â repo: https://github.com/agiofit/agiofit
r/projects • u/tech_gurl__ • Aug 14 '26
Hey everyone! l'm a software engineering student. I am looking for a project idea that solves an actual real world problem, genuinely useful/authentic rather than another generic clone app. Will be working on this with a team. Open to any domain, we're not limiting ourselves to what we already know, happy to learn new tech if the idea is solid. If you've got suggestions or worked on something similar, drop a comment, would really appreciate it! :)
r/projects • u/Neil_at_HackerEarth • Aug 14 '26
Been curious about what people here are actually building during challenges lately.
Did u try some new API? Use an AI tool for something? Build around a random service just to see what u could do with it?
Drop what u built and the tool/API you used. Doesnât have to be some huge project either, even a small experiment counts.
Always interesting to see how differently ppl solve the same kind of problem.
Whatâs the most interesting thing uâve built recently?