Skip to content

Instantly share code, notes, and snippets.

View jolbol1's full-sized avatar
💻

James Shopland jolbol1

💻
View GitHub Profile
@jolbol1
jolbol1 / test.js
Last active August 28, 2023 22:00
Test
function () {
console.log("Hello, I have executed")
}();
@jolbol1
jolbol1 / commit-and-code-lint.md
Last active July 24, 2022 01:25
How I have added commit linting and code linting to my recent projects

Quick Notes on how I add commit and code linting

Code Linting

Install ESLint and Prettier

npm install eslint prettier eslint-config-prettier  --save-dev

Initialise ESLint

npm init @eslint/config
@jolbol1
jolbol1 / gstreamer-rtsp-antmedia.md
Last active November 22, 2022 11:24
Simple instructions to use RTSP with AntMedia and WebRTC to stream your webcam
@jolbol1
jolbol1 / imdb_tools.py
Created June 15, 2020 20:07
Plex-Auto-Collections IMDB List fix for 100 movie limit.
import re
import requests
from lxml import html
from tmdbv3api import TMDb
from tmdbv3api import Movie
from tmdbv3api import Collection
from tmdbv3api import Person
import config_tools