John McDonnell
John McDonnell
  • Видео 7
  • Просмотров 497
Accelerated Computing with CUDA C/C++ for Artificial Intelligence (Video #2 Case Study Update)
Here's a Case Study update and high-level view of the solution that is presented to the case study. Please watch the video... It will help make more sense of the entire series as to what is being done and why!
Просмотров: 21

Видео

Accelerated Computing with CUDA C/C++ for Artificial Intelligence (Iron Beam/Iron Dome Case Study)
Просмотров 5814 дней назад
This is the very first of many videos of the “Accelerated Computing with CUDA C/C for Artificial Intelligence” RUclips/X.com Series which covers a wide range of topics including programming, mathematics, missile/aerial defense, solutions architecture, digital logic, and much more! A very great technical learning pathway!
Will AI Replace Programming / Should I Study Computer Science? Pt 1
Просмотров 122 месяца назад
Make sure to watch the multipart series as I add them
Laravel 11 Restful CRUD API Best Practices
Просмотров 1413 месяца назад
Apologies the audio is way better in the second part! Plus, you can find the original tutorial by sandalanka here: "medium.com/@1415sandalanka/laravel-11-rest-api-crud-with-best-practices-fcc26505e0d2" This is a video tutorial I created demonstrating walking through this web tutorial and fixing some errors and further enhancing the repository design patterns by implementing a parent/child base ...
Kingst LA5016 Digital Logic Analyzer & Arduino Uno R3 Demo & Introduction to Pulse Width Modulation.
Просмотров 2365 месяцев назад
You can get the QD Kingst LA5016 - They did not pay me nor send me this free - I purchased myself. Hopefully they will send me a LA5032! :) Just a simple demonstration of the Kingst LA5016 Digital Logic Analyzer sampling PWM signals utilizing analogWrite from an Arduino R3 Uno by John McDonnell. Some basics covering Pulse Width Modulation, Space Vector Pulse Width Modulation.
McDonnell ET102 Course Project
Просмотров 14Год назад
Screen recording of the completed working circuit modification.
Demo of OpticalVoltage.com backend business manager.
Просмотров 182 года назад
"www.opticalvoltage.com" - backend business manager I created and programmed for a low-voltage (camera, wifi, security systems) company I created). The company doesn't exist as the market was terribly weak to be honest.

Комментарии

  • @BenjaminSimpson-zu1rh
    @BenjaminSimpson-zu1rh 13 дней назад

    Bro, what are you talking about? Lol.

    • @john.mcdonnell
      @john.mcdonnell 13 дней назад

      Did you watch the first video? What are you confused about?

    • @john.mcdonnell
      @john.mcdonnell 13 дней назад

      Not trying to be a jerk just genuinely want to answer any question you may have

  • @JBERGALIEN
    @JBERGALIEN Месяц назад

    Hi friend, nice video but sound track too low volume

  • @QuintessentialDio
    @QuintessentialDio 2 месяца назад

    thank you sir, i have a similar setup, and i had some issues with how the response is coming out, 11 is really different than the 10, i'll watch and comment later.

    • @QuintessentialDio
      @QuintessentialDio 2 месяца назад

      everything u explained up on till the 59:30 made perfect sense, the product specific stuff part doesnt though, isn't like an $id & $upc supposed to be passed from the route or something like that, i get the route is been handled by apiResource but how does this work? and you also said adding checkProductUPC to the model, does this mean a separate method was created on the model? I'd love to get your feedback on this!

    • @john.mcdonnell
      @john.mcdonnell 2 месяца назад

      @@QuintessentialDio - Hey! Thanks for the feedback - glad to see it helped a little - I'll tell you what I am going to make a video later today for you and others as well that expands upon that - and I will directly answer all your questions - as soon as I complete it I will post the url here for you.... but to quickly answer your question --- yes you would actually get something like the product $id number in your table or what not (since products have many types of id's i don't usually just use $upc) and the $upc code from a request - like an UPDATE or READ or even a two factor delete such as delete where $id = 1 and $upc = 123 -- just to ensure some integrity ... but those would then hit your controller and in your controller that's where you're making the call to the interface - you still have to pass those arguments through as defined by your interface because that is what essentially your underlying repo & model will need to perform the operation. And that is sort of why the call it an interface (it's defining how you interface with a base class usually) Again -- its alot easier than it sounds so I'll make another video, and this would be if you wanted to further build upon and start making an actual web service based on some type of business logic you know.... I'll show you how I have mine built as well.