I’m a beginner and really liked this ideas the problem is that i don’t know which programming language do i need to achieve one of them!! Can anyone help me with that? Maybe the ToDoapp😢
One upped the calculator before when I was learning JS. Instead of showing the chars, I form a segmented display, and show and hided segments depending on the the values needed to display. Really fun
When you write your own password manager, you can write your own encryption algorithm. NIST has published a standard for AES and then you'll know it works right. Alternatively, you can use the library to that links to the included with circuits on the x86 CPU.
Dude, you've nailed it :D I've been working as a programmer for many years but never had any idea for my own project. I'll definitely build the recipe app, daily journal app and quote generator. Then, I'll build a portfolio app. Thanks :D
@@somemysteriousguy7114 You can ask ChatGPT for guidance. Usually it drops keywords that you can search to get a better understanding. Of course, blog posts and TH-cam videos help too. I guess the most important part is to find libraries that make your life easier so you don't reinvent the wheel.
I learned programming specifically because I wanted to make mods for Minecraft with Java. I want to try doing some other things that give me more experience with doing things myself instead of just extending or modifying stuff, but I never know what the heck to even work on. One time I was making a mod and I needed to basically copy a butt load of json files and just change some very small things in the names and file's contents, so I made a little program using java that takes in a directory, a search word, and a replacement word, and it searches every file in the directory, checks if it's a json file, if so, copies all of them, renames the copies to replace the provided search word with the replace word, but only if it's in a specific area in the file name, and then, if that succeeds, does the same for the file contents. That really helped me learn about manipulating and editing strings. That, and file management. But it's not often that I actually am in a situation where I need something like that for a practical use.
It's hard to get motivated to create these when I know there's existing products that can do it better, even though I know I will benefit a lot from creating them.
I already created a lot of these. (I think most people, too) Some enhancements people can add Discord bot, make users able to play a community based game Calculator that solves calculus, I mean algebra. Other ideas that might or might not have been mentioned yet Meme generator File Converter Slideshow? Or presenter? Color Picker? Your own browser extension? It doesn't need to be complex. Intellisense? And much more
Webscrape from an srd, and make a roll20/D&D Beyond free alternative. Writing this down for myself. Projects listed here should be sufficient to make this. Will help when I don't know what to specifically make with the prompts.
For the game part you can use phaser 3 who is a framework allowing us to create game in 2D with good sprite handle, accessibility with objects and properties
Regular calculator might be boring - but what about a calculator that is able to accept large sequences with multiple operators [e.g. (2 + 7) * 2 - 3 = ] , and allow users to define their own variables, storing the calculated values? Nothing like a good recursive algorithm to implement the order of operations ;)
Hi Lewis ! I really enjoyed your videos . I wanted to hear your opinion about how ease of involvement in the development of Near Protocol. I think it would be interesting to hear your thoughts on how accessible the development process is for newcomers and what steps can be taken to make it more inclusive.
12:53 Actually a way faster and probably accurate measure would be count the number of characters and divide it by 5 to get words per minute in a 60 sec test.
Apart from your amazing content, I really appreciate edits on your videos. If possible, could you also guide about how you do it? It really makes fun to watch and helps us to comprehend the context. o7
emm... I think URL shortener is really simple but is really good for beginner as a learning method. I did that in like an hour or less several years ago. With python and sqlite u can do it really fast.
Holy shit, I wanted to watch the video to get better at coding, but turns out im doing exactly that for work atm, tha mood tracker, deploying itn mongodb using angular 17. Juts started this june with coding :)
For the URL shortener you can really fall down the rabbit hole with Bloom filters and other weird stuff. You need a quick way to determine whether the URL is already there and a simple SELECT won't scale if you have millions in there. And no mere mortal should ever attempt to roll their own crypto. That's just pleading for trouble and will end in floods of tears - things like AES exist for a reason.
It's funny that my project right now is to make a social media platform. And I only know few things in HTML, CSS & JS and trying to use React with zero knowledge. I'm just furious on tutorial hell so jumping to projects is the only i think that work for me lol
Since am studying networking am thinking all the time of making a chat app that works over specific network this means not necessary to have internet but can be setup to work locally
@@CodingWithLewis than what do you think about mine project I was gonna soon release video to my channel it's just an better transformer Archetexture which can easily go at 90% accuracy gernal and it's kinda hard Creating the algorithm on Miro because it's easy and I've got 100 + algorithms in it hopefully it works
0:29: 💡 This video provides 21 project ideas for beginners, including a to-do app and an expense tracker. 6:40: 🔑 One Password is a sponsor of the video and offers free access to students for a year, with tools for securely managing credentials and developer workflows. 9:50: 💡 Create a quote generator that generates images with random quotes and a Discord bot using the Discord API. 12:51: 📝 The video discusses creating an app to measure typing speed and using Open AI API to create a chatbot. Recap by Tammy AI
please don't trust someone else to maintain your passwords a secret. use any of the open source self-hosted solutions please. And if you are crazy, write your own(PLEASE DON'T USE IT ON PROD)
I'm now making a chat appliaction almost 9 months, at first three I was decide that I will use python, firebase / pyrebase4 and tkinter for few months I was working non stop on this project and now from three to four months I don't have motivation to close this project. even that, I decide to make version 2.0 in future with sending video and audio and mobile support for that I will change gui liblary from tkinter to flet ( flutter port for python )
@@CodingWithLewis The problem is that the "keyboard" library needs root access on Linux, and other libraries are limited to keys like Ctrl, Tab, and so on. The best one is the Pygame event loop. But it cannot do that without creating a window. I even tried multithreading, but the result was a cluttered terminal. I appreciate you taking the time to answer my question. I did ask on Reddit, but they didn't help me much.
Ok… so unity MIGHT not be a good option anymore lmfao
Only if your game made more than 200K $, so usual users should not be worried
p.s. Guys, please read the info
p.p.s. If i'm not right, tell me :D
more then 100k@@TrioGamesStudio
@@ΙΜΜυΝΙΤΥ$200k
Hence why I'm here. Trying to learn C++ to make my own game engine. Wanted to anyway, and this gave me the push I needed!
100k dollars revenue plus 100k in plays@@rmt3589
1. ToDoApp
2. Expense Tracker
3. Personal Portfolio
4. Daily Journal Emailer
5. FlashCard Apps
6. URL shortener
7. Pomodoro Timer
8. Receipe Finder
9. Password Manager
10. Chat Application
11. Calculator
12. Quote Generator
13. Discord Bot
14. Make a Video Game
15. Web Scraper
16. RNG Website
17. Typing speed test
18. ChatGPT Clone
19. Virtual Tamagotchi
18. Visualize a Dataset
19. Yard Sale Flipperr
Oh thanks.
I’m a beginner and really liked this ideas the problem is that i don’t know which programming language do i need to achieve one of them!! Can anyone help me with that? Maybe the ToDoapp😢
I'll help broooooooo
time stamps: am I a joke to you?
for the most part it doesn't matter what programming language you use @@ana12432
Really, to be honest, this is one of the hardest parts of programming, finally Lewis made another video for this too!
What programming project are you working on? :) I am thinking about making a project for my next video!
Flutter
news aggregator
Good idea👍
Django project please🙏
@@christiannwachukwu8709 Lol, I've done that in django...
I forgot what it is actually called, it is the control that appears when you type something.
One upped the calculator before when I was learning JS. Instead of showing the chars, I form a segmented display, and show and hided segments depending on the the values needed to display. Really fun
THANK YOU THANK YOU THANK YOU! I I was out of ideas XD Love you Lewis We all love you for the really good quality content!! Specially the animation!
This channel and low level programming channel are the two best channels Thank you so much for Your work Lewis You are Awesome :)
One of my fave channels! Honoured to be compared :D
When you write your own password manager, you can write your own encryption algorithm. NIST has published a standard for AES and then you'll know it works right. Alternatively, you can use the library to that links to the included with circuits on the x86 CPU.
You've been a great help to me in my college journey! Thanks man!
Dude, you've nailed it :D I've been working as a programmer for many years but never had any idea for my own project. I'll definitely build the recipe app, daily journal app and quote generator. Then, I'll build a portfolio app. Thanks :D
as someone who is new to programming, how do you know what to do on these projects? do you use tutorials?
@@somemysteriousguy7114 You can ask ChatGPT for guidance. Usually it drops keywords that you can search to get a better understanding. Of course, blog posts and TH-cam videos help too. I guess the most important part is to find libraries that make your life easier so you don't reinvent the wheel.
I learned programming specifically because I wanted to make mods for Minecraft with Java. I want to try doing some other things that give me more experience with doing things myself instead of just extending or modifying stuff, but I never know what the heck to even work on. One time I was making a mod and I needed to basically copy a butt load of json files and just change some very small things in the names and file's contents, so I made a little program using java that takes in a directory, a search word, and a replacement word, and it searches every file in the directory, checks if it's a json file, if so, copies all of them, renames the copies to replace the provided search word with the replace word, but only if it's in a specific area in the file name, and then, if that succeeds, does the same for the file contents. That really helped me learn about manipulating and editing strings. That, and file management. But it's not often that I actually am in a situation where I need something like that for a practical use.
It's hard to get motivated to create these when I know there's existing products that can do it better, even though I know I will benefit a lot from creating them.
true that’s how I feel too sometimes
Thanks for being such a genuine individual
This is the best video of the moths on TH-cam. the part of learning where we all struggle with!!!! thanks dude
If you wanna become a master programmer, build them all.
I am making a compiler. :)
In Which language you are writing compiler
@@nnkbrain I am writing the compiler for my language called Noxl, and I am making the initial pre-bootstrap compiler in Rust.
@@oglothenerdcool I am building my own compiler too tho I am building it for c in c 😅
@@FilipNachov Lol. Nice. :D
How is the progress 😊
I already created a lot of these. (I think most people, too)
Some enhancements people can add
Discord bot, make users able to play a community based game
Calculator that solves calculus, I mean algebra.
Other ideas that might or might not have been mentioned yet
Meme generator
File Converter
Slideshow? Or presenter?
Color Picker?
Your own browser extension? It doesn't need to be complex.
Intellisense?
And much more
Your videos are the best man, really. Thank you for the ideas
really cool project ideas. Thank you!! you helped me a lot
It’s crazy how much software has developed.
Webscrape from an srd, and make a roll20/D&D Beyond free alternative.
Writing this down for myself. Projects listed here should be sufficient to make this. Will help when I don't know what to specifically make with the prompts.
Hey man, I really liked your cameo in the first scene of Loudermilk S02E01, it was hilarious!
You can significantly spice up the URL shortener combining Redis with a disk DB!
You’re a better dev than me!
@@CodingWithLewisthat's a compliment you will never forget. Lewis is truly a awesome developer
@@CodingWithLewis definitely not! 😅
Can you explain more ?
Thank you so much i got inspired to learn more in web dev :)
Just finished Learning Python. Today is my lucky day
Just what I have been looking for
Awesome :D
For the game part you can use phaser 3 who is a framework allowing us to create game in 2D with good sprite handle, accessibility with objects and properties
Regular calculator might be boring - but what about a calculator that is able to accept large sequences with multiple operators [e.g. (2 + 7) * 2 - 3 = ] , and allow users to define their own variables, storing the calculated values? Nothing like a good recursive algorithm to implement the order of operations ;)
Hi Lewis ! I really enjoyed your videos . I wanted to hear your opinion about how ease of involvement in the development of Near Protocol.
I think it would be interesting to hear your thoughts on how accessible the development process is for newcomers and what steps can be taken to make it more inclusive.
12:53 Actually a way faster and probably accurate measure would be count the number of characters and divide it by 5 to get words per minute in a 60 sec test.
Apart from your amazing content, I really appreciate edits on your videos. If possible, could you also guide about how you do it? It really makes fun to watch and helps us to comprehend the context. o7
can you make a video on machine learning and artificial intelligence?
You the best at your job brother
I disliked your videos until this one. The breakdowns are genius, good job.
Love your content, thanks !
Hey, what's your take on simple web extension? I think that this might be a good one for beginners :)
Great 😃 👍 idea
that's exactly what i thought
what do you mean?
Excellent video!
Thanks Lewis!
emm... I think URL shortener is really simple but is really good for beginner as a learning method. I did that in like an hour or less several years ago. With python and sqlite u can do it really fast.
Holy shit, I wanted to watch the video to get better at coding, but turns out im doing exactly that for work atm, tha mood tracker, deploying itn mongodb using angular 17.
Juts started this june with coding :)
I feel so overwhelmed whenever i try to a make a project 😢💔
oh lewis i love those kinds of videos
Thanks for your Valuable content
No way you just roasted the to-do app I made for school. It was the most advanced piece of java in my class😔
For the URL shortener you can really fall down the rabbit hole with Bloom filters and other weird stuff. You need a quick way to determine whether the URL is already there and a simple SELECT won't scale if you have millions in there.
And no mere mortal should ever attempt to roll their own crypto. That's just pleading for trouble and will end in floods of tears - things like AES exist for a reason.
I love your videos, keep it up! 🤩
Great Video Congrats on the Wedding too..
love you man
Hey, man, mind if you make a "project ideas for advanced developers" video?
It's funny that my project right now is to make a social media platform. And I only know few things in HTML, CSS & JS and trying to use React with zero knowledge. I'm just furious on tutorial hell so jumping to projects is the only i think that work for me lol
Yesss! I've been waiting for some project ideas thanks!
thankyou lewis! ❤
I am making a compiler from scratch, no llvm and making the ir for the different architectures and assembly requred myself
Recently created a notes app. But I would give it like 🌟🌟 stars considering how easy you can complicate things😅
Thanks so much Lewis
I’m working with Swift developing an APP to manage floppy disk. There are no other competitive apps for this idea.
Here's an idea video editor UI, like TH-cam studio has to trim video cut, blur oval and box....
You trying to automate me!? 🥲
this video is genius appricate it ❤
Thanks for providing good content for free! I hope you reach 1 million subs next year!
Hello, how do you feel about blockchain projects?
how do you edit so good?!
3:09 "key palue vair" 💀
When you really know how to program, the problem is that you have to many ideas and you need to choose
这些project真要都做完了,我这大学就不用上了,直接去就业lol
Amazin. Thank You Sir.
0
can you suggest me a good tutorial for the chat gpt clone project?
Since am studying networking am thinking all the time of making a chat app that works over specific network this means not necessary to have internet but can be setup to work locally
I use c++, whats a good library to make GUI Applications?
Thank you
14:22 "until, well, it dies." 😂😂😂
Keep going I really appreciate
Quick question, should i learn Kotlin as my first language?
4:56 Wtf your fridge is full of Russian food lol
This was epic
Come on you forgot that hardest one
Create an advanced Transformer AI that reliys on no library and is writen in assembly or C 😅
That’s too simple of a project
@@CodingWithLewis than what do you think about mine project I was gonna soon release video to my channel it's just an better transformer Archetexture which can easily go at 90% accuracy gernal and it's kinda hard Creating the algorithm on Miro because it's easy and I've got 100 + algorithms in it hopefully it works
Lewis i need an advice iam doing my BE in AIML, but i also doing Android development since 2years should i continue to build Android apps?
Very gooddd
How about C++ with opengl for creating games?
Why not, atleast if you plan to be a game dev
bro what if i literally only have experience writing java in an ide help
0:29: 💡 This video provides 21 project ideas for beginners, including a to-do app and an expense tracker.
6:40: 🔑 One Password is a sponsor of the video and offers free access to students for a year, with tools for securely managing credentials and developer workflows.
9:50: 💡 Create a quote generator that generates images with random quotes and a Discord bot using the Discord API.
12:51: 📝 The video discusses creating an app to measure typing speed and using Open AI API to create a chatbot.
Recap by Tammy AI
Hello again
Hello there
If I do all those things I'm gonna be great dev
please don't trust someone else to maintain your passwords a secret. use any of the open source self-hosted solutions please. And if you are crazy, write your own(PLEASE DON'T USE IT ON PROD)
when i say beginner i think about someone who just finished a lesson with loops...
Am I the only person who thinks lewis resembles Clement Mihaelescu?
Wow, thanks
Not having task(s) to work on can make a programmer grow very lazy
I have build a full nodejs npm package name as mhtm
Why not a matrics solving app with step by step without AI
Why do you keep saying "again" the first time you mention something?
could you pls share with us cyber security projects
I'm now making a chat appliaction almost 9 months, at first three I was decide that I will use python, firebase / pyrebase4 and tkinter for few months I was working non stop on this project and now from three to four months I don't have motivation to close this project. even that, I decide to make version 2.0 in future with sending video and audio and mobile support for that I will change gui liblary from tkinter to flet ( flutter port for python )
What's awesome is that you don't need to wish for a new feature in an app! You just create it! Props :)
for pomodoro cli, how can i prompt user for pause while constantly printing remaining time + progress bar on screen? (im using python)
Probably listening for a key press! (Specific key)
@@CodingWithLewis The problem is that the "keyboard" library needs root access on Linux, and other libraries are limited to keys like Ctrl, Tab, and so on. The best one is the Pygame event loop. But it cannot do that without creating a window.
I even tried multithreading, but the result was a cluttered terminal.
I appreciate you taking the time to answer my question. I did ask on Reddit, but they didn't help me much.
@@CleverBoy0098 getpass? with threading
Yo
what is cron
wordpress / ghost or.... astrojs
just came out as I finished this! lol
hahaha@@CodingWithLewis
Good
3:09 what is a key palue vair
Lets goo
My friends create a chatgpt , he have your hone api
Yooo....that url tho😂😂😂