Top videos

Generative AI
4 Views · 3 years ago

Is college still worth it? freeCodeCamp.org founder Quincy Larson answers your university and career questions. All data visualizations by Quincy. Edited by Ed Pratowski, and questions voiced by his daughter Stella.

Here are some of the many topics you'll learn about:
- economic considerations (ROI and Net Present Value) of college decisions
- the US higher education system and labor market dynamics
- strategies to minimize college costs and maximize ROI
- the student debt crisis and student visa system
- practical tips from decades of adult education experience
- how to make informed career decisions and maximize your options

Quincy's book "How to Learn to Code and Get a Developer Job" is completely free. (6 hour read): https://www.freecodecamp.org/n....ews/learn-to-code-bo

And each week Quincy interviews developers on the freeCodeCamp podcast. You can subscribe to it for free in whichever app you use for listening to podcasts. Happy coding.

🎉 Thanks to our Champion and Sponsor supporters:
👾 davthecoder
👾 jedi-or-sith
👾 南宮千影
👾 Agustín Kussrow
👾 Nattira Maneerat
👾 Heather Wcislo
👾 Serhiy Kalinets
👾 Justin Hual
👾 Otis Morgan

--

Learn to code for free and get a developer job: https://www.freecodecamp.org

Read hundreds of articles on programming: https://freecodecamp.org/news

Generative AI
4 Views · 3 years ago

This course from Harvard University explores the concepts and algorithms at the foundation of modern artificial intelligence, diving into the ideas that give rise to technologies like large language models, game-playing engines, handwriting recognition, and machine translation. Through hands-on projects, students gain exposure to the theory behind graph search algorithms, classification, optimization, reinforcement learning, and other topics in artificial intelligence and machine learning as they incorporate them into their own Python programs.

This course has been updated for 2023 to include an in-depth section on large language models.

✏️ Course developed by Brian Yu for Harvard University. Learn more about Brian: https://brianyu.me/

🔗 Course resources: https://cs50.harvard.edu/ai/2020/

⭐️ Course Contents ⭐️
⌨️ (00:00:00) Introuction
⌨️ (00:02:26) Search
⌨️ (01:51:55) Knowledge
⌨️ (03:39:39) Uncertainty
⌨️ (05:34:08) Optimization
⌨️ (07:18:52) Learning
⌨️ (09:04:41) Neural Networks
⌨️ (10:46:00) Language

🎉 Thanks to our Champion and Sponsor supporters:
👾 davthecoder
👾 jedi-or-sith
👾 南宮千影
👾 Agustín Kussrow
👾 Nattira Maneerat
👾 Heather Wcislo
👾 Serhiy Kalinets
👾 Justin Hual
👾 Otis Morgan

--

Learn to code for free and get a developer job: https://www.freecodecamp.org

Read hundreds of articles on programming: https://freecodecamp.org/news

Generative AI
4 Views · 3 years ago

Welcome to this course about development with Large Language Models, or LLMs. Throughout this course, you will complete hands-on projects will help you learn how to harness LLMs for your own projects. You will build projects with LLMs that will enable you to create dynamic interfaces, interact with vast amounts of text data, and even empower LLMs with the capability to browse the internet for research papers.

This course was developed by @Luup.ai123

Colab notebook for introduction to the API:https://colab.research.google.....com/drive/1gi2yDvvhU
Github : https://github.com/pythononthe....plane123/LLM_course_

Join the Discord: https://discord.com/invite/Hq39QgRU
Twitter : https://twitter.com/AkshatNon

⭐️ Contents ⭐️
⌨️ (0:00:00) Brief introduction to LLMs
⌨️ (0:11:49) Quick note from the future
⌨️ (0:12:04) Chatgpt playground (skip this is you know this already)
⌨️ (0:18:21) GPT API basics (skip this is you know this already)
⌨️ (0:30:43) Brief intro to chainlit
⌨️ (0:31:33) Cloning chatgpt user interface
⌨️ (0:45:37) Limitations of our interface
⌨️ (0:47:48) Adding streaming, backend view, stop sequence button
⌨️ (0:58:42) Introduction to vector databases
⌨️ (1:04:42) Vector databases hands on
⌨️ (1:12:10) QnA with Documents - .txt and .pdf
⌨️ (1:23:32) Testing out our Q&A system
⌨️ (1:27:22) Introduction to web-browsing and agents
⌨️ (1:32:52) AI researcher
⌨️ (1:42:23) Human as a tool
⌨️ (1:44:44) Mini code interpreter plugin(Replit tool)
⌨️ (1:46:29) Searching youtube using agents
⌨️ (1:49:19) Guide to explore more
⌨️ (1:50:33) Shell Tool
⌨️ (1:55:43) Create your own tools
⌨️ (2:01:19) Ending Notes

🎉 Thanks to our Champion and Sponsor supporters:
👾 davthecoder
👾 jedi-or-sith
👾 南宮千影
👾 Agustín Kussrow
👾 Nattira Maneerat
👾 Heather Wcislo
👾 Serhiy Kalinets
👾 Justin Hual
👾 Otis Morgan

--

Learn to code for free and get a developer job: https://www.freecodecamp.org

Read hundreds of articles on programming: https://freecodecamp.org/news

Generative AI
4 Views · 3 years ago

Learn the Flask Python web framework by building your own e-commerce website with its own authentication system.

💻 Full code: https://github.com/jimdevops19/FlaskSeries
💻 Get code snippets used in the course: http://www.jimshapedcoding.com..../courses/Flask%20Ful

✏️ Course created by Jim from JimShapedCoding. Check out his channel: https://www.youtube.com/channe....l/UCU8d7rcShA7MGuDyY

⭐️ Course Contents ⭐️
⌨️ P1 (0:00:00) Introduction
⌨️ P2 (0:20:37) Styling & Templates
⌨️ P3 (0:41:37) Sending data to Templates
⌨️ P4 (1:02:56) Template Inheritance
⌨️ P5 (1:21:14) Models and Databases
⌨️ P6 (1:51:13) Project Restructure
⌨️ P7 (2:05:41) Model Relationships
⌨️ P8 (2:25:37) Flask Forms
⌨️ P9 (2:51:58) Flask Validations
⌨️ P10 (3:14:05) Flashes & Advanced Validations
⌨️ P11 (3:41:04) User Authentication Part 1
⌨️ P12 (3:59:56) User Authentication Part 2
⌨️ P13 (4:34:16) Logout and Customizations
⌨️ P14 (4:51:25) Item Purchasing Part 1
⌨️ P15 (5:18:39) Item Purchasing Part 2
⌨️ P16 (5:54:13) Item Selling

Useful Links:
🔗 Python Download - https://www.python.org/downloads/​
🔗 Pycharm Download - https://www.jetbrains.com/pycharm/download/
🔗 Flask Starter Template - https://flask.palletsprojects.....com/en/1.1.x/quickst

--

Learn to code for free and get a developer job: https://www.freecodecamp.org

Read hundreds of articles on programming: https://freecodecamp.org/news

Generative AI
4 Views · 3 years ago

✍ Software Engineering as a Career: How to Land a Programming Job without a Computer Science Degree: https://www.amazon.com/dp/B0915RP5XK

💻Learn software development and build projects with others https://www.facebook.com/groups/230967387959757/

Support the channel:
👕Merch: https://teespring.com/stores/keen-coders

Website: https://hasanarmstrong.com/


Social Media 🤳
Facebook: https://www.facebook.com/hasan.armstrong
Instagram: https://www.instagram.com/hasan_armstrong

Contact me ✉
Email: [email protected]

Generative AI
4 Views · 3 years ago

Redux: Use Middleware to Handle Asynchronous Actions
#100DaysOfCode

Generative AI
4 Views · 3 years ago

Join me in solving coding problems, in real time. I'm not just going to tell you the solution... you're going to watch me solve the problem. I see too many posts on sites like Reddit where people are worried about diving in and writing code, or they want to break out of tutorial hell. I know I used to be intimidated seeing instructors blasting through code in one try... but then I realized it's scripted.

I've been coding in JavaScript for 5 years: see if you can beat me to the solution, and then let's compare notes.

Open the same problem on freeCodeCamp.org: https://www.freecodecamp.org/l....earn/javascript-algo

Did you solve the problem before I could? What'd you do that I didn't do? How fast was your solution? Let me know in the comments below!

Generative AI
4 Views · 3 years ago

Basic JavaScript lessons 11-15 FreeCodeCamp.org OdhinsWell

I dance at the end!

Chapters:
00:00 Introduction
00:45 Adding Two Numbers
01:13 Subtracting
01:50 Mutiplication
02:35 Dividing
03:20 TEA TIME!!!! yum yum
03:31 Incrementing
04:13 Outro



In this epidode we talk about adding, subtracting, multiplying, dividing and incrementing in JavaScript. I attempted to make this video a little more humoruos than the previous videos to make learning this stuff a little more entertaining. The lessons we go over in this video are very basic and I personally am looking forward to some more intence work.

Let me know if you need anything from me.

Cheers,
Theodore.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Basic JavaScript lessons 11-15 FreeCodeCamp.org OdhinsWell

free code camp javascript - free code camp javascript projects - free code camp javascript tutorial - free code camp javascript es6 - free code camp javascript course - free code camp javascript full course - free code camp javascript answers - free code camp javascript playlist - javascript - javascript tutorial for beginners - javascript course - javascript tutorial - javascript mastery - javascript projects for beginners - javascript for beginners - learn to code
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Brought to you by odhinsWell Systems & Processes

Song by: Jason Garner - Upbeat Irish Jig

Generative AI
4 Views · 3 years ago

basic java script please like my video

link in the description for


freecodecamp.org

Generative AI
4 Views · 3 years ago

Get up and running with freeCodeCamp.org.
#freeCodeCamp.org is a resource for #learning how to #code.

Generative AI
4 Views · 3 years ago

How to Sign Up to freecodecamp.
How to use it.
Solutions of first 38 challenges.

Generative AI
4 Views · 3 years ago

Broadcasted live on Twitch -- Watch live at https://www.twitch.tv/bpwnd

Generative AI
4 Views · 3 years ago

Learn how to use LangChain in this crash course for beginners. LangChain is a framework designed to simplify the creation of applications using large language models. It makes it easy to connect AI models with a bunch of different data sources so you can create customized NLP applications.

✏️ Course developed by @rishabkumar7

⭐️ Resources and Code ⭐️
Code Pets Name Generator - https://github.com/rishabkumar....7/pets-name-langchai
YouTube Assistant - https://github.com/rishabkumar....7/youtube-assistant-
LangChain docs - https://docs.langchain.com/docs/
Streamlit - https://streamlit.io

⭐️ Contents ⭐️
⌨️ (0:00:00) Intro to LangChain
⌨️ (0:03:19) Requirements for the projects
⌨️ (0:05:04) First Project - Pets Name Generator
⌨️ (0:28:41) Agents within LangChain
⌨️ (0:35:54) Second Project - YouTube Assistant
⌨️ (0:40:04) Creating our own vector stores
⌨️ (1:01:44) Conclusion and OpenAI API Costs

🎉 Thanks to our Champion and Sponsor supporters:
👾 davthecoder
👾 jedi-or-sith
👾 南宮千影
👾 Agustín Kussrow
👾 Nattira Maneerat
👾 Heather Wcislo
👾 Serhiy Kalinets
👾 Justin Hual
👾 Otis Morgan
👾 Oscar Rahnama

--

Learn to code for free and get a developer job: https://www.freecodecamp.org

Read hundreds of articles on programming: https://freecodecamp.org/news

Generative AI
4 Views · 3 years ago

Redux: Create a Redux Store


#100DaysOfcode




Showing 559 out of 579