Keith, the Coder
Keith, the Coder
  • 116
  • 1 828 681
Trigger Another Repository's Github Action Workflow and Wait for Result
In this lesson, I will walk you through triggering a workflow in a second Github repository. The most common use case is probably for triggering a single batch of tests while your code base is divided among multiple repositories. Another great use is triggering deployments of your API (in its own repo) before deploying your frontend (web app). This can be done fairly simply with a Github Action called Trigger Workflow and Wait.
Written tutorial: keithweaver.ca/lessons/trigger-another-repositorys-github-action-workflow-wait-for-result/?s=ytktc
Github Action: github.com/convictional/trigger-workflow-and-wait
Переглядів: 16 387

Відео

How to run Github Actions on a Schedule
Переглядів 9 тис.3 роки тому
It is very simple! Github Actions can use CRON schedule to trigger a workflow. Written tutorial: keithweaver.ca/lessons/how-to-run-github-actions-on-a-schedule/?s=ytktc Please subscribe!
How to Query Data using Regex from Mongo with Go
Переглядів 7573 роки тому
In this tutorial, I will show you how to query using regex in a Mongo database instance with Go code. I will be on local and provide you with all steps. Written tutorial: keithweaver.ca/lessons/go-mongo-query-regex-search/?s=ytktc Boilerplate code: github.com/keithweaver/go-boilerplate/tree/v1.0.2 Other helpful docs: docs.mongodb.com/manual/reference/operator/query/regex/
How to Query for a Random Document in a MongoDB with Go
Переглядів 9913 роки тому
In this tutorial, I will show you how to query for a random document in a Mongo database instance with Go code. I will be on local and provide you with all steps. Written tutorial: keithweaver.ca/lessons/go-mongo-query-random-number/?s=ytktc Go Boilerplate: github.com/keithweaver/go-boilerplate/tree/d65ca020d82953c11700e028fe9bb2f225e80d47 Mongo Insert with Go Video: ua-cam.com/video/XMu1Q0ASOy...
How to Delete Data from Mongo with Go
Переглядів 2323 роки тому
In this lesson, I show you the basics of delete documents in a MongoDB collection. I use the Mongo supported driver. Written tutorial: keithweaver.ca/lessons/go-mongo-delete/?s=ytktc Go Boilerplate: github.com/keithweaver/go-boilerplate/tree/d65ca020d82953c11700e028fe9bb2f225e80d47 Mongo Insert with Go Video: ua-cam.com/video/XMu1Q0ASOyY/v-deo.html (I go through the insert code more) Getting St...
How to Update Data in MongoDB with Go
Переглядів 7663 роки тому
In this lesson, I show you the basics of updating documents in a MongoDB collection. I use the Mongo supported driver. Written tutorial: keithweaver.ca/lessons/go-mongo-update/?s=ytktc Go Boilerplate: github.com/keithweaver/go-boilerplate/tree/d65ca020d82953c11700e028fe9bb2f225e80d47 Mongo Insert with Go Video: ua-cam.com/video/XMu1Q0ASOyY/v-deo.html (I go through the insert code more) Getting ...
How to Query for Multiple Documents from Mongo with Go
Переглядів 8383 роки тому
In this tutorial, I will show you the basics of doing a query for multiple documents in a Mongo database instance with Go code. I will be on local and provide you with all steps. Written tutorial: keithweaver.ca/lessons/go-mongo-query-many/?s=ytktc Go Boilerplate: github.com/keithweaver/go-boilerplate/tree/d65ca020d82953c11700e028fe9bb2f225e80d47 Mongo Insert with Go Video: ua-cam.com/video/XMu...
How to Query (Single Doc) Data from Mongo with Go
Переглядів 1013 роки тому
In this tutorial, I will show you the basics of doing a query for a single document in a Mongo database instance with Go code. I will be on local and provide you with all steps. Written tutorial: keithweaver.ca/lessons/go-mongo-query-one?s=ytktc Go Boilerplate: github.com/keithweaver/go-boilerplate/tree/d65ca020d82953c11700e028fe9bb2f225e80d47 Mongo Insert with Go Video: ua-cam.com/video/XMu1Q0...
How to Insert Data into Mongo DB with Go
Переглядів 9043 роки тому
In this tutorial, I walk you through setting up a project and inserting data into a Mongo database. You can find the written tutorial here: keithweaver.ca/lessons/go-mongo-insert/?s=ytktc1 Boilerplate code: github.com/keithweaver/go-boilerplate Thanks for watching! Please subscribe. I can be found on this channel and here: - keithweaver.ca/?s=go-mongo-insert-data-ytktc - github.com/keithweaver ...
Capture Frontend Logs & User Insights with Log Rocket & React
Переглядів 11 тис.3 роки тому
Log Rocket helps gather both user insights and logs from your frontend application. In this tutorial, I show you how to set up Log Rocket with your React.js application. Written tutorial: keithweaver.ca/lessons/capture-frontend-logs-user-insights-with-log-rocket/?s=ytktc1 Log Rocket: logrocket.com/?ref=keiththecoder Create React App: reactjs.org/docs/create-a-new-react-app.html?ref=keiththecode...
Getting Tweets for OpenAPI's GPT-3 Text Generator with Python
Переглядів 1,6 тис.3 роки тому
In this tutorial, I show you how to get Tweets from the Twitter API for build a OpenAPI GPT-3 dataset. We will put the raw text into the OpenAPI GPT-3 playground. Written tutorial: keithweaver.ca/lessons/auto-tweeting-with-open-ai-gpt3-python/?s=ytktc
Accepting Payments in Bitcoin with Coinbase & Go
Переглядів 4613 роки тому
In this tutorial, I walk you through setting up a GoLang API for accepting Bitcoin payments using the Coinbase API. We will go through all steps. SNIPPET: keithweaver.ca/lessons/accept-bitcoin-using-coinbase-and-go?lang=go&code=snippet&s=ytktc1 ALL STEPS: keithweaver.ca/lessons/accept-bitcoin-using-coinbase-and-go?lang=go&code=allsteps&s=ytktc1 If you DO NOT have a Coinbase account, use this li...
Getting Started with Go Boilerplate
Переглядів 1,1 тис.3 роки тому
Get your REST API up and running with some out of the box code. In this tutorial, I walk you through different aspects of that boilerplate code (written in GoLang) to understand how you can use it. Written doc: keithweaver.ca/lessons/getting-started-with-go-boilerplate?s=ytktc1 Other links referenced throughout the video: docs.mongodb.com/manual/reference/operator/update/set/ gowebexamples.com/...
Uploading Files to AWS S3 with Github Actions
Переглядів 14 тис.4 роки тому
Written tutorial: keithweaver.ca/lesson/uploading-files-to-aws-s3-with-github-actions?s=yktc How to setup an S3 bucket & IAM user: keithweaver.ca/lesson/setting-up-a-s3-bucket-with-cross-region-replication?s=kytc-gh-actions In this tutorials, I show you how to automatically upload files from your Github Actions workflow to your AWS S3 bucket. A common use case for this may be deploying code to ...
Scanning for NPM Vulnerabilities using Github Actions
Переглядів 5834 роки тому
In this video I explain how to set a stage for scanning for NPM vulnerabilities in a Github Actions pipeline. This is an excellent way to keep an eye on security changes while leveraging a CICD pipeline. The written tutorial is found here: keithweaver.ca/lesson/scan-for-npm-vulnerabilities-using-github-actions?s=yktc Subscribe!
Zip Code Base with Github Actions for Releases
Переглядів 3,4 тис.4 роки тому
Zip Code Base with Github Actions for Releases
Capture an IP Address using React - Perfect for Sign In, Stripe Terms of Service, etc.
Переглядів 6 тис.4 роки тому
Capture an IP Address using React - Perfect for Sign In, Stripe Terms of Service, etc.
Setting Up Github Actions for a React App on Github Pages
Переглядів 4,4 тис.4 роки тому
Setting Up Github Actions for a React App on Github Pages
Hosting a React App for Free using Github Pages
Переглядів 1,3 тис.4 роки тому
Hosting a React App for Free using Github Pages
Scanning for Maven Security Vulnerabilities using Github Actions
Переглядів 4024 роки тому
Scanning for Maven Security Vulnerabilities using Github Actions
Setting up a S3 Bucket with Cross Region Replication
Переглядів 6994 роки тому
Setting up a S3 Bucket with Cross Region Replication
Building your Command Line Interface (CLI) Tool with Python
Переглядів 47 тис.6 років тому
Building your Command Line Interface (CLI) Tool with Python
AWS DynamoDB, Node.js, React.js, Github OAuth Login Boilerplate
Переглядів 5 тис.6 років тому
AWS DynamoDB, Node.js, React.js, Github OAuth Login Boilerplate
Getting Started with AWS DynamoDB Remotely using Node.js
Переглядів 7 тис.6 років тому
Getting Started with AWS DynamoDB Remotely using Node.js
Getting Started with Amazon Web Services (AWS) DynamoDB Locally using Node.js
Переглядів 14 тис.6 років тому
Getting Started with Amazon Web Services (AWS) DynamoDB Locally using Node.js
Stripe Subscriptions with Coupons/Discounts using MERN (Node.js & React.js)
Переглядів 12 тис.6 років тому
Stripe Subscriptions with Coupons/Discounts using MERN (Node.js & React.js)
Stripe Subscriptions with Coupons/Discounts using PHP
Переглядів 6 тис.6 років тому
Stripe Subscriptions with Coupons/Discounts using PHP
Get Started with Redux using MERN Boilerplate
Переглядів 1,4 тис.6 років тому
Get Started with Redux using MERN Boilerplate
Building a React.js Component Library/Package
Переглядів 14 тис.6 років тому
Building a React.js Component Library/Package
Setting Up Continuous Integration using Semaphore for a MERN Stack
Переглядів 4116 років тому
Setting Up Continuous Integration using Semaphore for a MERN Stack

КОМЕНТАРІ

  • @israelterorisprikopat
    @israelterorisprikopat Місяць тому

    how about the time cant be prodicted ? 20s, 30s, 40s or event 600s ?

  • @mystikyogi
    @mystikyogi Місяць тому

    We tried this, it works in test mode but not in stripe live mode.

  • @jarodmorris4408
    @jarodmorris4408 4 місяці тому

    If your headers say JSON, then the data is sent as JSON. You can either do as he did and remove them so that a POST is sent and accessed via $_POST. Or you can use $jsonData = file_get_contents("php://input"); and that will make $jsonData an array similar to $_POST.

  • @navylead
    @navylead 4 місяці тому

    How can i use schedule on different branches?

  • @Savage_uchiha
    @Savage_uchiha 4 місяці тому

    Can I make it run 24/7 somehow.

  • @Christo-yq5fx
    @Christo-yq5fx 4 місяці тому

    If my notifications was in notification panel if I click the notification it is clearing by default but if I click it have to open the notification but in click I have configure it to open how to open it on windows notification panel

  • @Logic_Realm_YT
    @Logic_Realm_YT 6 місяців тому

    Thank you so much bro. I was got error by the cors policy. Now its fixed by creating. htaccess file

  • @HaifengZhu-pn3uq
    @HaifengZhu-pn3uq 8 місяців тому

    hi, is there any PHP library similar to React?

  • @JM-lc3ki
    @JM-lc3ki 9 місяців тому

    Hello, I’m completely new to pretty much all of this stuff but from what I can tell, the first program that you use was using a library to construct a PWM signal to send to the motor, but in order to construct a functional PWM signal you have to know certain information about the motor that you’re sending it to. The only spot I see where you could be doing this is where you define Motor1A, Motor1B, Motor1E as certain integers. Could you please explain what those integers mean in this context?

  • @user-fd5je5su6c
    @user-fd5je5su6c 9 місяців тому

    Brilliant. Works like a charm. Only catch is the ability to pass the index/market from which to lookup the ticker name. (Example: "AOA" on NYSE may be different than "AOA" on Nasdaq.

  • @user-ux8fy4zv3x
    @user-ux8fy4zv3x 10 місяців тому

    It's great

  • @truepatriot7355
    @truepatriot7355 10 місяців тому

    it's failing for me

  • @Denkomir
    @Denkomir 10 місяців тому

    Thanks for this video. Really explained it well.

  • @jayanth3237
    @jayanth3237 11 місяців тому

    Thanks bro keep doing more

  • @maxamedcaxmed3249
    @maxamedcaxmed3249 Рік тому

    If I’m using ec2 do I need a docker containers, thanks

  • @kannadastocktrader3369
    @kannadastocktrader3369 Рік тому

    Is this paid one??

  • @wuzhonglin3509
    @wuzhonglin3509 Рік тому

    since of golang mongo drive pool document, your video is very helpful, thank you

  • @dazealex
    @dazealex Рік тому

    Thanks Keith, this was very useful! Subbed.

  • @raulvanhoorde1215
    @raulvanhoorde1215 Рік тому

    insanely helpful.

  • @localbusinessai
    @localbusinessai Рік тому

    Love the subtle "That's not good..." haha. Great content! Love that you show the whole process and not just the ideal process.

  • @flynnpayne8494
    @flynnpayne8494 Рік тому

    amazing work Keith 👍

  • @shaynestark6687
    @shaynestark6687 Рік тому

    Try this: const transformObject = (obj) => { const result = {}; for (let key in obj) { const keys = key.split('.'); let currObj = result; for (let i = 0; i < keys.length; i++) { const currKey = keys[i]; if (i === keys.length - 1) { currObj[currKey] = obj[key]; } else { currObj[currKey] = currObj[currKey] || {}; currObj = currObj[currKey]; } } } return result; } const obj = transformObject(req.body); stripe.accounts.update( stripeAccountId, obj ).then((err, account) => { if (err) { return res.send({ success: false, message: err.message }) } res.send({ success: true, message: 'Saved!', account, }) });

  • @Doyourbest4245
    @Doyourbest4245 Рік тому

    It didn’t work in my terminal, but it worked when I ran it through my editor. I’m new and not the most intelligent person. Thank you 🙏🏼

  • @sprite7832
    @sprite7832 Рік тому

    Ok for anyone who's having trouble uploading with the correct extension. Just add 'ContentType' => 'text/plain', under $s3->putObject to let the images being able to be viewed instead of downloaded straight away.

  • @sindhuganti6954
    @sindhuganti6954 Рік тому

    hey how do I add the other API like other dataset can u tell me plz?

  • @-Exploit-
    @-Exploit- Рік тому

    i hope you code better now. i wont be negative.

  • @techabl
    @techabl Рік тому

    ya this is a great future 👍

  • @NaveenReddy-gt4pp
    @NaveenReddy-gt4pp Рік тому

    i have 3 repos A,B,C and each having workflows repo A is main(trigger)workflow if i get error message on any repo B and C will i get error notification on main (trigger) repo..... if not how to setup the configuration ?

  • @mr.RAND5584
    @mr.RAND5584 Рік тому

    Do you have simple less code example?

  • @Adhithya2003
    @Adhithya2003 Рік тому

    You are awesome man!

  • @Wolfborgg
    @Wolfborgg Рік тому

    Thanks for the video! I still had a problem towards the end but looking at your code it looks like during the cut you also added a formData to the getPHP function and used that for the fetch body. Doing that on my end too and removing the headers fixed it for me. Just leaving this here in case anyone else had a similar issue.

  • @saurabrakshit405
    @saurabrakshit405 Рік тому

    Not getting the response added the catch block also

  • @Tesseus2006
    @Tesseus2006 Рік тому

    Thank you for making this video!

  • @vmillozz
    @vmillozz Рік тому

    How render the frst level of node directory like tree?

  • @IykeAutoMusic
    @IykeAutoMusic Рік тому

    Thanks so much. The video was really helpful

  • @_sona_vlogs_
    @_sona_vlogs_ Рік тому

    Hi Sir, how to do same thing in windows Os. please do reply as early as possible

  • @ajaykiranchundi9979
    @ajaykiranchundi9979 Рік тому

    Very helpful. Thank you

  • @AmeyaNerkar_TU
    @AmeyaNerkar_TU Рік тому

    Thanks a lot Brother! That helped me a lot !!

  • @daily2432121
    @daily2432121 Рік тому

    that github schedule delay sucks

  • @vbvb805
    @vbvb805 Рік тому

    Are still around I have a question

  • @mohamedyoussef8835
    @mohamedyoussef8835 Рік тому

    Awesome video +++++++++++++++ 😃

  • @chokinghazardgaming7511
    @chokinghazardgaming7511 Рік тому

    I appreciate this video a lot. I've spent a week trying to implement smtplib with my gmail to send notifications for a practice app and I finally just gave up and started looking for other ways to make it happen. This video helps a lot although I didn't run into as many issues installing packages.

  • @mohamedyoussef8835
    @mohamedyoussef8835 Рік тому

    Thank you ++++++++++++++ 😃

  • @mohamedyoussef8835
    @mohamedyoussef8835 Рік тому

    Awesome video +++++++++++++++++ 😃

  • @Ravi_Goyal
    @Ravi_Goyal Рік тому

    I have to save 120fps video and using it is taking 40ms per frame to write and it is very slow is there any other way.

  • @seqthomas1345
    @seqthomas1345 Рік тому

    The Cross-Origin Resource Sharing (CORS) has been changed and needs to be in array format now. The following worked for me: [ { "AllowedHeaders": [ "*" ], "AllowedMethods": [ "GET", "PUT", "POST", "HEAD", "DELETE" ], "AllowedOrigins": [ "*" ], "ExposeHeaders": [], "MaxAgeSeconds": 3000 } ]

    • @Florin_A
      @Florin_A Рік тому

      I was looking exactly for this comment, thanks a lot bruda. Maybe Keith could update this video ?

  • @musmannadeem4239
    @musmannadeem4239 2 роки тому

    can you make a video how to renew? and i also found we can set CRON job so when ever ssl got expire, it will update by itself. nice video

  • @BrayanLoayza
    @BrayanLoayza 2 роки тому

    Thanks bro, it helps me a lot.

  • @akshaybhat9040
    @akshaybhat9040 2 роки тому

    Hello keith, I have one python project in which many funstions will run only in the terminal of the vs code . I want to replace CLI with simple frontend using django. Can you please tell me how this can be achived . Please reply . thanks in advance

  • @titocandraseptio7636
    @titocandraseptio7636 2 роки тому

    ini Keith yang tinggal di Indonesia bukan? yang aslinya orang UK ?