This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Every Mod List</title> | |
<script src="https://cdn.jsdelivr.net/npm/js-yaml@4.1.0/dist/js-yaml.min.js"></script> | |
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> | |
<link rel="stylesheet" href="https://cdn.datatables.net/1.11.5/css/jquery.dataTables.min.css"> | |
<script src="https://cdn.datatables.net/1.11.5/js/jquery.dataTables.min.js"></script> | |
<style> |
This file contains hidden or 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
# .config/r2modmanPlus-local/Valheim/profiles/everymod.yml | |
import os | |
import yaml # pip install pyyaml | |
import csv | |
# Path to profiles folder = current script location | |
PROFILES_DIR = os.path.dirname(os.path.abspath(__file__)) | |
OUTPUT_YAML = os.path.join(PROFILES_DIR, "everymod.yml") |
This file contains hidden or 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
{ | |
"stonemarble_2x2x2": { | |
"StoneChisel": "1", | |
"Stone": "4" | |
}, | |
"piece_cauldron": { | |
"Tin": "10" | |
}, | |
"wooden_fence_2": { | |
"Wood": "3" |
This file contains hidden or 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
{ | |
"stonemarble_2x2x2": { | |
"StoneChisel": "1", | |
"Stone": "4" | |
}, | |
"piece_cauldron": { | |
"Tin": "10" | |
}, | |
"wooden_fence_2": { | |
"Wood": "3" |
This file contains hidden or 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
#!/bin/bash | |
# The purpose of this little script is to scan the current folder recursively looking for image files and do one of the following: | |
# - [d] display the full list of all images found for review | |
# - [s] save a linked list in markdown of all files found including their original relative path for reference | |
# - [c] copy all files found to the dump folder | |
# - [m] move all files found to the dump folder | |
# - [e] run exiftool to strip all metadata in place, no backup! |
This file contains hidden or 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
/* | |
Original by Elly Loel - https://ellyloel.com/ | |
With inspiration from: | |
- Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/ | |
- Andy Bell - https://piccalil.li/blog/a-modern-css-reset/ | |
- Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE | |
Modified by/for - d11z | |
Notes: | |
- `:where()` is used to lower specificity for easy overriding. |
This file contains hidden or 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
# d11z; shell profile | |
# - https://gist.github.com/dsthedev/f1a54a3d2f9c245efe842b78b2fe1293 | |
# | |
# if [ -f ~/.ds_sh_profile.sh ]; then | |
# . ~/.ds_sh_profile.sh | |
# fi | |
# | |
# On Windows the default file is ~/.bashrc | |
# Wifi |