Build Anything with OpenAI o1, Here’s How

  Рет қаралды 143,604

David Ondrej

David Ondrej

Күн бұрын

Start making money with AI: www.skool.com/...
Follow me on Instagram - / thedavit
Follow me on Twitter - x.com/DavidOnd...
Please Subscribe.
I'M HIRING A VIDEO EDITOR! Apply here: forms.gle/VS6g...
Credits: ‪@OpenAI‬
OpenRouter: openrouter.ai/...
Learn how to use the new OpenAI o1 model and build anything with it.

Пікірлер: 204
@DavidOndrej
@DavidOndrej 28 күн бұрын
🔥 Start making money with AI: www.skool.com/new-society
@ASYRAFAZMI-b9f
@ASYRAFAZMI-b9f 28 күн бұрын
DAVID CAN YOU PLEASE SHARE YOUR VIEW ON REPLIT AGENT PLEASE
@catsanzsh
@catsanzsh 19 күн бұрын
## to prove it im a kid out of highschool but no job source now we can. make triple a games ! HAH import pygame import random import socket import threading import pickle import miniupnpc # Initialize Pygame pygame.init() # Screen dimensions WIDTH, HEIGHT = 800, 600 screen = pygame.display.set_mode((WIDTH, HEIGHT)) pygame.display.set_caption("Club Pokémon") # Define colors BLACK = (0, 0, 0) LIGHT_GREEN = (0, 255, 0) WHITE = (255, 255, 255) GRAY = (150, 150, 150) # Tile size TILE_SIZE = 64 # Sample tile map tile_map = [ [0, 0, 0, 0, 0, 0, 0, 0, 1, 1], [0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], ] # Player class class Player: def __init__(self, x, y): self.x = x self.y = y def move(self, dx, dy): self.x += dx self.y += dy def serialize(self): return (self.x, self.y) @staticmethod def deserialize(data): x, y = data return Player(x, y) # Networking setup players = {} def server_thread(): server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) server_socket.bind(('0.0.0.0', 12345)) # Bind to all interfaces server_socket.listen(5) while True: client_socket, addr = server_socket.accept() print(f"Connection from {addr}") players[addr] = Player(1 * TILE_SIZE, 1 * TILE_SIZE) threading.Thread(target=client_handler, args=(client_socket, addr)).start() def client_handler(client_socket, addr): while True: try: data = client_socket.recv(1024) if not data: break # Update player position based on received data players[addr] = Player.deserialize(pickle.loads(data)) # Broadcast player positions to all clients positions = {addr: player.serialize() for addr, player in players.items()} for player_addr in players.keys(): player_socket = players[player_addr].client_socket player_socket.send(pickle.dumps(positions)) except Exception as e: print(f"Connection error: {e}") break client_socket.close() del players[addr] def draw_overworld(): # Draw the overworld for row_index, row in enumerate(tile_map): for col_index, tile in enumerate(row): color = WHITE if tile == 0 else GRAY pygame.draw.rect(screen, color, (col_index * TILE_SIZE, row_index * TILE_SIZE, TILE_SIZE, TILE_SIZE)) def draw_menu(): screen.fill(BLACK) font = pygame.font.Font(None, 48) title = font.render("Club Pokémon", True, WHITE) subtitle = font.render("Press H to Host or J to Join a Server", True, WHITE) screen.blit(title, (WIDTH // 2 - title.get_width() // 2, HEIGHT // 2 - 50)) screen.blit(subtitle, (WIDTH // 2 - subtitle.get_width() // 2, HEIGHT // 2 + 10)) # Host button host_button = pygame.Rect(WIDTH // 2 - 100, HEIGHT // 2 + 60, 200, 50) pygame.draw.rect(screen, LIGHT_GREEN, host_button) button_text = font.render("Host Server", True, BLACK) screen.blit(button_text, (host_button.x + (host_button.width - button_text.get_width()) // 2, host_button.y + (host_button.height - button_text.get_height()) // 2)) return host_button def automatic_port_forward(): try: upnp = miniupnpc.UPnP() upnp.discoverdelay = 200 upnp.discover() upnp.selectigd() external_ip = upnp.externalipaddress() print(f"External IP: {external_ip}") port = 12345 upnp.addportmapping(port, 'TCP', upnp.lanaddr, port, 'Club Pokémon', '', 0) print(f"Port {port} forwarded") except Exception as e: print(f"Port forwarding failed: {e}") def main(): running = True server_running = False player = Player(1 * TILE_SIZE, 1 * TILE_SIZE) while running: host_button = draw_menu() # Draw the main menu for event in pygame.event.get(): if event.type == pygame.QUIT: running = False if event.type == pygame.MOUSEBUTTONDOWN: if event.button == 1: # Left mouse button if host_button.collidepoint(event.pos) and not server_running: server_running = True threading.Thread(target=server_thread, daemon=True).start() print("Hosting server...") automatic_port_forward() # Attempt port forwarding if event.type == pygame.KEYDOWN: if event.key == pygame.K_j: print("Joining server...") # Placeholder for joining logic if server_running: draw_overworld() # Draw the overworld pygame.draw.rect(screen, LIGHT_GREEN, (player.x, player.y, TILE_SIZE, TILE_SIZE)) # Draw other players for addr, p in players.items(): if addr != 'localhost': pygame.draw.rect(screen, WHITE, (p.x, p.y, TILE_SIZE, TILE_SIZE)) pygame.display.flip() pygame.quit() if __name__ == "__main__": main()
@oy3ah2025
@oy3ah2025 8 күн бұрын
⭐⭐⭐⭐⭐: 2025 📈
@gabrielmestre3623
@gabrielmestre3623 27 күн бұрын
I think OpenAI is still holding back something much bigger than the model they just released. In my opinion, they are about a year or more ahead of the competition, as they have only recently reached the performance level of GPT-4. Knowing this, they are not at all concerned about releasing new models or features anytime soon. They launched an "Omni" model to surpass the competition. The competition managed to catch up with that model, and now they've launched a reasoning model. But none of this would scare someone working inside OpenAI on a daily basis, as they were already aware of these advances and knew this would happen. Now, combining: 1. Agents (a base already launched in GPTs), 2. A multimodal model with audio, image, and video, 3. A reasoning model, 4. Long-term memory and planning, All of this together in a single model, which I believe could be a GPT Next, a full Orion, or whatever name they choose to give it. That, indeed, would be something that could surprise someone like Ilya.
@sushi2721
@sushi2721 26 күн бұрын
whos llya?
@beanie741
@beanie741 15 күн бұрын
@@sushi2721 Ilya Sutskever, OpenAi cofounder and previous head of safety(?). The theory on the internet is that he left (literally the day before 4o was released) the company after failing to oust Sam.
@croci81
@croci81 25 күн бұрын
GPT-4o can help with pre-planning and allow you to create a solid prompt before using the o1 model. This way, you can save some of your weekly query cap. If you have experience as a developer and enjoy learning by doing, you can use AI to handle boring tasks like boilerplate code, time-consuming processes, and problem-solving. Often, it's important to understand how your program works, especially if it's not your solo project... it's hard to put your name on something if you don’t fully grasp how it works. But it's totally fine to experiment with AI while working on your own projects and learn on the way.
@heartsfear9216
@heartsfear9216 21 күн бұрын
Dont tell me what to do
@thodorisevangelakos
@thodorisevangelakos 20 күн бұрын
o1 API is only available to tier 4 and above I believe
@scriptod91
@scriptod91 19 күн бұрын
hey btw its no longer weekly, its daily
@thodorisevangelakos
@thodorisevangelakos 19 күн бұрын
@@scriptod91 15 and 50 prompts per day?
@iamyers02
@iamyers02 28 күн бұрын
I want to thank you David for taking time out of your day to make this informative and educational video. Not many people nowadays share their knowledge with others, but you do!
@quaziz
@quaziz 24 күн бұрын
Isn’t that what KZbin is for?
@S77b7
@S77b7 15 күн бұрын
@@quaziz sadly 90% is complete bullshit content
@quaziz
@quaziz 24 күн бұрын
I am a seasoned developer and I can tell you that it’s probably much easier to create small non-complex apps and games without any experience with these models. But when it comes to real world problem solving, I’m still sceptical. Will try it out tonight tho
@nikolaizaicev9297
@nikolaizaicev9297 23 күн бұрын
It can not create complex apps, it will start to halucinate and make errors, and it is very bad at finding its own problems, etc. For example, if you try to ask it to create a simple data editor with a spreadsheet, it will fail. But, if you ask to do it one thing at a time, it can do it, like, instead of asking to write the complete code for the editor at one, ask first to create a window with ribon ui, then add button, then add functionality to them, etc. Not realy meaningful for someone who can program, but for people without programming skilss like me, it can be useful. I need it mainly for some libs in Python to implement GUI's for them, not for commercial purpose etc.
@quaziz
@quaziz 23 күн бұрын
​@@nikolaizaicev9297Just like The old models then 😊​
@PrabhavFulara
@PrabhavFulara 17 күн бұрын
Absolutely , not even a functional website...bugs bugs​@@nikolaizaicev9297
@ignaciosavi7739
@ignaciosavi7739 12 күн бұрын
Look. as a fellow dev, i can tell you that if you hold the AI´s hand. it will also hold yours. all my work now is beeing done by AI. but i have to explain and outline the problems and potential solutions in order to prompt it to be effective. AI alone is right now not enough for commercial products, and humans alone nowadays are too slow to keep up. Human + AI = Fast delivery of functional applications
@quaziz
@quaziz 12 күн бұрын
@@ignaciosavi7739 very well said! I’m using AI, and have done since about 2020. I was a beta tester for the GPT (model). It can be very helpful, but right now I’m still doing a much better job than the AI, when it comes to complex parts of the application. AI can do generic things quickly, but you have to be the one sewing it together to something useful.
@Crypto.Vantage
@Crypto.Vantage 28 күн бұрын
00:04 Build anything with OpenAI 01 in minutes 01:55 OpenAI's 01 model is versatile and powerful 06:12 Build detailed learning plans with OpenAI o1 08:35 Use simple prompts to conserve OpenAI prompts 13:10 Setting up project and installing necessary libraries for visualization 15:38 Customize app to suit needs 21:13 Your only limitation is your imagination and ambition 23:29 Setting up a new item path in OpenAI o1 30:14 Implement real-time updates for inputs in the application. 34:03 Fixing 'Cannot Find Definitions' Error in TypeScript 40:49 Buying a second CH gbt account is a smart investment 45:00 Implementing and modifying code for neural network component 56:24 Utilizing OpenAI's O1 model for building complex projects. 1:00:10 OpenAI o1 created an amazing model. Crafted by Merlin AI.
@Mosigma-g1y
@Mosigma-g1y 27 күн бұрын
What are u trying to say ?
@tuckerbugeater
@tuckerbugeater 25 күн бұрын
@@Mosigma-g1y What are u trying to say ?
@tomashgrey2211
@tomashgrey2211 22 күн бұрын
So video is about basic promting?
@mrX666-s9p
@mrX666-s9p 28 күн бұрын
Can you build a house ?
@Knifymoloko
@Knifymoloko 28 күн бұрын
If you have you're own android I do t see why not. Like physical robot I mean. I'd imagine creating software for the android to learn how to build a home of you're choosing... Now imagine people coming together with android groups... I can go on but you see where I am getting at? Sharing Android robot resources to be self-sufficient?
@fromnsk
@fromnsk 28 күн бұрын
Sure you can. Just ask o1 how to build a house 😅
@IvanE1990
@IvanE1990 28 күн бұрын
I'm pretty sure it can help you step by step in building a house by yourself. It's helping me step by step in building my business (business plan, strategy, niche, marketing, social media, guidelines, scripts, angles, planes, timeline, data analytics, payments, web tech stack, landing pages, etc.)
@DoNPAULo13
@DoNPAULo13 28 күн бұрын
Can you buy a pizza with Bitcoin?
@Flawless_technique
@Flawless_technique 28 күн бұрын
😂😂
@alex-lk5vm
@alex-lk5vm 14 күн бұрын
Hi David, This is a fantastic video! I really enjoyed watching you code and use the AI assistant for help. It’s also quite helpful to see you type prompts in real-time and repeat the statements as you go-teaching us how to prompt effectively. Thanks again, and I’m eager to see more videos like this. Please keep us updated! :)
@surajshivakumar5124
@surajshivakumar5124 11 күн бұрын
A combination of vercel v0(front end and design) and claude worked really well for me!
@christopher-george
@christopher-george 28 күн бұрын
You are the most excited and on-top-of-news guy I have come across ! Amazing content and solid work ! Keep it up brother !
@SecretProfitsClub
@SecretProfitsClub 25 күн бұрын
bro is always cooked! the news cant keep up to him aha
@____2080_____
@____2080_____ 28 күн бұрын
36:06 we need to have more videos showing the process. Thank you, David, for showing the abs and downs and iterations that this new style of software construction will take. And for those who try to pretend that before this technology that regular programmers did not go through this, you’re talking to a 25 year product manager. Almost all of them went through this. They like to hide it from the outside world.
@zubbyemodi6356
@zubbyemodi6356 27 күн бұрын
That’s my favorite part of this. This is like the first time I’m seeing someone honestly put love the actual process you go through to build something you haven’t built before. People also need to understand it’s not a straight forward as others would make you think. So when people say AI would replace programmers by this evening, they need to realize not everyone will want to do all of this to get a final product.
@JeffRegan-puckishrogue
@JeffRegan-puckishrogue 18 күн бұрын
@@zubbyemodi6356 Fully agree. Helps refine my process.
@Muzan-
@Muzan- 28 күн бұрын
I was waiting for you to publish new video about o1 ! just applied for the video editor position and hope to get a chance to be tested and showcase my skills. I'll reedit this video as a sample and send it to you soon because I'm excited to watch it 😊😊
@expresscrayfish6094
@expresscrayfish6094 27 күн бұрын
i just subscribed, been watching your videos searching ai stuff for ages but just realise every time im looking for useful information on ai you are always the one testing the questions im looking for every time. great stuff dood!!
@abnejne4737
@abnejne4737 27 күн бұрын
No, you can't build anything with this yet. I'm sure the day will eventually come, but as a programmer and game developer who has used these LLMs to definitely improve my workflow, I can tell you that we are still far from being able to have AI do all the work. It still gets a lot wrong, and the relatively small context window also limits its ability to comprehend very large complex codes
@sweetguy2001canada
@sweetguy2001canada 27 күн бұрын
2 years max
@abnejne4737
@abnejne4737 26 күн бұрын
​@@sweetguy2001canada The only real thing that can be said about technology and the future is that it's notoriously hard to predict. Most who have tried have been shown to be wrong. It might happen in a month, or it may take another 100 years.
@nikolaizaicev9297
@nikolaizaicev9297 23 күн бұрын
@@sweetguy2001canada LLM is based on statistics, it takes data and calculates propability distribution, based on it it selects the word, number etc for the output >>>garbage in = garbage out. 1. It is limited to reproducing what already exists, try for example writing code in julia instead of python and see what you will get as an output. 2. It will always make mistakes due to the usage of conditional probabiltiy but not causal inference. Correlation is not equal to causation. So no, not 2 and not even 5 years, we are talking about decades at best. At this moment, they don't do that much to them, they just put in more data, this data increases slightly the precision, because the probabiltiy values for some parts get higher/lower etc, but the point 1 and 2 still remain valid.
@tomashgrey2211
@tomashgrey2211 22 күн бұрын
​@@sweetguy2001canada modern llms tech is probably super close to a plateau or already reached it. What my intuition tells me.
@davidddo
@davidddo 7 күн бұрын
​@@tomashgrey2211o1 literally broke that plateau
@BBadakhshon
@BBadakhshon Күн бұрын
1. you can ask for what tools you need 2. you can ask for the ways and hacks you can use in the programs 3. you can ask for directions, and get help 4. you can ask for tutorials and improvement 5. you can ask for feedback! 6. you can give your code to It, and let it analyze it 7. you can ask for code correction! 8. you can ask it to teach you (oh, why doesn't it work?) or (what did I do wrong were?) or just give your code to it and let it debug it sh*t
@VDIGVIDEOS
@VDIGVIDEOS 28 күн бұрын
Wow this is literally the future love your channel
@j.scottanderson4417
@j.scottanderson4417 26 күн бұрын
Claude combined with 4o1/4o1 mini can be a powerful combination here.
@thibaud57
@thibaud57 21 күн бұрын
You know how to do it? I tried multiple solutions becaude Claude doesnt have Internet connection. But havent found a real proper one except open router who is expensive
@roget718
@roget718 28 күн бұрын
Your worth ethic is insane
@BBadakhshon
@BBadakhshon Күн бұрын
wow, now imagine a world that you can build absolutely anything, with zero experience, and that world is the one we're living in!
@renz164
@renz164 11 сағат бұрын
This will create a generation of bad programmers and applications with security vulnerabilities.
@BBadakhshon
@BBadakhshon 3 сағат бұрын
@@renz164 absolutely, that's why it's a tool for professionals, just for a little help, and that's it, it never meant to replace professionals with someone that just knows to use Ai bots, it's an interesting point
@JeffRegan-puckishrogue
@JeffRegan-puckishrogue 18 күн бұрын
Great content man. @Croci81 has the right path on that. If you build finetune a model for it in the OpenAI-API sandbox, tie it to a java sandbox with your preferred handler (I'm partial to Azure Graph) and the sky is kind of the limit.
@mrd6869
@mrd6869 24 күн бұрын
I used a chain of thought reasoning layer with GPT4o mini and built the same program with all of the steps. Until I see Orion class models Im gonna be skeptical
@fourtwentying4207
@fourtwentying4207 5 күн бұрын
oh ya build a working game of connect 4 in 32- bit MASM assembly language that works for two players. make the board 7X8 and have the game check for wins or draws.
@expresscrayfish6094
@expresscrayfish6094 27 күн бұрын
just an idea, but could you use chat gpt 4o to write your code knowing it wont work fully and put that code into o1 giving it the context for what its supposed to and ask it to fix the code, so you get the search ability of gpt 4o for the most up to date api's and stuff then basically just use the o1 preview for the actual logic in the code also having a mostly written code to work off from gpt 4o? and by most up to date api's for the code i mean for example for making a trading bot you need a few different apis to work together to make it work which gpt 4o seems to struggle with and as o1 doesn't have the search ability to find out the apis needed this might be a good strategy to get the benefits of both in a simple and easy way
@zubbyemodi6356
@zubbyemodi6356 27 күн бұрын
Nice strategy
@tuckercoffey2780
@tuckercoffey2780 28 күн бұрын
I wonder when it’ll be out of preview and to expect the full models & less restrictive usage limits. 30 messages a week isn’t that much.
@tomgreen8246
@tomgreen8246 25 күн бұрын
You can do similar with VS Code and ClaudeDev (OpenRouter o1 integrated)
@SweetChillieBeat
@SweetChillieBeat 28 күн бұрын
You Only get what 30 prompts before you run out and have to wait a whole week before you get access again..
@zubbyemodi6356
@zubbyemodi6356 27 күн бұрын
Seems like he did more than 30 prompts though?
@crioss6803
@crioss6803 26 күн бұрын
Are there any possibility to create program without writing code (like no-code at all)? Like Text-to-program, without the necessity of debug, install libraries etc.? I know there are some no-code frameworks, would be great to connect such tools with chatGpt or something with access to net.
@a31-hq1jk
@a31-hq1jk 19 күн бұрын
not yet but there are definitely working on it
@vladonutueu
@vladonutueu 18 күн бұрын
Try searching for low code / no code platforms. They’re just a Google away.
@mr.delajungle6999
@mr.delajungle6999 21 күн бұрын
Yo man, thanks a lot for the video. Keep it up champ, love ur content in general. Btw, u think o1 can work with web3 dev/programing ?
@masterofkaarsvet
@masterofkaarsvet 7 күн бұрын
Could you share the link to this conversation you had with o1? I would love to have the learning plan it created for you
@DihelsonMendonca
@DihelsonMendonca 28 күн бұрын
💥 If is that so, why not to build an App to android phones like the Google assistant but run by ChatGPT, using a wake word ? When I say "ok, Talita", ChatGPT voice would wake up, and could execute any funcion I dictate ? Like open programs, close, choose a music, have a conversation, choose a music, take care of my finances... Better than Siri or Alexa. Why this is so hard ? 😮😮😮
@romanshar5402
@romanshar5402 28 күн бұрын
You can really do that
@DihelsonMendonca
@DihelsonMendonca 28 күн бұрын
@@romanshar5402 Really ? Why nobody did it before, not even OpenAI had this idea like an assistant, as we have on Apple phones run by AI, or as in the movie HER ? 😮
@DekuParker119
@DekuParker119 28 күн бұрын
iOS will have ChatGPT integrated with Siri soon and Alexa is being integrated with Claude as well, just gotta wait.
@roranj
@roranj 28 күн бұрын
It’s not that easy even with all the ai tools we have. Complex tasks require very precise prompts into the ai to function exactly as intended.
@quaziz
@quaziz 24 күн бұрын
I just realized how unfair KZbin is. 44k views on a video where the creator doesn’t know anything about programming, and my channel Nomadic Geek doesn’t even have that amount on all videos all together 😢
@DavidOndrej
@DavidOndrej 24 күн бұрын
skill issue
@quaziz
@quaziz 24 күн бұрын
Sure, I guess. I think it has to do with the fact that I’m using an ai voice in my tutorials
@vladonutueu
@vladonutueu 18 күн бұрын
Maybe you should stop complaining and start building your channel. Just saying.
@quaziz
@quaziz 18 күн бұрын
@@vladonutueu nah. Dont care anylonger. As I said, just realized.
@quaziz
@quaziz 18 күн бұрын
@@vladonutueu just to clarify, I do not begrudge the creator his success. He does this better than me obviously and he should be rewarded.
@youMEtubeUK
@youMEtubeUK 26 күн бұрын
00:04 Build anything with OpenAI 01 in minutes 01:55 OpenAI's 01 model is versatile and powerful 06:12 Build detailed learning plans with OpenAI o1 08:35 Use simple prompts to conserve OpenAI prompts 13:10 Setting up project and installing necessary libraries for visualization 15:38 Customize app to suit needs 21:13 Your only limitation is your imagination and ambition 23:29 Setting up a new item path in OpenAI o1 30:14 Implement real-time updates for inputs in the application. 34:03 Fixing 'Cannot Find Definitions' Error in TypeScript 40:49 Buying a second CH gbt account is a smart investment 45:00 Implementing and modifying code for neural network component 56:24 Utilizing OpenAI's O1 model for building complex projects. 1:00:10 OpenAI o1 created an amazing model.
@badashphilosophy9533
@badashphilosophy9533 19 күн бұрын
Someone should use o1 to build or improve an open source free version of curser, that would be a good use
@aman5726
@aman5726 27 күн бұрын
I still believe in Meta's open source AI Idea.
@Knifymoloko
@Knifymoloko 28 күн бұрын
This video seems profound. Thank you for sharing.
@andreipaven4388
@andreipaven4388 27 күн бұрын
Never rely on these AI toys without having the infrastructure component in mind. If your brain get lazy or addicted to AI and a stock market crash happens (And it will), these models will be shut down or put behing absurd paywalls and you are done for, since you have not learned any useful or foundational skills. Prompting is only useful as long as these companies can pay to keep these models running in the cloud.
@BlackByDopeDemand
@BlackByDopeDemand 21 күн бұрын
I guess you haven't heard of offline LLMs, then? Never rely on limited knowledge without having the full knowledge in mind.
@terminator_playz5167
@terminator_playz5167 19 күн бұрын
@@BlackByDopeDemand and do you realize how much more computing power a person needs to run these LLM's offline?
@jacobquatkemeyer3823
@jacobquatkemeyer3823 17 күн бұрын
@@terminator_playz5167 Not very much at all. Metas smallest parameter llama model runs on my pretty low tier gaming pc very well. Obviously, it's limited, but this tech isn't going to just disappear with a stock market crash.
@sensequality4900
@sensequality4900 15 күн бұрын
I have a mid tier GPU and the offline models run fine. It’s actually impressive.
@YaBoyfelipe
@YaBoyfelipe 14 күн бұрын
Then the real problem to me seems to be money, get your money up, so when a market crash happens, you can solve any problem that arises
@Z.A.I.N.F.R.E.A.K
@Z.A.I.N.F.R.E.A.K 7 күн бұрын
Thank you!
@mattrickbeats
@mattrickbeats 28 күн бұрын
Thank You! Great Example man appreciate you! 🥳
@chapnico
@chapnico 21 күн бұрын
Why don't you use OpenRouter in your video ?
@bcwarrior7133
@bcwarrior7133 28 күн бұрын
Excellent Video Man, thank you! Subscribed.
@RhyxMan
@RhyxMan 27 күн бұрын
Why not just have o1 give direct commands to the cursor editor
@JackVitick
@JackVitick 2 күн бұрын
How would you do this though?
@ordinaryaspect
@ordinaryaspect 7 күн бұрын
This still have some issue. it make the simple fix that wronge that the website isn't working
@ordinaryaspect
@ordinaryaspect 7 күн бұрын
at 37:54
@user-vr3ex1fj7c
@user-vr3ex1fj7c 2 күн бұрын
The AI advancement is impressive. But this tool is a powerfull one for people who already know about programming and making a good product from the get go. Now, in the future it may be great to turn the studying of computer science into a more serious topic, without the massive webdev influence that is just annoying at this point. I'm a lil scared, but i see a good future for the discipline. And yeah you can learn anything, that's a cool message, but this vid seems a like those 10 hs python courses that promissed you to get a job and you didnt even get to make a calculator and know how it works. You made a thing with an impressive name that's just a graph visualization tool with some libraries. This is not a good example of the capabilities for ai, neither you can sell a product this rough.
@danielprobert8641
@danielprobert8641 28 күн бұрын
Hi David. We are launching a platform in Japan and wondered how we might connect?
@ERROR10188
@ERROR10188 26 күн бұрын
Can you build your old channel agean?
@SecretProfitsClub
@SecretProfitsClub 25 күн бұрын
Bro I must ask, what did you grab 3.75g more or less? and how far into it at the point of making this video? :P
@jsjjs6268
@jsjjs6268 22 күн бұрын
Great video thanks for sharing
@sum1likeno1
@sum1likeno1 26 күн бұрын
Does this mean we could use the OpenRouter chat but does it mean that we could use the o1 mini API?
@marwanaissa6022
@marwanaissa6022 12 күн бұрын
Chatgpt 4-O is the most advanced version
@DudeBlox-y8m
@DudeBlox-y8m 20 күн бұрын
Has anybody here actually tried to build an app this way or similar? I have....ok a MacOS app and sure enough, it didn't work. I had to learn how to program in Swift to make it work.... haha
@vladonutueu
@vladonutueu 18 күн бұрын
Look at the good part at least you learn swift ha ha😂
@wildforestorganics7298
@wildforestorganics7298 17 күн бұрын
I built a full-stack react native app (google firebase backend) that works on ios and android using gpt4.
@janko9779
@janko9779 17 күн бұрын
Super video Ondrej
@nedz291
@nedz291 27 күн бұрын
Just use Replit. Why the complication? Just to make content?
@mominmusheebahmed3930
@mominmusheebahmed3930 2 күн бұрын
How can we do that with replit
@AIEntrepreneurX
@AIEntrepreneurX Күн бұрын
Still not having programing knowledge, it is quite hard. One error and your code is broken.
@theprimecoder4981
@theprimecoder4981 27 күн бұрын
I need a bridge built, what's the prompt to achieve this?😅
@justtiredthings
@justtiredthings 26 күн бұрын
you're gonna have to prompt o1 to abolish republics and replace them with radical democracies for that one
@christopher-george
@christopher-george 28 күн бұрын
37:00 - You can build anything !
@ExplorewithZac
@ExplorewithZac 2 сағат бұрын
Idk man... I am having WAY more luck writing accurate code that implements smoothly using GPT4, 4o writes code whickly but is very lazy. 1o writes code well but does a lot of weird sh*t that isn't consistent with or implements properly with my project. GPT 4 is still the most powerful... I have been using ChatGPT 8+ hours per day since 3.5 was released.
@frankdearr2772
@frankdearr2772 28 күн бұрын
Great, thanks 👍
@garypick
@garypick 27 күн бұрын
Are OpenSource projects using AI to enhance?
@giulianoszarkezi
@giulianoszarkezi 27 күн бұрын
Bro ty jsy zabijak hledal jsem jak zacit s GPTo1 keep the AI Grind going
@Flazermov
@Flazermov 28 күн бұрын
Crazy AF!
@insight-guy
@insight-guy 28 күн бұрын
Excellent.
@noobvsprominecraftbuild
@noobvsprominecraftbuild 12 күн бұрын
very good
@chrisandtre
@chrisandtre 28 күн бұрын
Thanks
@TheRobRussell
@TheRobRussell 25 күн бұрын
But you cannot upload data right?
@GoodBaleadaMusic
@GoodBaleadaMusic 28 күн бұрын
Why do I have to learn Python if I can just deploy it. You don't have to learn the code You just learn how to deploy it. I just watched this video and now I have a color wheel for my lyrics that looks like something similar to what coffee graders use. I'm literally a coder now. Coders will be like no you're not you don't understand code. If 40 years ago I could deploy my app with code I developed no matter where I got it from everyone would be like wow cool code you got there. And you'll be like no you used a bot. And I will be like I don't care smell my Ferrari dust. Thanks for the piggyback ride.
@diana-mk1pq
@diana-mk1pq 27 күн бұрын
He didn't learn how to deploy it; he did everything blindly and simply ran the local server. Enterprise applications demand much more, such as server configuration, microservice connections, distributed systems, encryption, databases, orchestration, clusters, testing pipelines, monitoring, performance optimization and more. And this all is what my company requires from me apart for scripts writing. There will be demand on skilled developers for a long time. Keep learning, and you'll stay ahead. Mastery takes time and effort, and that’s what will set you apart in the long run. You may not do exactly the same thing like now (writing a code) but the critical thinking, problem solving and ability to be divers and adaptive will be in high demand.
@rohitkochikkatfrancis
@rohitkochikkatfrancis 27 күн бұрын
Can you build a snowman ?
@orthodox_gentleman
@orthodox_gentleman 13 күн бұрын
Teach people to use aider and Claude Dev
@jagsuprising2389
@jagsuprising2389 26 күн бұрын
I'm also new with cursor! Lol
@mfc8135
@mfc8135 27 күн бұрын
my opinion its that it costs more, takes more time and output the same bullshit of gpt4, sonnet 3.5 still king
@atultanna
@atultanna 28 күн бұрын
Where is the link to o1
@paulgregorcanta7837
@paulgregorcanta7837 26 күн бұрын
🔥🔥🔥
@mndtr0
@mndtr0 9 күн бұрын
Looks like AI soon will replace programmers...
@Mental_Alchemist
@Mental_Alchemist 18 күн бұрын
Can it build my credit?
@markmuller7962
@markmuller7962 28 күн бұрын
Be the first to build Doom with it!
@monkeywrench1951
@monkeywrench1951 26 күн бұрын
I asked o1mini if it was GPT5 and it responded that it’a architecture was based on GPT4.
@Tal_ru-m
@Tal_ru-m 12 күн бұрын
You took a whole hour and couldn't get to a working poc of a simple 10 minutes project with the help of chatGPT's most advanced ai model. We are not there yet. But it is going to be better soon I hope
@HistoryInMinutes08
@HistoryInMinutes08 17 күн бұрын
I am very disappointed. Since the release of o1, the results 4o and o1 gave were f*cking terrible. It refuses to listen, before the release, I could input a very large prompt with clear instructions and it executed it almost perfectly. With a few more prompts necessary to have it create exactly what I asked for. But after the release, I have to tell it the same thing 10 times before it will do it, and that's with very small instructions, and when I continue with the next steps of my project, it just deletes what we already had and it becomes an infinite loop of mistakes...
@steveshanyaski5076
@steveshanyaski5076 10 күн бұрын
Can it build a car, or a house? No.
@henrik908
@henrik908 6 күн бұрын
Build a new planet?
@Justcqwerr
@Justcqwerr 28 күн бұрын
W yall
@Godiii-m9f
@Godiii-m9f 16 күн бұрын
Anything you say
@patrikpopp3507
@patrikpopp3507 16 күн бұрын
Cenim cenim
@RealityRogue
@RealityRogue 16 күн бұрын
Except it struggles with anything new. Good luck building a Gen 2 AWS app. The knowledge is outdated
@ridhoedistyo
@ridhoedistyo 18 күн бұрын
Based on his video, I can conclude that claude is better than this on programming 😅
@padlebeta3508
@padlebeta3508 6 күн бұрын
Can I build a 30y/o blonde baddie with max-level gyatt ? I swear it's for educational purposes only... 😏
@Kunan-tn1oq
@Kunan-tn1oq 21 күн бұрын
Build me a car
@John-il4mp
@John-il4mp 28 күн бұрын
Bro, you haven't had enough time to properly showcase this. Stop trying to get views just for the sake of views; you'll lose credibility. It's been only one day, and you're already acting like you're the master of OpenAI's new model. Come on, I'm getting really tired of wannabe pseudo-experts like this 😂😂 Guys, stop feeding into this nonsense-that's my two cents.
@johannesdeboeck
@johannesdeboeck 28 күн бұрын
How about you keep your two cents to yourself. He showed how you can create simple apps without much prior knowledge and how you should no longer make up excuses like your excuse of ‘having spend enough time’
@John-il4mp
@John-il4mp 27 күн бұрын
@@johannesdeboeck First of all, maybe you should learn to read before jumping to defend nonsense. My comment wasn't about being negative for no reason, but calling out the fact that rushing to post half-baked content to get views doesn't help anyone. You think it’s okay to mislead people by showing ‘simple apps’ with no depth or real understanding behind it? If you're that easily impressed, maybe you should stay quiet instead of embarrassing yourself by defending laziness and superficiality. Spend more time learning and less time talking. Your response shows exactly why some people can't recognize mediocrity when they see it.
@johannesdeboeck
@johannesdeboeck 27 күн бұрын
@@John-il4mp Thanks for your input. I do find it interesting how he shows how someone with little knowledge can use these AI tools to build stuff. Not every post has to be directed to advanced coders. There is no mediocrity if people find value in what you post.
@John-il4mp
@John-il4mp 27 күн бұрын
@@johannesdeboeck You’re missing the point again. It’s not about whether someone can use AI tools with little knowledge-that’s fine. The issue is that rushing out content for the sake of views without providing real value or depth leads to mediocrity. Sure, not every post needs to be advanced, but there's a difference between making something accessible and simply pushing out shallow content. If you think value is only determined by whether people watch, then you've got it wrong. People deserve more than just surface-level information, and that’s what I’m pointing out. Everyone's trying to jump on the AI wave, and I'm getting tired of these bullshit videos by pseudo-professionals. We only have 30 prompts per week. It just came out-how can anyone claim to be a "pro" already with only 30 prompts? Do you understand what I’m saying?
@johannesdeboeck
@johannesdeboeck 27 күн бұрын
@@John-il4mp Yes, it is not easy to catch your points when you use aggressive language. Thank you for toning it down a little this time. David does not claim to be a "pro".. to the contrary, he repeatedly states he has no knowledge of the underlying technology. That is what makes this content so inspiring and relatable for people like me. It seems to me you are barking to the wrong tree if you found no value here. I hope you find your tribe and feel better soon. Good luck
@prathvipatil1099
@prathvipatil1099 14 күн бұрын
3:15
@razexamvs8756
@razexamvs8756 24 күн бұрын
The fact that u don't know to install a simple library using terminal is ridiculous...
@JamesAllen-c8v
@JamesAllen-c8v 21 күн бұрын
Young Sandra Young Jose Miller Steven
@diana-mk1pq
@diana-mk1pq 27 күн бұрын
As a developer, it would take me just 5 minutes to launch this app. It lacks meaningful features and has a terrible design. I could create a production-level app with an incredible design using AI in the same amount of time it took to make this video. And then tell me developers will no longer needed
@moondroo
@moondroo 26 күн бұрын
Hey, as a professional, what advice would you give to developers who are starting out to build things with Ai-what are some things these new developer will still need to learn to become truly professional?
@WildJag4free
@WildJag4free 26 күн бұрын
The thing is : you’re a professional and we’re not. It doesn’t matter if you can do better at least with o1 every one can have their beta or v1 version of the app they have in their head
@diana-mk1pq
@diana-mk1pq 25 күн бұрын
@@moondroo Focus more on the fundamentals and complex problems. If you know fundamentals the choice of language doesn’t matter-you’ll pick any up quickly. To write efficient prompt to Ai you still need to understand the fundamentals. With AI we no longer have the burden of tasks like building frontends or styling components, which used to take up a lot of time when you started any project and often led to boredom and abandonment. Now, we can finally dedicate our time to more complex and challenging projects. AI can do frontend, can help with ETL, scrapping data for analytical purpose, help you with visualizing and you can focus on the core features. It is a great power when you know how to use it and know what is possible and available
@diana-mk1pq
@diana-mk1pq 25 күн бұрын
As I mentioned earlier, while you won't always write code the same way, critical thinking, problem solving, and the ability to be versatile and adaptive will still be in high demand. I think former developers will still be in demand by HR teams, even for new roles that will be created due to AI.
@WildJag4free
@WildJag4free 25 күн бұрын
@@diana-mk1pq that’s for sure, I think everyone agrees on that statement
@mohitranka9840
@mohitranka9840 28 күн бұрын
What is on your nose?
@Linux_Rules
@Linux_Rules 28 күн бұрын
"breathe well" bands? guessing
@会供価
@会供価 28 күн бұрын
@@Linux_Rulesyea helps with snoring
@mohitranka9840
@mohitranka9840 28 күн бұрын
Does he need it during the livestream?
@JMCV2
@JMCV2 28 күн бұрын
@@mohitranka9840 Alex Hermozi style
@digitnomad
@digitnomad 18 күн бұрын
basically useless believe it or not.
@jorgedev1808
@jorgedev1808 16 күн бұрын
The more you watch, the more you realize even 10 years ago you could have achieved the same without using AI, just by watching a tutorial lol, actually you spent more time telling the AI to fix its mistakes than watching a tutorial. So much hype for so bad results, I mean I use AI daily at work as a replacement for stackoverflow / google, not as the final tool that gets the work done because it doesn't.
@Mark-z5v2s
@Mark-z5v2s 20 күн бұрын
OpenAI o1 cannot build anything nor should it terrible system!
@dominik_9619
@dominik_9619 20 күн бұрын
Total BS to code and build apps this way. Sorry, but either learn to code properly or you will be frustrated or demoralized.
@thunderslap7390
@thunderslap7390 18 күн бұрын
OH, why should I got to University if AI is there?, well very simple, 1) You won't get a Job that pays what University Graduates get, 2) You will not get a job if you use AI, 3) You need to be educated to ask the right questions otherwise you are just a fool, in a Skark tank, you will be eaten. AI is not for the stupid, if you are stupid AI can't help you, but if you are smart it will make you slightly better. There is a reason why there are only 0.03% of the worlds population who are good at IT, they work for Google, SpaceX etc, they don't need AI, they create AI, get it?
@meakcodes
@meakcodes 17 күн бұрын
now deploy it 🤣
@MagicM2024
@MagicM2024 27 күн бұрын
I put a like and Subscribe ti chanel.. Dreamer for a dreamer
@tradinginformer7660
@tradinginformer7660 18 күн бұрын
Code 1307
12 INSANE Use Cases for NEW ChatGPT o1 Model! (The BEST LLM)
34:23
AI Foundations
Рет қаралды 83 М.
Learn Web Development And ACTUALLY Get A Job | Ultimate Guide
1:33:52
James Cross
Рет қаралды 1,4 МЛН
Когда отец одевает ребёнка @JaySharon
00:16
История одного вокалиста
Рет қаралды 12 МЛН
А что бы ты сделал? @LimbLossBoss
00:17
История одного вокалиста
Рет қаралды 5 МЛН
Epic Reflex Game vs MrBeast Crew 🙈😱
00:32
Celine Dept
Рет қаралды 31 МЛН
Why Vertical LLM Agents Are The New $1 Billion SaaS Opportunities
37:06
Can ChatGPT o1-preview Solve PhD-level Physics Textbook Problems?
19:53
БОСТОН - ЛУТШЫЙ ГОРОД в США
34:57
Алексей Шевцов
Рет қаралды 518 М.
FIRST RIDE: Tesla Robotaxi - Our Driverless Future Has Arrived!
24:58
Build Anything with Llama 3.1 Agents, Here’s How
1:00:31
David Ondrej
Рет қаралды 62 М.
Build anything with these new AI tools (No Code)
16:10
Rory Ridgers
Рет қаралды 4,1 М.
Career Advice For A World After AI
23:07
Varun Mayya
Рет қаралды 305 М.