Tech with Hitch
Tech with Hitch
  • Видео 52
  • Просмотров 145 330
How I Passed the AWS Cloud Practitioner Exam | My Ranking of the Best Prep Materials
In this video I cover some of the study materials that really helped me pass the AWS Cloud Practitioner exam.
For more info on the exam visit: aws.amazon.com/certification/certified-cloud-practitioner/
exam study guide: d1.awsstatic.com/training-and-certification/docs-cloud-practitioner/AWS-Certified-Cloud-Practitioner_Exam-Guide.pdf
Practice exam quiz 20q: explore.skillbuilder.aws/learn/course/external/view/elearning/14050/aws-certified-cloud-practitioner-official-practice-question-set-clf-c02-english
Official practice exam: explore.skillbuilder.aws/learn/course/external/view/elearning/18115/exam-prep-official-pre-test-aws-certified-cloud-practitioner-clf-c02
AWS Cloud Practioner course: expl...
Просмотров: 220

Видео

Create Lambda Layers | Easily Add Python Dependencies to Lambda with AWS Layers
Просмотров 9222 месяца назад
In this tutorial we cover how to add popular python packages like requests and beautifulsoup4 as dependencies to a Lambda using AWS Lambda layers. 1) We start by packaging are layer into a virtual enviorment 2) We upload the zipped folder to Lambda layers that has all the dependencies following the correct path 3) We then create a Lambda function and pick custom layer connecting the Lambda to o...
AWS Cloud Quest Cloud Practioner Full Playthrough
Просмотров 4452 месяца назад
This is my full play through of AWS Cloud Quest Cloud Practitioner. Please see my playlist for individual portions of Cloud Quest that you might be stuck on or feel free to check out my AWS Cloud Quest Cloud Practitioner playlist. Where I breakout each level/lab as it's own video. Enjoy! And best of luck with your cloud studies! Timestamps of Cloud Quest levels: 0:00:00 Intro 0:00:51 Cloud Comp...
Google Cloud Functions Python QuickStart: HTTP & Serverless Tutorial with Example
Просмотров 3,6 тыс.3 месяца назад
Hey in this tutorial I teach how to use Google Cloud Function the serverless competitor to AWS Lambdas. I cover first time setup, a real world example with dependencies, and the billing for billing info refer to - cloud.google.com/functions/pricing 0:00 Google Cloud Overview 0:30 First time cloud function prereqs 1:15 Creating the cloud function 3:30 Inline editor 5:00 Setting up google sheets ...
GPT-4 Powered Google Docs: Easy App Script Connection with OpenAI API
Просмотров 3914 месяца назад
All code used in this tutorial found here: github.com/hitchon1/google_script Also feel free to connect with me: www.linkedin.com/in/hitchon/ Learn how to use Google Apps Script to make GET requests to the OpenAI API, enabling your documents to interact with the cutting-edge intelligence of GPT-4. This guide will walk you through: -Crafting a Google Apps Script to connect with the OpenAI API. -D...
How to Connect to Microsoft Azure SQL Server with Python (w/ pyodbc)
Просмотров 1,3 тыс.4 месяца назад
I will teach you how to connect to your Azure Microsoft SQL Server using python pyodbc. We will pip install pyodbc and then build a cnxn_str The python code will look something like this: import pyodbc cnxn_str = ( 'DRIVER={ODBC Driver 17 for SQL Server};' 'SERVER=your_server_name.database.windows.net;' 'DATABASE=your_database_name;' 'UID=your_username;' 'PWD=your_password' ) conn = pyodbc.conn...
Setting Up Microsoft SQL Server and Database in Azure: Step-by-Step Start Guide
Просмотров 755 месяцев назад
Hey all in this tutorial we will be creating a Microsoft SQL server within Azure. We will need to make a database & server. Using serverless option I will show you how to do it for less than $5 per month! Here's a breakdown of what you'll learn: 1) Creating a SQL Server Instance: I'll guide you through the process of setting up a SQL Server instance within Microsoft Azure 2) Establishing a SQL ...
OpenAi Text To Speech TTS | Python Quick Start Tutorial, 5 Min Setup
Просмотров 1,5 тыс.5 месяцев назад
The ultimate 5-minute Quick Start Tutorial on OpenAI Text To Speech (TTS) in Python! OpenAI TTS, In this tutorial we go over how to setup Text To Speech using python. I demo various voices and go over the documentation. My experience with OpenAI TTS is that it isn't as good as elevenlabs or other options but is a great option to allow you to build with just the openai API key. 0:00 OpenAITTS Do...
Deploying an OpenAI Streamlit Python App on AWS EC2: Step-by-Step Tutorial (24/7 Continuous Hosting)
Просмотров 4,4 тыс.7 месяцев назад
So this video I teach you how to host Streamlit apps on AWS EC2 so they can be always on (24/7) In this tutorial I host an OpenAI chatbot I call (CatGPT) on an AWS EC2 Instance with Streamlit. The github repo used can be found here:github.com/hitchon1/AssistantAPI_Streamlit Remember you will need to adjust the python file in this repo with your Assistant API & OpenAI API key if you wish to host...
OpenAI Assistant API Quickstart: Streamlit & Python | Building a custom Cat AI in Just 13 Minutes
Просмотров 2,9 тыс.7 месяцев назад
Hey all with the recent Assistant API, building a chat bot with Python is easier than ever! We are going to be using Streamlit to build a CyberCat chat bot with the new Assistant API. We will be following the below steps: -Create an assistant -Create a thread -Create messages into the thread -Access and output the message -Poll the messages to make sure it is "success" I recommend reading the d...
Launch a Website with AWS S3 & Route 53 | AWS Static Website, Step by Step
Просмотров 1597 месяцев назад
How to host a website on Amazon S3. Today I will be purchasing the techwithhitch.com domain using Route 53. Then we will be hosting our domain in an S3 bucket. The bucket will have our HTML & CSS files inside and be configured for static hosting. Finally we will be using Route 53 to assign a custom URL. Hopefully to save you some typing here is the policy: { "Version": "2012-10-17", "Statement"...
Effortless AWS EC2 Setup: Host Your Website & Web Apps - Step-by-Step Tutorial
Просмотров 7917 месяцев назад
How to host a website on an EC2 Instance. In today's tutorial I cover how to use an EC2 Instance to host a website. So we will be creating a free tier EC2 instance and then enabling HTTP. Here are some of the commands used: sudo su yum update yum install httpd wget [Insert Zip Template Link] mv * /var/www/html systemctl status httpd systemctl enable httpd systemctl start httpd This is the websi...
OpenAI Assistants API with Python: Beginner's Tutorial - Get Started in 10 Minutes
Просмотров 1 тыс.7 месяцев назад
Wow openai asssistant api is out! That is crazy! The assistant api is the latest addition to openai it works like this: -Create an assistant -Create a thread -Create messages into the thread -Access and output the message I recommend reading the documentation here: platform.openai.com/docs/assistants/overview Please remember this is a beta but it is a big deal! Super useful to build you own ass...
Develop and Host a Slack API Bot on AWS EC2 Using OpenAI and Python: Step-by-Step Guide
Просмотров 1 тыс.8 месяцев назад
Hey all in this tutorial I will show you how to build a slack bot from start to finish including hosting our bot so it can be on 24/7. We will be using openai's GPT-3.5-TURBO following the new api structure. We will be writing our code in python. Below are links to openai documentation, my python code, and linux commands used in EC2 OpenAi documentation: platform.openai.com/docs/quickstart?cont...
Build a REST API (CRUD) with AWS Lambda, API Gateway & DynamoDB Using Python | Step-by-Step Guide
Просмотров 9 тыс.8 месяцев назад
Build a REST API (CRUD) with AWS Lambda, API Gateway & DynamoDB Using Python | Step-by-Step Guide
AWS Lambda & EventBridge: Mastering Scheduled Tasks (Cron Jobs)
Просмотров 1,2 тыс.8 месяцев назад
AWS Lambda & EventBridge: Mastering Scheduled Tasks (Cron Jobs)
AWS Lambda & EventBridge: Automating Daily OpenAI Emails about Pokemon with Cron
Просмотров 4458 месяцев назад
AWS Lambda & EventBridge: Automating Daily OpenAI Emails about Pokemon with Cron
VBA & OpenAI Tutorial: Do anything in excel with an openai powered VBA userform
Просмотров 5538 месяцев назад
VBA & OpenAI Tutorial: Do anything in excel with an openai powered VBA userform
AWS SES Lambda Tutorial: Send Emails in 3 Minutes
Просмотров 4838 месяцев назад
AWS SES Lambda Tutorial: Send Emails in 3 Minutes
How to Use OpenAI GPT-3.5 in Excel Formulas with VBA (Updated)
Просмотров 5059 месяцев назад
How to Use OpenAI GPT-3.5 in Excel Formulas with VBA (Updated)
S3 File Upload and Email with Lambda Trigger: AWS Python Step-by-Step Tutorial (Part 2/2)
Просмотров 6779 месяцев назад
S3 File Upload and Email with Lambda Trigger: AWS Python Step-by-Step Tutorial (Part 2/2)
S3 File Upload with Lambda Trigger: AWS Python Step-by-Step Tutorial (Part 1/2)
Просмотров 4289 месяцев назад
S3 File Upload with Lambda Trigger: AWS Python Step-by-Step Tutorial (Part 1/2)
Combing many CSV & Excel files in a folder using Power Query
Просмотров 2479 месяцев назад
Combing many CSV & Excel files in a folder using Power Query
Connecting OpenAI GPT-4 with Google Sheets (Google Apps Script)
Просмотров 9 тыс.9 месяцев назад
Connecting OpenAI GPT-4 with Google Sheets (Google Apps Script)
The Ultimate Power BI Dashboard Tutorial: Visualizing IMDB Movie Data
Просмотров 1,6 тыс.9 месяцев назад
The Ultimate Power BI Dashboard Tutorial: Visualizing IMDB Movie Data
Deploying AWS Lambda Functions with Docker and Amazon ECR | large 10GB packages (2023)
Просмотров 3,2 тыс.10 месяцев назад
Deploying AWS Lambda Functions with Docker and Amazon ECR | large 10GB packages (2023)
Create a Chrome Extension in JUST 10 Minutes! | Step-by-Step Easy JavaScript Build (2023)
Просмотров 11111 месяцев назад
Create a Chrome Extension in JUST 10 Minutes! | Step-by-Step Easy JavaScript Build (2023)
How to build your own AWS API with Lambda and API Gateway
Просмотров 31311 месяцев назад
How to build your own AWS API with Lambda and API Gateway
How to let GPT and Pinecone watch Youtube Videos
Просмотров 8711 месяцев назад
How to let GPT and Pinecone watch RUclips Videos
AWS Boto3 Tutorial: Connecting EC2 to S3 in Easy Steps
Просмотров 499Год назад
AWS Boto3 Tutorial: Connecting EC2 to S3 in Easy Steps

Комментарии

  • @screamingTurtle479
    @screamingTurtle479 21 час назад

    Great tutorial!!

  • @swagatggautam6630
    @swagatggautam6630 6 дней назад

    Is it possible to create history and multiple chats. Like the same as chatgpt interface. So user can go back to the previous chat and continue?

  • @vv6533
    @vv6533 7 дней назад

    can i have gui installed for windows or linux on ec2?

  • @michaelsim4390
    @michaelsim4390 7 дней назад

    Thanks alot ❤ i have been struck for days this video has really helped 😊

  • @royteicher
    @royteicher 8 дней назад

    Thanks for the tutorial! One question: This method leaves the instance alive forever therefore will cause more costs, If i want to run a script daily, what's the best practice for scheduling the EC2 instance to wake up, install dependencies and run a specific script?

  • @ryan.d.gilbert1984
    @ryan.d.gilbert1984 9 дней назад

    Amazing tutorial THANK YOU!

  • @didyouknowamazingfacts2790
    @didyouknowamazingfacts2790 12 дней назад

    I'm guessing this works the same for C++ scripts?

  • @user-vp8ib2hy5y
    @user-vp8ib2hy5y 15 дней назад

    hello sir how can contact you easly chat for info preject

  • @sanjay4675
    @sanjay4675 15 дней назад

    How to kill the nohup, its taking too much time to kill the nohup process. Please guide me through it.

  • @Fundamentalistadelbitcoin
    @Fundamentalistadelbitcoin 19 дней назад

    Thank you!

  • @pngnyc
    @pngnyc 20 дней назад

    This worked great! Thank you!

  • @BalajiMustipalli
    @BalajiMustipalli 20 дней назад

    The deployment package of your Lambda function "sheet" is too large to enable inline code editing. However, you can still invoke your function. how can i see my code and invoke it and edit it

  • @ohamadikeemmanuel9664
    @ohamadikeemmanuel9664 23 дня назад

    What if I am using a free developer account

  • @alex_strauss
    @alex_strauss 23 дня назад

    this has been super helpful ! now I can nerd out on using gpt, store data an google sheets using ai and automation

  • @inkyukim436
    @inkyukim436 23 дня назад

    Hi Hitch, are you running on Linux? (Looks like Mac OS though..). I am running on Windows and I cannot get it to work. I am wondering if it is because the AWS defaults to Linux environment so Lambda is expecting the dependencies in Linux files?

  • @EnjoyGames_
    @EnjoyGames_ 24 дня назад

    This tutorial really worked for me, keep it up! :)

  • @azizmallick3494
    @azizmallick3494 24 дня назад

    Practitioner spelling is wrong ..

  • @almenshandy
    @almenshandy 25 дней назад

    Is this free?

  • @regilearn2138
    @regilearn2138 25 дней назад

    please use react for future project

  • @BasilMathew-vz3kg
    @BasilMathew-vz3kg Месяц назад

    when i install dependencies my folder lacks 2 files names mysql_connector and mysqlxpd . both of them are absent

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

    Thank you Hicth,Your video is helpful !

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

    Hi, this setup spike my billing very high, The setup was to build lambda function to read the latest file from the s3 dir and make transformation then finally to s3 target dir, So this all setup with the python script has to run once the s3 notification to lambda function that an file just came to s3. But it went into a loop and made the s3 and lambda billing spike Let me knew what is the issue in my setup that i didn't noticed at first while running this python script in lambda

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

      I would reach out to AWS support they can be forgiving and you may be able to get a refund on this spike

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

      @@Hitchon the refund with the aws team is still in the discussion process.

    • @rennisdodman8739
      @rennisdodman8739 14 дней назад

      it sounds like u did the recursion thing where you use a s3 Push to trigger a function. correct? the problem i think is that ur function is then saving data back into the same s3 used to trigger the function. so its going to trigger the function again and again and again and again. make sure the bucket u push data to is different from the bucket that triggees ur function. doing something like: df= pd.read_parquet( trigger_bucket ) df= my_functuon(df) df.to_parquet( load_bucket ) #do not use trigger bucket

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

    I'm getting error "errorMessage": "module 'os' has no attribute 'add_dll_directory'", anyone have any idea on how to fix it? :(

  • @Xp-Sam
    @Xp-Sam Месяц назад

    I made an automation script in python which checks a certain website with dynamic content for a specific page by reloading again and again, and if the page is found it triggers me a mail. Will it work because it needs a chrome driver also

  • @franciscol.179
    @franciscol.179 Месяц назад

    Which part of the code would I need to modify so that the OpenAI assistant uses a file uploaded by the user through the Streamlit application and responds to questions about its content?

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

    How can I ask to analyze multiple cells? for example a table with data?

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

      Using chat GPT I found a workaround to select multiple cells at the same time to analyze a table with data. You can use the function TEXTJOIN in the google sheet formula. EXAMPLE: =GPT("what's the date with less session?" &TEXTJOIN("; "; TRUE;A2:B27))

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

    wow you have awesome content in your channel. I would like to request a video about react/node express file upload to AWS S3 using lambda function and DynamoDB. Please consider this request.

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

      Hi, I am so glad you like the channel! I am only somewhat familiar with react/node file upload. But I will keep this in mind and try and make a good tutorial on the above

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

      @@Hitchon yes sure, appreciate if give a try because their are no proper video in youtube, and its widely used in industry so if you can it will be an major hit.

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

    I just use the Google Apps Script GPTs to create any script. Great tutorial, though. Will definitely help getting better results faster now that I understand a few basics.

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

    whats the input maximum length? i want to make audiobooks out of my courses

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

    You're so fucking awesome I love you so much

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

    it requires pip install on linux, not windows

  • @Aryan-oe8cn
    @Aryan-oe8cn Месяц назад

    Hii ...for some reason it is not working for me...i have downloaded the excel file from the link and added my API key, it isn't showing any error but no output as well. Can you please help

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

    You covered it all, great vid!

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

    im having error with PIL library showing No module named PIL. is there any solution to this

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

    Buddy how to work with files on Ews?

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

    What if I would like to do the same process but instead of github use AWS CodeCommit, is it possible to do so ?

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

    Nice one

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

    Hi, I used your code and created a new one with the capability of managing all tokens of the conversation and identifying the user to manage more conversations

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

    This method is much more complicated than the other method which consists of copying and pasting the key into a module, are there any differences in using this method?

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

    Bonjour j'ai vu une vidéo où c'est beaucoup plus simple car c'est une simple clés gpt à 10 chiffres à copier-coller, est-ce que tu peux m'expliquer pourquoi cette méthode est différente ?

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

    first, i need to add GPT for sheet extension, right?

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

      Hey no need to add that.

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

      ​@@Hitchon It's my misunderstanding. Sometimes I turn on GPT for the sheet extension, and it uses that instead of my API.

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

    my dependency exceeds zip file upload limit of 50, can you make a tutorial on using docker image for dependencies

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

      Hi! I have a tutorial with docker you can check out here -> ruclips.net/video/UPkDjhhfVcY/видео.htmlsi=XCkU9Ak_PLUkqV3w Hope this helps you. Also my most recent tutorial was lambda layers which is another solution that may be able to help you. Good luck! And let me know if you have any other questions

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

    This is a great tutorial, super straight forward and easy to understand, thank you!!

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

    For me I needed to open editor with: EDITOR=nano crontab -e

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

    What a stupid example. Can't you think of something better instead of "meowing" all the time? So disappointed !!!!

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

    sir can we customize the delay time between the sentence?

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

    This video was amazing, great work man.

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

    Thanks

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

    I am trying the same but getting following error "errorMessage": "Unable to import module 'lambda_function': No module named 'pydantic_core._pydantic_core'", tried pip installing pydantic but didnt work also my package size is only 5 mb still aws is showing its too large for inline code editing?

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

      yooo same issue with pydantic its driving me nuts

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

    thanks man, it was helpful