Jonah Lawrence • Dev Pro Tips
Jonah Lawrence • Dev Pro Tips
  • Видео 44
  • Просмотров 1 316 281
GitHub Star Swag Unboxing and Giveaways
How I became a GitHub Star and unboxing GitHub Star swag and GitHub Nova swag gifts
❤ Subscribe: bit.ly/SubscribeDPT
Join Discord for Giveaways 🗨️ bit.ly/dpt-discord
About GitHub Stars: 🌟 stars.github.com/
📺 In this video:
0:00 - Introduction
0:13 - How I became a GitHub Star
0:59 - Swag unboxing
2:12 - Giveaways and Conclusion
🙋‍♂️ Find me on other channels
Discord 🗨️ bit.ly/dpt-discord
Twitter ✍ DenverCoder1
Github 👨‍💻 github.com/DenverCoder1
Sponsor 💞 github.com/sponsors/DenverCoder1
Buy me a coffee ☕ ko-fi.com/jlawrence
💖 SPONSORS 💖
Get your username or a link to your channel here by sponsoring on GitHub
▶ github.com/sponsors/DenverCoder1
🎁 GET FREE STUFF WHILE SUPPORTING MY TUTORIALS
► bit....
Просмотров: 621

Видео

How To Self-Host GitHub Readme Streak Stats on Vercel
Просмотров 2,6 тыс.Год назад
In this video, I will show you the steps for deploying GitHub Readme Streak Stats to Vercel for free using the Deploy button. ❤ Subscribe: bit.ly/SubscribeDPT 👨‍💻 GitHub Readme Streak Stats Repo github.com/DenverCoder1/github-readme-streak-stats 💬 Dev Pro Tips Discussion & Support Server discord.gg/fPrdqh3Zfu 📺 In this video: 0:00 - Introduction 0:32 - Deploying to Vercel 2:12 - Adding your car...
Automatically Deploy to Fly.io with GitHub Actions
Просмотров 9 тыс.2 года назад
How to create a GitHub Action for automatically deploying to Fly.io on every push to GitHub ❤ Subscribe: bit.ly/SubscribeDPT Part 1 - see my video on hosting a bot on Fly.io for setting up the Dockerfile, fly.toml and repository secrets - ruclips.net/video/J7Fm7MdZn_E/видео.html 👨‍💻 Source Code fly.yml - github.com/DenverCoder1/tutorial-discord-bot/blob/eede71e/.github/workflows/fly.yml 💬 Dev P...
Hosting a Python Discord Bot for Free with Fly.io
Просмотров 16 тыс.2 года назад
Hosting a Discord Bot made with Python on Fly.io ❤ Subscribe: bit.ly/SubscribeDPT See my previous video on bot hosting here: ruclips.net/video/EreE-0hQibM/видео.html As Heroku is no longer going to be free after November 28, 2022, I am sharing another way to host a Discord bot 24/7 for free. You will be able to host any kind of bot on Fly.io with no limitations by following the steps in this vi...
Making a Wordle Clone Discord Bot with Python (Nextcord)
Просмотров 6 тыс.2 года назад
How to make a Wordle style puzzle game for Discord using the Python library Nextcord! ❤ Subscribe: bit.ly/SubscribeDPT In this video, I will be using the Nextcord fork of Discord.py to make a slash command for starting a new game, and using on_message to listen for replies to the message and updating the puzzle. This is an unofficial clone, not affiliated with the creators of Wordle. To make th...
Run Open Source Code in Seconds with GitPod
Просмотров 9 тыс.3 года назад
Build, run, edit, and commit your GitHub code in seconds in your browser! Some editors such as github1s and github.dev let you view code online, but with GitPod, you can also run your scripts and code! ❤ Subscribe: bit.ly/SubscribeDPT In this tutorial, I will be showing you how to use GitPod.io to build and run your code online in seconds with full terminal access! You can create fork repositor...
Custom Help Commands [#2] Select Menus - Python Discord Bot
Просмотров 13 тыс.3 года назад
How to create a custom Discord bot embed help command with Select Menus in Python with discord.py, nextcord, or similar forks ❤ Subscribe: bit.ly/SubscribeDPT In this video, I will be using the Nextcord fork of Discord.py to show you how to add Select Menus to a custom help command made by subclassing the built-in HelpCommand class. Check out part 1 to see how the original custom Help Command w...
Custom Help Commands [#1] Embeds - Python Discord Bot
Просмотров 11 тыс.3 года назад
How to create a custom Discord bot embed help command in Python with discord.py, nextcord, or similar forks ❤ Subscribe: bit.ly/SubscribeDPT In this video, I will be using the Nextcord fork of Discord.py to show you how to make a custom help command by subclassing the built-in HelpCommand class. This is the first video in a series of videos on custom help commands. In upcoming videos I will sho...
Assigning Roles with Buttons - Python Discord Bot Tutorial
Просмотров 21 тыс.3 года назад
How to add button components for role assignments to your Python Discord bot with Nextcord. ❤ Subscribe: bit.ly/SubscribeDPT In this video, I will be using the Nextcord fork of Discord.py to make button components that correspond to roles that will be assigned to the user when they click them. This is similar to the old way of doing reaction roles, but this time, we can use real buttons! The bu...
Migrating Discord Bots from Discord.py to Nextcord
Просмотров 7 тыс.3 года назад
How to migrate from discord.py to the maintained fork, Nextcord ❤ Subscribe: bit.ly/SubscribeDPT In this tutorial, I will be discussing the closure of discord.py, the alternatives, and how to migrate your Python Discord bot from discord.py to nextcord. 👨‍💻 Source Code github.com/DenverCoder1/Tutorial-Discord-Bot/tree/nextcord-migration 💬 Dev Pro Tips Discussion & Support Server discord.gg/fPrdq...
Edit and RUN your code from GitHub online in seconds (See description)
Просмотров 49 тыс.3 года назад
UPDATE: Anyfiddle is no longer under operation. Check out GitPod as an alternative: ruclips.net/video/Mt_Bsj6K9Lw/видео.html Build, run, edit, and commit your GitHub code in seconds in your browser! This video is *not* about github1s or github.dev, it's even better! ❤ Subscribe: bit.ly/SubscribeDPT In this tutorial, I will be showing you how to use Anyfiddle's GitHub integration to build and ru...
Keeping your dependencies updated automatically with Dependabot
Просмотров 4 тыс.3 года назад
How to use the GitHub dependency bot to make sure your packages stay up to date without breaking your code ❤ Subscribe: bit.ly/SubscribeDPT In this tutorial, I will be showing you how to add versions to Python dependencies and how to set up Dependabot to run on your GitHub repository to make sure you always have the latest version in your requirements.txt. Dependabot will send Pull Requests to ...
Creating Cogs and Commands - Python Discord Bot
Просмотров 11 тыс.3 года назад
How to add cog modules and more commands to a Python Discord Bot ❤ Subscribe: bit.ly/SubscribeDPT In this tutorial, I will be showing you how to create cogs in a Discord bot to make maintainable and scalable code and I will also show you how to make more advanced commands that take multiple or unlimited parameters. The commands I will be showing you how to make in this video are a dice rolling ...
How to Host a Discord Bot 24/7 for FREE
Просмотров 29 тыс.3 года назад
Hosting a Discord Bot with Python with Heroku, VPS, or self-hosting ❤ Subscribe: bit.ly/SubscribeDPT In this tutorial, I will show you the pros and cons of VPS Hosting, Self-Hosting, and hosting on free cloud platforms. I will also show you how to set up your bot to run 24/7 on Heroku 100% for free. Note: If you want a website and a bot, don't put them in the same app because Heroku will make y...
Building a Discord Bot with Python - Bot Basics
Просмотров 4,7 тыс.3 года назад
How to make a Basic Discord Bot with Python ❤ Subscribe: bit.ly/SubscribeDPT In this tutorial, I will be showing you how to get started with building bots for Discord. You will learn how to create a bot user for running a bot, how to install the necessary libraries, and write a bot that can respond to messages and commands. 👨‍💻 Source Code github.com/DenverCoder1/Tutorial-Discord-Bot/tree/part-...
How to Bulk Rename Files Easily on Windows
Просмотров 1,6 тыс.3 года назад
How to Bulk Rename Files Easily on Windows
Getting the user's location with JavaScript (Geolocation API tutorial)
Просмотров 12 тыс.4 года назад
Getting the user's location with JavaScript (Geolocation API tutorial)
Build a Weather App with HTML, CSS & JavaScript
Просмотров 326 тыс.4 года назад
Build a Weather App with HTML, CSS & JavaScript
Making a Responsive (Birthday) Card with HTML and CSS
Просмотров 51 тыс.4 года назад
Making a Responsive (Birthday) Card with HTML and CSS
How to Create Custom Snippets for Any Language in VS Code
Просмотров 2,3 тыс.4 года назад
How to Create Custom Snippets for Any Language in VS Code
How to Type HTML and CSS Faster with Emmet
Просмотров 2,1 тыс.4 года назад
How to Type HTML and CSS Faster with Emmet
Top 10 VS Code Extensions Every Developer Should Know About
Просмотров 9844 года назад
Top 10 VS Code Extensions Every Developer Should Know About
Heroku Tutorial - Deploy your app or website in under 10 minutes for free
Просмотров 17 тыс.4 года назад
Heroku Tutorial - Deploy your app or website in under 10 minutes for free
Making a View Counter for GitHub Repos - Easy PHP Tutorial
Просмотров 2 тыс.4 года назад
Making a View Counter for GitHub Repos - Easy PHP Tutorial
Learn to use RegEx in Google Sheets in 10 minutes
Просмотров 17 тыс.4 года назад
Learn to use RegEx in Google Sheets in 10 minutes
Making a PR with Github Desktop for Hacktoberfest
Просмотров 1 тыс.4 года назад
Making a PR with Github Desktop for Hacktoberfest
Making a Userscript - Setup and JavaScript Tutorial
Просмотров 19 тыс.4 года назад
Making a Userscript - Setup and JavaScript Tutorial
Increase your online productivity with Userscripts
Просмотров 1,9 тыс.4 года назад
Increase your online productivity with Userscripts
Javascript Regular Expressions Tutorial in One Video
Просмотров 1,2 тыс.4 года назад
Javascript Regular Expressions Tutorial in One Video
Regex Essentials - Advanced Expressions (Part 2)
Просмотров 5 тыс.4 года назад
Regex Essentials - Advanced Expressions (Part 2)

Комментарии

  • @clutteredvulture
    @clutteredvulture 2 дня назад

    how did i not know this existedddd

  • @gate-biomed
    @gate-biomed 3 дня назад

    ½∫ (not working) ²

  • @markensecurity
    @markensecurity 5 дней назад

    whtf you what is localh

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

    Umm it's not working

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

    tnaks!

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

    watched it at 16x

  • @AWSMcube
    @AWSMcube 3 месяца назад

    I can feel neurons in my brain making new connections with each passing second of this video. Thank you, this video is great

  • @Failedlegend
    @Failedlegend 3 месяца назад

    don't waste time watching this vid and installing unnecessary programs just press F12 to open console and enter this document.getElementsByTagName("video")[0].playbackRate = x (x = multiplier)

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

    This as At WebPage is HTML On My LocalHost:Number is The Code To This By, System32 On Cmd Flie? -_- What Happen You Just Downloaded Lol. [You Can Need i ReStart Your WebPage Computers]

  • @SidneiMV
    @SidneiMV 6 месяцев назад

    Thanks. Very useful

  • @priyasrivastava05_
    @priyasrivastava05_ 6 месяцев назад

    hi , does this api work for all countries , like im using it from india?

  • @vishishtsingh6694
    @vishishtsingh6694 7 месяцев назад

    Thanks buddy❤

  • @imamsharif3777
    @imamsharif3777 7 месяцев назад

    Lower limit, upper limit in integration??

  • @CH3llYR
    @CH3llYR 7 месяцев назад

    誒哦各自關節成交額這個業者提供業者歐辰尼特以及太子炸的唯一值得隔夜一個一個躺著也儀軌這也一直特有種游泳池呀呀呀呀呀夭折喔找阿哲喔耶直達偶蹄這個字眼高額觀光業者字體具有提供吃完個字也出過產業喔超維持女辨識四百公尺而網購惡臭牙齒節奏惡搞惡臭油漬right arrow交惡自己此刻歐春節前醜惡蚵仔可是開始哭越晚 ight arrow交惡自己此刻歐春節前醜惡蚵仔可是開始哭越晚去餐廳聚餐根據我今天參加屠宰場鐵礦災厄各自各科走過出口

  • @dodgewagen
    @dodgewagen 7 месяцев назад

    Thank you. Very useful!

  • @4eyedSenpai
    @4eyedSenpai 7 месяцев назад

    Wonderful video. Thank you so much!

  • @dhrubajyotipaul8204
    @dhrubajyotipaul8204 8 месяцев назад

    Incredibly grateful, Jonah! Thank you!

  • @wilswils1094
    @wilswils1094 8 месяцев назад

    Merci !

  • @dito1439
    @dito1439 8 месяцев назад

    really good, i go from "github-readme-streak-stats" repo <3, i created pull request that was accept hopefully.

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

    /frac

  • @Jef-ur7zv
    @Jef-ur7zv 9 месяцев назад

    clear video thanks

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

    Is it possible to run hardhat and other tools here, too? With Solidity and TypeScript. Thanks!

  • @RC-Flight
    @RC-Flight 9 месяцев назад

    Nice video, thanks. When you use metric as your units, the wind speed will be displayed in meters per second (m/s) as the metric default, NOT km/h. Is there a way to actually convert the speed from m/s to km/h?

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

    Thank you for the tutorial. I have a problem, when a put on .weather.loading {visibility: hidden;} my div don't change his dimensions. He remains the same, he's not changing the height like in the video. I also do the same as you with all, even the document.querySelector(".weather").classList.remove("loading"); in the displayWeather function, but nothing change.

  • @hS101-AlishbaKhan
    @hS101-AlishbaKhan 10 месяцев назад

    Can we upload the videos in the same manner?

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

    Thanks bro!

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

    It didn't work

  • @enddigital2377
    @enddigital2377 11 месяцев назад

    I had to use two api's, one for lat and lon and the other for weather data. thank you for the informative video.

    • @rudambiswas8998
      @rudambiswas8998 7 месяцев назад

      Can you just send me just the code how you use the api part please

  • @chetanbaghel6731
    @chetanbaghel6731 11 месяцев назад

    Is it really safe to import font data from outside into the keyboard?

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

    If you've a video of how exactly we can contribute a new theme in your open source stats, please share.

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

    ran into a few hiccups but it all worked out in the end. thanks a lot bro

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

    " no step-by-step results found " but my account is trial, why?

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

    didn’t work

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

    sound is very low

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

    Mind blowing! Programming just got a hell of a lot simpler.

  • @विवेकगौतम-न4ल

    How it can be done in android mobile..🤔🤔

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

    It didn't work

  • @HAmitSingh-wx5rj
    @HAmitSingh-wx5rj Год назад

    Sir if imege not available then but

  • @HAmitSingh-wx5rj
    @HAmitSingh-wx5rj Год назад

    Nice video sir

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

    ∞ ℕ ∫₋ ᪲ ͚ indeed it works

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

    Great Tutorial! Although I do have a audio bot that is able to enter the chat but won't play the audio file. Is there an extra step I have to take?

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

    Okay let's say she is holding the logs weighing 100kgs each. In daily life when we use the term weigh we mean mass because the instruments that we use is made such that it accounts for acceleration due to gravity and so only displays the mass of the object being weighed. So now that we have established that the 100 kg is mass (M) of the logs. Let's go ahead to our calculations. The tension in each of the chains will be equal to M*g*cosθ / sin(θ - α). Since there are 2 chains. The force applied becomes 2*M*g*cosθ / sin(θ - α). Here θ is angle formed by log and the platform and α is the angle formed by her arms and the platform, M is mass of 1 log, g = 9.8m/s². Eyeballing the angles I am putting the values of θ and α to be 67.5 and 22.5 degrees respectively. I have taken these values because θ is somewhere between 45 and 90 degrees and α is somewhere between 0 and 45 degrees. On putting the value of angles the total tension comes out to be Mg*1.0823 N . So the effective mass that she is holding is M*1.0823 = 108.23 Kg. (M = 100kg). So the mass being held up is 108.23 kgs approx and not 200kg as the video makes it seem. Although this 108.23 kg is amazing it's not enough weight to rip an average person in half. Also a reminder that the 108.23 kg is total weight being balanced. So the weights experienced by each hand is just 54.11 kg .

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

    how do you make it faster than 16

    • @huurmoonec
      @huurmoonec 11 месяцев назад

      У меня тоже вопрос почему 16 - максимальная скорость. если попробовать командой на javascript, то при выставлении скорости больше 16 пишется ошибка. Зато можно вместо числа поставить математическое значение, равное числу, и команда всё равно сработает, если число меньше 16. вот сама команда: document.getElementsByClassName("video-stream html5-main-video")[0].playbackRate = 16; также можно ввести как ссылку если добавить к началу команды javascript: и вроде как должно сработать как команда, а не открыть...

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

    Math problem: In order to use a ev firetruck to put down a fire, we need a second ev firetruck to prevent the first ev firetruck from spontaneously combust. In order to prevent the second ev firetruck from spontaneously combust, we need a third firetruck... How many ev firetrucks do we need to put down a fire.

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

    i got diploma in computer science, degree in IT but when come to git project or git related, i'm totally blur. i learned pascal,c,c++,sql,VB in my time