Some notes for setting up DockSTARTer
DockSTARTer helps you get started with running apps in Docker.
Create data dir: mkdir /mnt/data
Edit DS config and set default dir to new path: nano ~/.config/dockstarter/dockstarter.toml
[paths]
| # Fix the ms-gamebar / ms-gamingoverlay "you'll need a new app" nag after uninstalling Xbox. | |
| # Usage: .\fix-gamebar.ps1 apply (or 'restore', or omit for a Yes/No/Cancel prompt) | |
| param([ValidateSet('apply','restore','cancel')][string]$Action) | |
| $id = 'ms-gamebar-annoyance' | |
| # Current state: is the fix already applied? (checkmark next to the matching choice) | |
| $check = [char]0x2713 | |
| if (Get-ItemProperty Registry::HKCR\ms-gamebar NoOpenWith -ErrorAction SilentlyContinue) { | |
| $applyMark = $check; $restoreMark = '' |
| { | |
| "type": "minecraft:entity", | |
| "pools": [ | |
| { | |
| "rolls": 1, | |
| "entries": [ | |
| { | |
| "type": "minecraft:item", | |
| "name": "irons_spellbooks:arcane_essence", | |
| "functions": [ |
Some notes for setting up DockSTARTer
DockSTARTer helps you get started with running apps in Docker.
Create data dir: mkdir /mnt/data
Edit DS config and set default dir to new path: nano ~/.config/dockstarter/dockstarter.toml
[paths]
Quick reference for T2 SDE development, system maintenance and hacking. Run commands from /usr/src/t2-src.
Reference docs:
| #!/bin/bash | |
| # ============================================================================= | |
| # OMD Backup Script | |
| # ============================================================================= | |
| PROGNAME=$(basename "$0") | |
| FILEDATE=$(date '+%Y%m%d') | |
| # --- Site Configuration ------------------------------------------------------ |
| def splitOnceByToken(String input, String sep) { | |
| def tokens = ["", ""]; | |
| def startPosition = 0; | |
| def isInQuotes = false; | |
| char quote = (char)"\""; | |
| for (def currentPosition = 0; currentPosition < input.length(); currentPosition++) { | |
| if (input.charAt(currentPosition) == quote) { | |
| isInQuotes = !isInQuotes; | |
| } | |
| else if (input.charAt(currentPosition) == (char)sep && !isInQuotes) { |
| #!/usr/bin/env python3 | |
| """ This module is used for monitoring directory sizes and reporting these to CheckMK. | |
| The status is automatically calculated based on WARN and CRIT levels of directory sizes. | |
| If a max_size (see: dictionary host_paths) has been configured, WARN is 80% and CRIT is 90% of max_size. | |
| """ | |
| ############### | |
| ### imports ### | |
| ############### |
| 00001 PF.Magic's Petz 3 Player | |
| 00002 Headspace Beatnik Player Stub V1.0.0.1 | |
| 00003 ZingWeb Plug-in for Netscape | |
| 00004 Windows Media Player Plug-in | |
| 00005 Parable ThingViewer 1.0 | |
| 00006 Cosmo Player 2.1 | |
| 00007 Adobe Acrobat | |
| 00008 Microsoft ActiveX Portability Container (NPWrap) | |
| 00009 VDOLive small plugin | |
| 00010 RealPlayer G2 LiveConnect (32-bit) |
| @echo off | |
| cls | |
| ::Clean Manually for deleted users on Windows HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList | |
| ::This is not a complete script!!!; supplement it with other tools if you wish. | |
| ::This script has already been tested on Windows 10 | |
| ::I am not responsible for any use that may be made of it. It is for research purposes only. | |
| netsh wlan delete profile * | |
| ipconfig /flushdns | |
| powershell -Command "Clear-DnsClientCache" | |
| arp -d * |
| import json | |
| import boto3 | |
| import os | |
| from datetime import datetime | |
| s3 = boto3.client('s3') | |
| def lambda_handler(event, context): | |
| incoming_data = json.loads(event['body']) if 'body' in event else event | |