Js-Craft Academy
Js-Craft Academy
  • Видео 38
  • Просмотров 61 772
🎙 Hrishi Olickel - ex CTO Greywing - on AI Engineering, building with LLMs, AI Agents and more
Podcast page: www.js-craft.io/blog/hrishi-olickel-on-ai-engineering-building-with-llms-ai-agents-and-more/
Today, I’m excited to share my interview with Hrishi Olickel, whom I discovered through his talks on AI integration, including The LLM Hacker's Guide and A Solid Pattern to Build LLM Applications with Claude. Hrishi is based in Singapore, was the CTO Greywing (Y Combinator), and was included in Forbes 30 Under 30 - Asia.
We talked about his journey into AI, his work with multi-modal models, and his approach to learning and building AI-driven systems.
🔗 Mentioned Links
- ruclips.net/video/8w0hUcQSDy8/видео.html
- ruclips.net/video/gsO5V30h-lU/видео.html
- x.com/hrishioa
- olickel.com/
- huggi...
Просмотров: 224

Видео

🎙 Luca Dellanna - Author of Ergodicity & Winning long term games - on building a sustainable career
Просмотров 164Месяц назад
Main page for the interview: www.js-craft.io/blog/luca-dellanna-author-of-ergodicity-winning-long-term-games-on-building-a-sustainable-career/ Hello and welcome! It’s Daniel here, the author of LangChain for JavaScript Developers. Today, I’m thrilled to share my conversation with Luca Dellanna, a consultant, author, and expert in behavioral economics and management. I discovered Luca through hi...
🎙 Jason Swett - Software Developer & Consultant - on book writing, podcasting, AI & entrepreneurship
Просмотров 1762 месяца назад
Hello and welcome! It's Daniel here, the author of LangChain for JavaScript Developers: js-craft.io/book Today, I’m excited to share my interview with Jason Swett! Jason is a podcaster, speaker, consultant. Author of Professional Rails Testing and the creator of SaturnCI. 👨‍💻 Mentioned links: Below are the links mentioned during our talk: - www.amazon.com/Professional-Rails-Testing-Tools-Princi...
🎙 Ishan Anand, creator of Spreadsheets-are-all-you-need.ai
Просмотров 2424 месяца назад
Hello and welcome! It's Daniel here, the author of LangChain for JavaScript Developers. Today, I’m excited to share my interview with Ishan Anand, whom I discovered while watching recordings from this year's AI Engineering World's Fair. Ishan shared how he implemented a working GPT-2 model directly into Excel. Yes, you heard that right Excel. Ok, a very big Excel file, but still... just a pure ...
🎙 Josef Strzibny, author of Deployment from Scratch and Kamal Handbook
Просмотров 1884 месяца назад
Podcast episode page: www.js-craft.io/blog/interview-josef-strzibny-deployment-from-scratch/ This is my interview with Josef Strzibny. I discovered Josef and his work through a talk he gave at the Ruby Balkans conference. In that talk, he shared the story of how he self-published his two books, Deployment from Scratch and Kamal Handbook. I really appreciated his openness and down-to-earth attit...
🎙 Jacob Lee, maintainer of LangChain.js and founding engineer of LangChain
Просмотров 5715 месяцев назад
Blog post here: www.js-craft.io/blog/interview-jacob-lee-langchain-js/ Hey folks! This is my interview with Jacob Lee, the main maintainer of LangChain.js and a founding engineer of the LangChain company. This talk covers topics such as: - What LangChain is and the benefits of using it - A good learning roadmap for getting started with LangChain - How other tools from the LangChain ecosystem, s...
What is Langchain.js and its use cases
Просмотров 689 месяцев назад
Example app with Langchain.js and React.js: www.js-craft.io/blog/reactjs-langchain-example/ Langchain is a framework meant to facilitate the interaction between an AI model and a traditional web application. Langchain is to the LLM - webapp communication kind of what jQuery is to Javascript, or Django to Python. It gives you a standardized way of doing stuff.
CSS Grid hover row
Просмотров 25110 месяцев назад
Full article and code here: www.js-craft.io/blog/css-grid-row-hover/ Let's see how we can highlight a row in a CSS grid when we hover it. In this example, we will just change the background color of the hovered row, but you can replace this with any other effect.
ReactJs and Langchain (javascript) - example app
Просмотров 15010 месяцев назад
We will build a small ReactJs app that will search for synonyms of a given word, in 4 different languages, using ChatGPT. Alongside connecting to our first LangChain AI Model we will also use things such as chains, output parsers, or chat prompt templates. Full article and example here : www.js-craft.io/blog/reactjs-langchain-example/ ‎
Upload multiple files in React
Просмотров 1,1 тыс.11 месяцев назад
Learn how to upload multiple files in React using by using a mix of FormData() interface and the Fetch API. You can find the full code of the example here: www.js-craft.io/blog/react-upload-multiple-files/ For this example, we will build a React app that uploads a few images to a server, and shows a busy indicator while the files are transferred. To see more React content I've also made this vi...
Javascript Console Trace Example
Просмотров 16011 месяцев назад
Javascript Console Trace is great for debugging when we have multiple possible paths that can lead to a given function call. Let's take a look at an example of how to use the Javascript console.trace() function. Full article and code here: www.js-craft.io/blog/console-trace-debugging-javascript/
3 Props to make a Responsive CSS Grid Layout
Просмотров 16811 месяцев назад
Full article and code here : www.js-craft.io/blog/making-a-responsive-css-grid-layout-with-just-3-properties/ What if I told you that you only need to know 3 CSS properties to make a fully responsive CSS grid layout. Let's see how! #css3 #responsivedesign #cssgrid #cssflexbox
Fixing the Maybe one of these should be marked as a client entry with "use client" - NextJs error
Просмотров 197Год назад
Let's see how we can use the 'use client' in NextJs so that we can avoid errors such as - Maybe one of these should be marked as a client entry with "use client" or - You're importing a component that needs useEffect. It only works in a Client Component but none of its parents are marked with "use client", so they're Server Components by default Full article and code here: www.js-craft.io/blog/...
Javascript includes multiple values
Просмотров 270Год назад
The Js array includes() function does not have a multiple values search option, but we can simulate this with the help of others array functions. 📘 The full code and article are here: www.js-craft.io/blog/javascript-includes-multiple-values/ 🗞 Subscribe to the newsletter here: www.js-craft.io/newsletter/ #javascript #react #reactjs #learnjavascript
React copy text to clipboard
Просмотров 96Год назад
Let's see how we can use the Javascript navigator.clipboard API to implement a copy text to clipboard functionality in React. 📘 The full code and article are here: www.js-craft.io/blog/react-copy-text-clipboard/ 📘 For copying images to the clipboard you can check out this article: www.js-craft.io/blog/copy-paste-image-clipboard-react/ 🗞 Subscribe to the newsletter here: www.js-craft.io/newslett...
Clamp numbers in JavaScript
Просмотров 188Год назад
Clamp numbers in JavaScript
Fixing the Maybe one of these should be marked as a client entry with "use client" - NextJs error
Просмотров 473Год назад
Fixing the Maybe one of these should be marked as a client entry with "use client" - NextJs error
React copy paste images to clipboard
Просмотров 1,1 тыс.Год назад
React copy paste images to clipboard
React upload multiple files
Просмотров 862Год назад
React upload multiple files
tensorflowjs and javascript image recognition with cocco ssd
Просмотров 605Год назад
tensorflowjs and javascript image recognition with cocco ssd
javascript canvas invert colors
Просмотров 106Год назад
javascript canvas invert colors
tensorflowjs identify objects javascript example
Просмотров 44Год назад
tensorflowjs identify objects javascript example
tensorflowjs javascript example qna
Просмотров 120Год назад
tensorflowjs javascript example qna
nextjs 13 react context api
Просмотров 828Год назад
nextjs 13 react context api
react digitpad
Просмотров 23Год назад
react digitpad
tensorflowjs first app
Просмотров 32Год назад
tensorflowjs first app
React scroll into view last item added
Просмотров 898Год назад
React scroll into view last item added
React scroll to element
Просмотров 1 тыс.Год назад
React scroll to element
Making a responsive sidebar layout with the NextJs 13 app folder
Просмотров 2 тыс.2 года назад
Making a responsive sidebar layout with the NextJs 13 app folder
CSS overscroll-behavior - prevent scroll of body but allow modal scroll
Просмотров 1,2 тыс.2 года назад
CSS overscroll-behavior - prevent scroll of body but allow modal scroll

Комментарии

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

    guy was way early on multimodal RAG nice talk ...

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

    Nice talk! I know Luca from his books.

  • @mihaienache9486
    @mihaienache9486 4 месяца назад

    wow, I did know that you could make a full AI model in Excel. So cool!

  • @mihaienache9486
    @mihaienache9486 4 месяца назад

    indeed nice interview 🔗🐦

  • @mihaienache9486
    @mihaienache9486 4 месяца назад

    actually just bought the book a few days ago and now I discovered this video

  • @akoskm
    @akoskm 5 месяцев назад

    Nice interview Daniel! 👏

  • @Fabricio700_0
    @Fabricio700_0 5 месяцев назад

    thanks👍

  • @stefanm.7983
    @stefanm.7983 9 месяцев назад

    Thank you. But in the ".cell span {" there is not enough "pointer-events: none;"

    • @js-craftacademy6740
      @js-craftacademy6740 9 месяцев назад

      hi Stefan! thanks for comment, but not sure what you mean :) ? Can you please elaborate

    • @stefanm.7983
      @stefanm.7983 9 месяцев назад

      @@js-craftacademy6740 Hi. In your case, pointing the mouse over an empty space on a row works well, but pointing the mouse over the text - hover on the row does not work.

  • @de-ep
    @de-ep 9 месяцев назад

    nice

    • @js-craftacademy6740
      @js-craftacademy6740 9 месяцев назад

      yeah ... Langchain opens up a lot of new possibilities.

  • @haythembenhaddada9988
    @haythembenhaddada9988 9 месяцев назад

    bro you are the best you saved me a lot of time for this little small thing

  • @martinhansjuergebode
    @martinhansjuergebode 10 месяцев назад

    Thank you very much for this easy to follow instruction!

    • @js-craftacademy6740
      @js-craftacademy6740 10 месяцев назад

      Thanks, Martin! Very kind of you to leave this comment :)

  • @Amanda.Rodriguez
    @Amanda.Rodriguez 11 месяцев назад

    Thanks!!!

  • @philliplam2704
    @philliplam2704 Год назад

    Thank you! Great explanation, keep it up :)

  • @PatronSaintOfPigeons
    @PatronSaintOfPigeons Год назад

    nice but any chance of a git repo? link in description is dead

  • @moguhealthjourney
    @moguhealthjourney 4 года назад

    Hey Great Video! Small youtuber looking for help here please Check my channel!

  • @paragb2008
    @paragb2008 4 года назад

    how to integrate zxcvbn for checking active directory password

  • @felipecarl1415
    @felipecarl1415 4 года назад

    Thanks for the explanation, your voice remembers seven from seven scissors!

  • @Guandjoy
    @Guandjoy 6 лет назад

    thanks. Dead simple and informative

  • @rainee007
    @rainee007 6 лет назад

    Why doesn't context.inc in Blue work in my code?

    • @rainee007
      @rainee007 6 лет назад

      Figured out. Sorry, I forget to define inc method in the AppProvider.

  • @SarbbottamBandyopadhyay
    @SarbbottamBandyopadhyay 6 лет назад

    Thank you for such a simple and concise explanation.

  • @creatorsremose
    @creatorsremose 6 лет назад

    Simple, concise, clear... excellent. Thank you!

  • @anagreug
    @anagreug 6 лет назад

    Wow!!!!!!!!!!! <3

  • @DS-rv2fc
    @DS-rv2fc 6 лет назад

    Awesome tutorial

  • @tctctc91
    @tctctc91 6 лет назад

    Thanks for this. Was confused by the official docs but this cleared things up for me. I am curious as to how this is is better than Redux container/components pattern, especially in larger projects

    • @js-craftacademy6740
      @js-craftacademy6740 6 лет назад

      Hi Tom! I think that the React Context is aimed at more local / smaller scale use cases. For bigger projects I would still go for something like Redux, or MobX.

  • @idsecund6405
    @idsecund6405 6 лет назад

    Good tutorial ! Thanks