-
Get a proxmox ISO mounted
-
boot to bios, switch to uefi, boot to ISO
-
head to
Install Proxmox (Debug Mode)
under advanced options -
press ctrl-d to launch a terminal
-
mount zfs, then chroot into 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
#!/usr/bin/env python3 | |
# Download your data dump and place this file in the messages folder of your data dump. | |
# Then run it! | |
from datetime import datetime, timedelta, timezone | |
import dateutil.parser | |
import matplotlib.pyplot as plt | |
import matplotlib.ticker as ticker | |
import matplotlib.dates as mdates | |
import csv |
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
#!/usr/bin/env python3 | |
# Download your data dump and place this file in the messages folder of your data dump. | |
# Then run it! | |
from datetime import datetime, timedelta, timezone | |
import dateutil.parser | |
import matplotlib.pyplot as plt | |
import matplotlib.ticker as ticker | |
import matplotlib.dates as mdates | |
import csv |
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
# Caches movie covers, tv covers and other media | |
# Replace <YOUR PLEX TOKEN> with a random plex token | |
# docker-compose.yml | |
# varnish: | |
# image: "varnish:fresh" | |
# network_mode: "host" | |
# environment: | |
# VARNISH_SIZE: 2G | |
# VARNISH_HTTP_PORT: 32500 |
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
db.aggregate([{ | |
$replaceRoot: { | |
newRoot: { | |
_id: '$_id', | |
data: { | |
$objectToArray: '$$ROOT' | |
} | |
} | |
} | |
}, |
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
#!/bin/sh | |
/usr/lib/plexmediaserver/Plex\ Media\ Server \ | |
--sqlite /var/lib/plexmediaserver/Library/Application\ Support/Plex\ Media\ Server/Plug-in\ Support/Databases/com.plexapp.plugins.library.db \ | |
"UPDATE metadata_items SET added_at = created_at WHERE added_at > strftime('%s', 'now');" |
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
router id x; | |
protocol bgp as62240 { | |
local as 209808; | |
source address x; | |
neighbor x as 62240; | |
import all; | |
export filter { | |
if net ~ [2a06:e881:5404::/48] then accept; |
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
<template> | |
<div ref="container"></div> | |
</template> | |
<script> | |
export default { | |
data() { | |
return { id: null }; | |
}, |
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
navigator.serviceWorker && navigator.serviceWorker.getRegistrations().then(rs => { | |
rs.forEach(r => { | |
if (r.active && r.active.scriptURL.includes('arc-sw.js')) { | |
r.unregister() | |
} | |
}); | |
}); |
NewerOlder