Skip to content

Instantly share code, notes, and snippets.

View shawnthompson's full-sized avatar

Shawn Thompson shawnthompson

  • Montreal
View GitHub Profile
@shawnthompson
shawnthompson / gen-toc.js
Last active February 25, 2025 19:57
TOC Bookmarklet
javascript:(function() {
let headings = document.querySelectorAll("h1[id], h2[id], h3[id], h4[id], h5[id], h6[id]");
if (!headings.length) {
alert("No headings with IDs found.");
return;
}
let toc = "";
let lastLevel = 1; // Tracks the last heading level
let indent = ""; // Used for indentation
@shawnthompson
shawnthompson / .gitignore
Created January 18, 2025 21:51
.gitignore for Media server
.env
secrets/
# Ignore all .log files globally
*.log
# Ignore everything in appdata/
appdata/*
# Allow appdata/traefik3
@shawnthompson
shawnthompson / noTabindex.js
Created January 14, 2025 22:12
Bookmarklet: Remove tabindex
javascript:(function() {
var elements = document.querySelectorAll('[tabindex]');
elements.forEach(function(element) {
element.removeAttribute('tabindex');
});
})();
@shawnthompson
shawnthompson / Deployarr-list.html
Last active December 21, 2024 03:15
A webpage that lists all the Deployarr apps
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Media Server Apps Tracker</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
const markdownIt = require('markdown-it');
const markdownItAnchor = require('markdown-it-anchor');
const markdownItAttrs = require('markdown-it-attrs');
const { EleventyHtmlBasePlugin } = require('@11ty/eleventy');
const stripHtml = require('string-strip-html');
// const { slugify } = require("@11ty/eleventy");
module.exports = function(eleventyConfig) {
@shawnthompson
shawnthompson / permalink.md
Created October 5, 2023 12:15
11ty error for permalink
{
"Analysis": {
"id": "analysis",
"mainFocus" : [
"Business Vision",
"Rules",
"Requirements"
],
"description" : "Writes business requirements and/or initial user stories, are concerned with ensuring that the project delivers the agreed-upon business benefits.",
"roles": [{
@shawnthompson
shawnthompson / server_setup.md
Created May 2, 2020 17:22
Steps to setting up Ubuntu on VPS

Steps to setting up Ubuntu on VPS

  1. remove ssh to server from ~/.ssh/know_host file
  2. add sudo user adduser username
  3. give user sudo power usermod -aG sudo username
  4. switch to non root user su username
  5. update apt-get sudo apt-get update
  6. install firewall sudo apt-get ufw
  7. open SSH port in firewall sudo ufw allow OpenSSH
  8. enable firewall sudo ufw enable
@shawnthompson
shawnthompson / pullout.html
Created March 26, 2020 20:19
Shawn's pull out idea
<!DOCTYPE html>
<html>
<head>
<title>Page with pull outs</title>
</head>
<body>
<header>
<nav>
<ul>
{
"1. Perceivable": [
{
"1.1 Text Alternatives": {
"url": "",
"description": ""
},
"1.1.1 Non-text Content": {
"url": "",
"description": ""