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/sh | |
# Modified by kdmurray from the source at https://gist.github.com/mhussain/2634050 | |
# - Removed the comparison to the old WAN IP, forces an update each time the script is run | |
# - Added the touch command to an empty hidden file (~/.last-linode-ddns-refresh) to show | |
# when the last DDNS update took place. | |
LINODE_API_KEY=your-linode-api-key | |
DOMAIN_ID=your-domainid | |
RESOURCE_ID=your-domain-resourceid |
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
#!/usr/bin/python | |
import os, shutil | |
import subprocess | |
import os.path | |
from datetime import datetime | |
######################## Functions ######################### | |
def photoDate(f): |
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
OLD HTML | |
<div class="card mb-3"> | |
<a href="imgs/rev1/2020-06-06_18.47.26.png" title="click to open image"> | |
<img class="card-img-top" src="imgs/rev1/2020-06-06_18.47.26.png" alt="caption"> | |
</a> | |
<div class="card-body"> | |
<h5 class="card-title">🧑‍⚖️ The Trial</h5> | |
<h6 class="card-subtitle mb-2 text-muted">Wahrheit, _bryantkelley, assert_h, & others</h6> | |
<p class="card-text">A player was put on mock-trial for idling at a farm, and won their case!</p> |
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
/minecraft:give kdmurz netherite_pickaxe{display:{Name:'[{"text":"A Regular Pickaxe","italic":false}]'},Enchantments:[{id:efficiency,lvl:5},{id:mending,lvl:1},{id:silk_touch,lvl:1},{id:unbreaking,lvl:3}]} 1 |
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
#install chocolatey | |
Set-ExecutionPolicy AllSigned | |
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) | |
choco install chocolateygui -y | |
# @powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" | |
function main { |
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
Get-ChildItem -Directory | ForEach-Object { | |
if (Test-Path "$($_.FullName)\node_modules") | |
{ | |
Remove-Item "$($_.FullName)\node_modules" -Recurse -Force | |
} | |
} |