Build Anything with OpenAI o1, Here’s How

แชร์
ฝัง
  • เผยแพร่เมื่อ 23 พ.ย. 2024

ความคิดเห็น • 248

  • @DavidOndrej
    @DavidOndrej  2 หลายเดือนก่อน +26

    🔥 Start making money with AI: www.skool.com/new-society

    • @ASYRAFAZMI-b9f
      @ASYRAFAZMI-b9f 2 หลายเดือนก่อน

      DAVID CAN YOU PLEASE SHARE YOUR VIEW ON REPLIT AGENT PLEASE

    • @Catdevzsh01
      @Catdevzsh01 2 หลายเดือนก่อน

      ##
      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 หลายเดือนก่อน

      ⭐⭐⭐⭐⭐: 2025 📈

  • @Sandro_g99
    @Sandro_g99 2 หลายเดือนก่อน +171

    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 2 หลายเดือนก่อน +1

      whos llya?

    • @beanie741
      @beanie741 หลายเดือนก่อน +4

      @@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.

    • @skipsen23
      @skipsen23 หลายเดือนก่อน +2

      They are, they said it themselves! they want us to get used to the new features slowly and teaching us to use them instead of overwhelming us with everything all at once.

    • @CroElectroStile
      @CroElectroStile หลายเดือนก่อน

      Do you maybe know the best path to translate whole books rn, would chatGPT be better than Gemini for that? i read somwhere that Gemini pro has 1mil token that seems like a larger context window for translating books.

    • @mitchellty
      @mitchellty 22 วันที่ผ่านมา

      Yeah gpt 5

  • @quaziz
    @quaziz 2 หลายเดือนก่อน +80

    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 2 หลายเดือนก่อน +16

      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 2 หลายเดือนก่อน

      ​@@nikolaizaicev9297Just like The old models then 😊​

    • @PrabhavFulara
      @PrabhavFulara หลายเดือนก่อน

      Absolutely , not even a functional website...bugs bugs​@@nikolaizaicev9297

    • @ignaciosavi7739
      @ignaciosavi7739 หลายเดือนก่อน +15

      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 หลายเดือนก่อน

      @@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.

  • @croci81
    @croci81 2 หลายเดือนก่อน +74

    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 2 หลายเดือนก่อน +3

      Dont tell me what to do

    • @thodorisevangelakos
      @thodorisevangelakos 2 หลายเดือนก่อน

      o1 API is only available to tier 4 and above I believe

    • @scriptod91
      @scriptod91 2 หลายเดือนก่อน

      hey btw its no longer weekly, its daily

    • @thodorisevangelakos
      @thodorisevangelakos 2 หลายเดือนก่อน

      @@scriptod91 15 and 50 prompts per day?

    • @lucadevlin4666
      @lucadevlin4666 หลายเดือนก่อน +2

      Good comment man. All these guys are so delusional to think they can finish these Upwork tasks with just AI

  • @iamyers02
    @iamyers02 2 หลายเดือนก่อน +39

    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 2 หลายเดือนก่อน +5

      Isn’t that what TH-cam is for?

    • @S77b7
      @S77b7 หลายเดือนก่อน

      @@quaziz sadly 90% is complete bullshit content

    • @Victor-qk7mw
      @Victor-qk7mw 26 วันที่ผ่านมา

      @@quaziz Most people today explain the basic stuff on YT and then they try to sell you the "complete guide for AI" for a "small price" lol the majority are trying to capitlize the knowledge this dude gives for free!

  • @mrX666-s9p
    @mrX666-s9p 2 หลายเดือนก่อน +500

    Can you build a house ?

    • @Knifymoloko
      @Knifymoloko 2 หลายเดือนก่อน +20

      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 2 หลายเดือนก่อน +17

      Sure you can. Just ask o1 how to build a house 😅

    • @IvanE1990
      @IvanE1990 2 หลายเดือนก่อน +10

      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 2 หลายเดือนก่อน +7

      Can you buy a pizza with Bitcoin?

    • @Flawless_technique
      @Flawless_technique 2 หลายเดือนก่อน +2

      😂😂

  • @Crypto.Vantage
    @Crypto.Vantage 2 หลายเดือนก่อน +53

    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 2 หลายเดือนก่อน

      What are u trying to say ?

    • @tuckerbugeater
      @tuckerbugeater 2 หลายเดือนก่อน

      @@Mosigma-g1y What are u trying to say ?

    • @tomashgrey2211
      @tomashgrey2211 2 หลายเดือนก่อน

      So video is about basic promting?

    • @lucastatum9216
      @lucastatum9216 28 วันที่ผ่านมา

      Thank you goat

  • @christopher-george
    @christopher-george 2 หลายเดือนก่อน +10

    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 2 หลายเดือนก่อน +2

      bro is always cooked! the news cant keep up to him aha

  • @surajshivakumar5124
    @surajshivakumar5124 หลายเดือนก่อน +3

    A combination of vercel v0(front end and design) and claude worked really well for me!

  • @alex-lk5vm
    @alex-lk5vm หลายเดือนก่อน +3

    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! :)

    • @r0ckskip
      @r0ckskip หลายเดือนก่อน +2

      this has to be ai

  • @____2080_____
    @____2080_____ 2 หลายเดือนก่อน +3

    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 2 หลายเดือนก่อน +1

      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 2 หลายเดือนก่อน

      @@zubbyemodi6356 Fully agree. Helps refine my process.

  • @VDIGVIDEOS
    @VDIGVIDEOS 2 หลายเดือนก่อน +8

    Wow this is literally the future love your channel

  • @Ghost-tx7je
    @Ghost-tx7je 26 วันที่ผ่านมา

    Storng guy strong mindset you pulled through the Analysis Paralysis squeezed through the bottle neck and made it come true That’s Innovation in a nutshell
    Goodluck bro

  • @expresscrayfish6094
    @expresscrayfish6094 2 หลายเดือนก่อน

    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!!

  • @Muzan-
    @Muzan- 2 หลายเดือนก่อน +9

    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 😊😊

  • @mohammedabdulla4915
    @mohammedabdulla4915 หลายเดือนก่อน

    Bro just decided to choose the most diffcult sort of problem to demonstrate O1 .. I like the confidence

  • @draganskymedia
    @draganskymedia หลายเดือนก่อน

    By the way, your looks match EXACTLY your content. And that is a compliment. Mr Robot vibes but now with euro-accent. Incredible. Very cool. I will be subscribing sir. I wish I could just download what you know, directly into my brain lol. Cheers.

  • @abnejne4737
    @abnejne4737 2 หลายเดือนก่อน +33

    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 2 หลายเดือนก่อน +2

      2 years max

    • @abnejne4737
      @abnejne4737 2 หลายเดือนก่อน +8

      ​@@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 2 หลายเดือนก่อน +4

      @@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 2 หลายเดือนก่อน

      ​@@sweetguy2001canada modern llms tech is probably super close to a plateau or already reached it. What my intuition tells me.

    • @davidddo
      @davidddo หลายเดือนก่อน

      ​@@tomashgrey2211o1 literally broke that plateau

  • @roget718
    @roget718 2 หลายเดือนก่อน +3

    Your worth ethic is insane

  • @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

  • @youMEtubeUK
    @youMEtubeUK 2 หลายเดือนก่อน +1

    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.

    • @lschaff7
      @lschaff7 21 วันที่ผ่านมา

      Thanks! This helps a ton!

  • @user-vr3ex1fj7c
    @user-vr3ex1fj7c หลายเดือนก่อน +1

    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.

  • @Levi-zy5dr
    @Levi-zy5dr 27 วันที่ผ่านมา

    I love your mindset, inspiring

  • @ExplorewithZac
    @ExplorewithZac หลายเดือนก่อน +1

    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.

  • @JeffRegan-puckishrogue
    @JeffRegan-puckishrogue 2 หลายเดือนก่อน

    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.

  • @tuckercoffey2780
    @tuckercoffey2780 2 หลายเดือนก่อน +1

    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.

  • @j.scottanderson4417
    @j.scottanderson4417 2 หลายเดือนก่อน +14

    Claude combined with 4o1/4o1 mini can be a powerful combination here.

    • @thibaud57
      @thibaud57 2 หลายเดือนก่อน

      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

  • @LamascoTech
    @LamascoTech 26 วันที่ผ่านมา

    This reminds me of when I was studying python, it was song, now we can do this? Thanks for sharing, I don’t know what I will do next.

  • @crioss6803
    @crioss6803 2 หลายเดือนก่อน +3

    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 2 หลายเดือนก่อน +3

      not yet but there are definitely working on it

    • @vladonutueu
      @vladonutueu 2 หลายเดือนก่อน

      Try searching for low code / no code platforms. They’re just a Google away.

  • @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 หลายเดือนก่อน +3

      This will create a generation of bad programmers and applications with security vulnerabilities.

    • @BBadakhshon
      @BBadakhshon หลายเดือนก่อน

      @@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

  • @mrd6869
    @mrd6869 2 หลายเดือนก่อน +1

    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

  • @Knifymoloko
    @Knifymoloko 2 หลายเดือนก่อน

    This video seems profound. Thank you for sharing.

  • @andreipaven4388
    @andreipaven4388 2 หลายเดือนก่อน +44

    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.

    • @terminator_playz5167
      @terminator_playz5167 2 หลายเดือนก่อน +3

      @@BlackByDopeDemand and do you realize how much more computing power a person needs to run these LLM's offline?

    • @jacobquatkemeyer3823
      @jacobquatkemeyer3823 2 หลายเดือนก่อน +7

      @@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 หลายเดือนก่อน +4

      I have a mid tier GPU and the offline models run fine. It’s actually impressive.

    • @YaBoyfelipe
      @YaBoyfelipe หลายเดือนก่อน

      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

    • @andreipaven4388
      @andreipaven4388 หลายเดือนก่อน +2

      ​@@YaBoyfelipe The point is mostly being missed around here, but that's fine. What you're basically saying is "Just have enough money to isolate yourself from the crash." Yes, true, get your situation in place, your money AND your relevant SKILLS (technical or non-technical), such that you can adapt to any post-crash environment (implying the SKILL to adapt, a skill has to be exercised. Earning enough to isolate yourself from the world forever is unrealistic in a few short years).
      Prioritizing AI and AI prerequisites, online or offline, in any way, over foundational skills is beyond ridiculous. Does any of this sound reasonable to you guys? "A crash will happen, but I'm going to delegate all my thinking and adaptability to LLMs, while my brain and biology overall turns to mush, that's fine."? Like, c'mon, do we even need to talk about Data Engineering, SQL Development, Data Analysis/BI, even basic Data Model business understanding and insight extraction, cloud, security, infrastructure, networking and other dozens of examples of areas (which is what most of tech and business really is, not JS or React) where LLMs and AI in general is useless (practically) and bound to be for the next many decades, possible centuries? Have you guys tried asking an LLM to understand 3 different databases from 3 different secured stores (How do you even securely point it down there?), understand everything at the data level, in possibly hundreds of tables with a lot of dirty data, missing data, bogus naming everywhere, then clean up the data (define dirty data first, and don't mess-up), create pipelines, write the SQL (All types) or MDX to pull only the needed data out to a external model, remodel relationships, optimize performance, securely store it, and then answer business questions based on it? A joke for most of the real world. Just one example out of hundreds, but you should get the point, the "shiny" objects are not the real world, and the real world will never ever stop requiring real skills and adaptability from your biological brain, not some LLM, and you need not look far.

  • @mr.delajungle6999
    @mr.delajungle6999 2 หลายเดือนก่อน

    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 ?

  • @AIEntrepreneurX
    @AIEntrepreneurX หลายเดือนก่อน +2

    Still not having programing knowledge, it is quite hard. One error and your code is broken.

  • @RhyxMan
    @RhyxMan 2 หลายเดือนก่อน +6

    Why not just have o1 give direct commands to the cursor editor

    • @JackVitick
      @JackVitick หลายเดือนก่อน

      How would you do this though?

    • @LamascoTech
      @LamascoTech 26 วันที่ผ่านมา

      Kindly advise

  • @SweetChillieBeat
    @SweetChillieBeat 2 หลายเดือนก่อน +5

    You Only get what 30 prompts before you run out and have to wait a whole week before you get access again..

    • @zubbyemodi6356
      @zubbyemodi6356 2 หลายเดือนก่อน

      Seems like he did more than 30 prompts though?

    • @undefined428
      @undefined428 หลายเดือนก่อน

      @@zubbyemodi6356 There was only 3 o1 prompts, he utilized other GPT's for smaller scale basic prompts to limit wasting prompt usage on o1.

    • @undefined428
      @undefined428 หลายเดือนก่อน

      It's 50 prompts a week for o1 preview & 50 prompts a day for o1 mini now.

    • @zubbyemodi6356
      @zubbyemodi6356 หลายเดือนก่อน

      @@undefined428 oh awesome. Thanks!

  • @mattrickbeats
    @mattrickbeats 2 หลายเดือนก่อน

    Thank You! Great Example man appreciate you! 🥳

  • @expresscrayfish6094
    @expresscrayfish6094 2 หลายเดือนก่อน +6

    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

  • @DihelsonMendonca
    @DihelsonMendonca 2 หลายเดือนก่อน +4

    💥 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 2 หลายเดือนก่อน +2

      You can really do that

    • @DihelsonMendonca
      @DihelsonMendonca 2 หลายเดือนก่อน +1

      @@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 2 หลายเดือนก่อน +4

      iOS will have ChatGPT integrated with Siri soon and Alexa is being integrated with Claude as well, just gotta wait.

    • @roranj
      @roranj 2 หลายเดือนก่อน

      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.

  • @bcwarrior7133
    @bcwarrior7133 2 หลายเดือนก่อน

    Excellent Video Man, thank you! Subscribed.

  • @fourtwentying4207
    @fourtwentying4207 หลายเดือนก่อน

    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.

  • @DudeBlox-y8m
    @DudeBlox-y8m 2 หลายเดือนก่อน +4

    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 2 หลายเดือนก่อน +2

      Look at the good part at least you learn swift ha ha😂

    • @wildforestorganics7298
      @wildforestorganics7298 2 หลายเดือนก่อน

      I built a full-stack react native app (google firebase backend) that works on ios and android using gpt4.

  • @badashphilosophy9533
    @badashphilosophy9533 2 หลายเดือนก่อน +1

    Someone should use o1 to build or improve an open source free version of curser, that would be a good use

  • @tomgreen8246
    @tomgreen8246 2 หลายเดือนก่อน

    You can do similar with VS Code and ClaudeDev (OpenRouter o1 integrated)

  • @daydreamblvd
    @daydreamblvd หลายเดือนก่อน

    tell it to thinnk for longer to really juice it

  • @masterofkaarsvet
    @masterofkaarsvet หลายเดือนก่อน

    Could you share the link to this conversation you had with o1? I would love to have the learning plan it created for you

  • @aman5726
    @aman5726 2 หลายเดือนก่อน +1

    I still believe in Meta's open source AI Idea.

  • @chapnico
    @chapnico 2 หลายเดือนก่อน +2

    Why don't you use OpenRouter in your video ?

  • @danielprobert8641
    @danielprobert8641 2 หลายเดือนก่อน +1

    Hi David. We are launching a platform in Japan and wondered how we might connect?

  • @janko9779
    @janko9779 2 หลายเดือนก่อน

    Super video Ondrej

  • @marwanaissa6022
    @marwanaissa6022 หลายเดือนก่อน

    Chatgpt 4-O is the most advanced version

  • @SecretProfitsClub
    @SecretProfitsClub 2 หลายเดือนก่อน

    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

  • @ERROR10188
    @ERROR10188 2 หลายเดือนก่อน +1

    Can you build your old channel agean?

  • @Tal_ru-m
    @Tal_ru-m หลายเดือนก่อน +1

    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

  • @sum1likeno1
    @sum1likeno1 2 หลายเดือนก่อน

    Does this mean we could use the OpenRouter chat but does it mean that we could use the o1 mini API?

  • @jsjjs6268
    @jsjjs6268 2 หลายเดือนก่อน

    Great video thanks for sharing

  • @MKELIVE
    @MKELIVE หลายเดือนก่อน +4

    Defeats the purpose of learning. Programming is all about solving problems and developing that mindset. This won’t do that for you. Challenge your brain and build it on your own

  • @zodn921
    @zodn921 2 หลายเดือนก่อน +4

    Just use Replit. Why the complication? Just to make content?

  • @Raymond-wj4ol
    @Raymond-wj4ol หลายเดือนก่อน

    Can cursor use open router directly?

  • @Z.A.I.N.F.R.E.A.K
    @Z.A.I.N.F.R.E.A.K หลายเดือนก่อน

    Thank you!

  • @theprimecoder4981
    @theprimecoder4981 2 หลายเดือนก่อน

    I need a bridge built, what's the prompt to achieve this?😅

    • @justtiredthings
      @justtiredthings 2 หลายเดือนก่อน

      you're gonna have to prompt o1 to abolish republics and replace them with radical democracies for that one

  • @Trezzyleft
    @Trezzyleft หลายเดือนก่อน

    Can u build a money printer?

  • @mokshcodes
    @mokshcodes หลายเดือนก่อน

    What is the AI chat extension David uses on VScode?

    • @FlavioCaduff
      @FlavioCaduff 12 ชั่วโมงที่ผ่านมา

      It's called "Cursor" and it's not a VS Code extension but rather it's own Editor

  • @giulianoszarkezi
    @giulianoszarkezi 2 หลายเดือนก่อน

    Bro ty jsy zabijak hledal jsem jak zacit s GPTo1 keep the AI Grind going

  • @GoodBaleada
    @GoodBaleada 2 หลายเดือนก่อน +3

    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 2 หลายเดือนก่อน +2

      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.

  • @garypick
    @garypick 2 หลายเดือนก่อน

    Are OpenSource projects using AI to enhance?

  • @TheRobRussell
    @TheRobRussell 2 หลายเดือนก่อน

    But you cannot upload data right?

  • @mfc8135
    @mfc8135 2 หลายเดือนก่อน

    my opinion its that it costs more, takes more time and output the same bullshit of gpt4, sonnet 3.5 still king

  • @Flazermov
    @Flazermov 2 หลายเดือนก่อน

    Crazy AF!

  • @leo-minecraft2069
    @leo-minecraft2069 25 วันที่ผ่านมา

    This guy broke the system, he prompted o1 for a money method and it created a website for him to sell unlimited uses of itself😂😂😂😂

  • @frankdearr2772
    @frankdearr2772 2 หลายเดือนก่อน

    Great, thanks 👍

  • @quaziz
    @quaziz 2 หลายเดือนก่อน +7

    I just realized how unfair TH-cam 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  2 หลายเดือนก่อน +12

      skill issue

    • @quaziz
      @quaziz 2 หลายเดือนก่อน

      Sure, I guess. I think it has to do with the fact that I’m using an ai voice in my tutorials

    • @vladonutueu
      @vladonutueu 2 หลายเดือนก่อน +1

      Maybe you should stop complaining and start building your channel. Just saying.

    • @quaziz
      @quaziz 2 หลายเดือนก่อน

      @@vladonutueu nah. Dont care anylonger. As I said, just realized.

    • @quaziz
      @quaziz 2 หลายเดือนก่อน

      @@vladonutueu just to clarify, I do not begrudge the creator his success. He does this better than me obviously and he should be rewarded.

  • @christopher-george
    @christopher-george 2 หลายเดือนก่อน +7

    37:00 - You can build anything !

  • @rohitkochikkatfrancis
    @rohitkochikkatfrancis 2 หลายเดือนก่อน

    Can you build a snowman ?

  • @divestor
    @divestor 27 วันที่ผ่านมา

    Crazy russian/czech accent.

  • @orthodox_gentleman
    @orthodox_gentleman หลายเดือนก่อน

    Teach people to use aider and Claude Dev

  • @mihaelsmrcek
    @mihaelsmrcek หลายเดือนก่อน

    what extension is he using in VS code 24:05

  • @insight-guy
    @insight-guy 2 หลายเดือนก่อน

    Excellent.

  • @mndtr0
    @mndtr0 หลายเดือนก่อน

    Looks like AI soon will replace programmers...

  • @atultanna
    @atultanna 2 หลายเดือนก่อน

    Where is the link to o1

  • @noobvsprominecraftbuild
    @noobvsprominecraftbuild หลายเดือนก่อน

    very good

  • @monkeywrench1951
    @monkeywrench1951 2 หลายเดือนก่อน +1

    I asked o1mini if it was GPT5 and it responded that it’a architecture was based on GPT4.

  • @vvnoah917
    @vvnoah917 23 วันที่ผ่านมา

    Fix my oven door

  • @Mental_Alchemist
    @Mental_Alchemist 2 หลายเดือนก่อน

    Can it build my credit?

  • @padlebeta3508
    @padlebeta3508 หลายเดือนก่อน +1

    Can I build a 30y/o blonde baddie with max-level gyatt ? I swear it's for educational purposes only... 😏

  • @paulgregorcanta7837
    @paulgregorcanta7837 2 หลายเดือนก่อน

    🔥🔥🔥

  • @steveshanyaski5076
    @steveshanyaski5076 หลายเดือนก่อน

    Can it build a car, or a house? No.

  • @markmuller7962
    @markmuller7962 2 หลายเดือนก่อน

    Be the first to build Doom with it!

  • @henrik908
    @henrik908 หลายเดือนก่อน

    Build a new planet?

  • @jagsuprising2389
    @jagsuprising2389 2 หลายเดือนก่อน

    I'm also new with cursor! Lol

  • @Clayvalue
    @Clayvalue หลายเดือนก่อน

    Also a mistake I see a LOT:
    In the video you say, “don’t ask simple questions” why? GPT4 & o1 is the best for approaching a topic with nuance.
    ---THAT BEING SAID--- you do not need a word salad to get what you need. Be clear, be concise, be logical. I see a lot of people making a prompt a page long and it’s like WHY

  • @chrisandtre
    @chrisandtre 2 หลายเดือนก่อน

    Thanks

  • @undefined69695
    @undefined69695 หลายเดือนก่อน

    Eh I asked it to answer a simple question and it was like idk lol a bunch of times

  • @HistoryInMinutes08
    @HistoryInMinutes08 2 หลายเดือนก่อน

    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...

  • @Justcqwerr
    @Justcqwerr 2 หลายเดือนก่อน

    W yall

  • @Godiii-m9f
    @Godiii-m9f หลายเดือนก่อน

    Anything you say

  • @ridhoedistyo
    @ridhoedistyo 2 หลายเดือนก่อน

    Based on his video, I can conclude that claude is better than this on programming 😅

  • @patrikpopp3507
    @patrikpopp3507 หลายเดือนก่อน

    Cenim cenim

  • @Kunan-tn1oq
    @Kunan-tn1oq 2 หลายเดือนก่อน

    Build me a car