This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Code with Stein -> Django + Vue | |
- Tech with Tim, CodingEntrepreneurs, Dennis Ivy -> Django + React | |
- Very Academy -> Django + Next.js or Django + React (the best on Youtube when it comes to Django in my opinion) | |
There is also Mosh Hamedani who released a series on Django including Django DRF. | |
He goes much more in-depth than Maximilian (caching with Redis and background tasks with Celery + advanced ORM techniques). I highly recommend it! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
font-family: "Geist_mono", monospace; | |
} | |
h1, | |
h2, | |
h3, | |
h4, | |
h5, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install software-properties-common | |
sudo add-apt-repository ppa:team-xbmc/ppa | |
sudo apt-get update | |
sudo apt-get install kodi | |
top | |
sudo pill -9 kodi.bin | |
sudo pkill -9 kodi.bin | |
sudo apt-get install kodi-pvr-iptvsimple |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update M3U8 Playlist | |
on: | |
schedule: | |
- cron: '0 */2 * * *' | |
workflow_dispatch: | |
jobs: | |
update-playlist: | |
runs-on: ubuntu-latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
## Requirements: | |
- It has three fields Name, Mobile and Email. All 3 are required fields. | |
- Clicking on the Add Contact button should add the contact to the table. | |
- Before adding a contact, the following validations should occur: | |
- Name - Should contain only Alphabets and Space. Should be less than or equal to 20 characters in length. | |
- Mobile - Should contain only Numbers.Should be equal to 10 characters in length. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 22 July 2022 | |
// Save() function for saving your console script experiments. | |
// See the long explanation on this gist at | |
// https://gist.github.com/dfkaye/d3c7d0d59cb03616ad2eee8eec1141a5#file-save-your-console-work-js | |
// Save() takes an array of script functions and fragments, | |
// and prints them as a single text block to the console, | |
// and attempts to download the text block to your browser's | |
// downloads folder. |