Skip to content

Instantly share code, notes, and snippets.

@jcoding09
jcoding09 / Reactjsnodejango.txt
Created November 10, 2024 03:17
Front end learning resources
- 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!
body {
font-family: "Geist_mono", monospace;
}
h1,
h2,
h3,
h4,
h5,
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
@jcoding09
jcoding09 / config.yml
Last active June 11, 2024 07:08
Television link
name: Update M3U8 Playlist
on:
schedule:
- cron: '0 */2 * * *'
workflow_dispatch:
jobs:
update-playlist:
runs-on: ubuntu-latest
@jcoding09
jcoding09 / script.js
Created June 10, 2024 09:05
Phone Directory
/*
## 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.
- Email
@jcoding09
jcoding09 / save-work-function.js
Created March 27, 2024 03:37 — forked from dfkaye/save-work-function.js
Saving your console work in the browser, using one of two approaches.
// 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.