Skip to content

Instantly share code, notes, and snippets.

@milnak
milnak / DaVinci Resolve Keyboard Shortcuts.md
Created April 25, 2024 23:59
DaVinci Resolve Keyboard Shortcuts

DaVinci Resolve Keyboard Shortcuts

Original found here.

For Mac, replace:

  • "Control" with "Command"
  • "Alt" with "Option"

File

@milnak
milnak / itsmine.cmd
Created April 19, 2024 17:12
Take ownership of a Windows file or folder
@ECHO OFF
FOR /f "usebackq" %%f IN (`whoami.exe /priv`) DO IF %%f.==SeTakeOwnershipPrivilege. GOTO :CHKARGS
ECHO ERROR: This script must be run as an administrator!
GOTO :EOF
:CHKARGS
IF "%~1"=="" GOTO :EOF
ECHO About to take ownership of "%~1" . . .
PAUSE
@milnak
milnak / pihole-android.md
Created April 19, 2024 02:27
PiHole not working on Android Troubleshooting Guide

PiHole not working on Android Troubleshooting Guide

Visit Can You Block It on same network on a non-Android device. Determine if ads are being blocked.

Check if Private DNS is enabled. To turn it off: Settings > Network & internet > Private DNS. Set to off.

Check if "Randomized MAC" (in WiFi settings) is enabled. Settings app > Network & Internet > Wi-Fi > Gear icon associated with the wireless connection > Advanced > Privacy. Switch to "Use device MAC address".

@milnak
milnak / RV Departure Checklist.md
Created April 18, 2024 04:29
RV Departure Checklist

Interior

Kitchen

  • Pack Loose Items: Gather all loose items in your kitchen area. This could include utensils, dishes, and food items. Make sure to store them securely to prevent damage during transit.
  • Latch and Secure All Cabinet Doors: Ensure that all your kitchen cabinet doors are closed and latched to prevent items from falling out while on the move.
  • Remove Items from the Counter: Clear your countertops to avoid any loose items from toppling over or sliding off during travel.
  • Secure Stove Top and Oven Door: Ensure that the stove top and oven door are securely fastened to prevent any accidental openings.
@milnak
milnak / RV Arrival Checklist.md
Last active April 18, 2024 04:31
RV Arrival Checklist

Arrival at Your Chosen Campground

Upon reaching your destination, follow these steps:

  • Check-In and Get Your Campsite Number: Register at the campground office and get your assigned campsite number.
  • Use Discount if Possible: If you have memberships with RV clubs like Good Sam, take advantage of these offered discounts.
  • Confirm Campsite Has All Requested Amenities: Double-check that your site is equipped with the amenities you need for your stay, such as electricity, water, and sewage connections.
  • Get a Map and Rules List for the Campground: Familiarize yourself with the campground layout and its regulations to ensure a smooth and respectful stay.
@milnak
milnak / scoop-listinfo.ps1
Created April 16, 2024 15:54
scoop list + scoop info
# "scoop info" is slow, so do it in parallel.
$ScriptBlock = {
Param([string]$app)
$info = scoop.ps1 info $app
[PSCustomObject]@{
'App' = $app
'Version' = $info.Version
'Description' = $info.Description
'Website' = $info.Website
}
@milnak
milnak / Beatles Song Ranking.md
Last active March 26, 2024 19:23
Beatles Song Ranking (from /r/TheBeatles)

Beatles Song Ranking (from /r/TheBeatles)

Album Best Song Worst Song Underrated
Please Please Me (1963) I Saw Her Standing There A Taste of Honey Do You Want to Know a Secret
With the Beatles (1963) All My Loving Little Child Don't Bother Me
A Hard Day's Night (1964) And I Love Her When I Get Home Things We Said Today
Beatles for Sale (1964) Eight Days a Week Honey Don't I'll Follow the Sun
Help! (1965) Yesterday Dizzy Miss Lizzy I've Just Seen a Face
Rubber Soul (1965) In My Life What Goes On I'm Looking Through You

Behringer TD-3 Quick Reference

WRITING A PATTERN

As an example, we will program pattern 1A of pattern group I. All writing (pitch and timing) is done in PATTERN WRITE Mode.

Writing the notes in PITCH MODE

@milnak
milnak / Set-PuttyConfiguration.ps1
Created February 13, 2024 18:25
Set Putty session color themes and defaults
# Tango Dark theme
$colors = @{
# Default Foreground
'Colour0' = '187,187,187'
# Default Bold Foreground
'Colour1' = '255,255,255'
# Default Background
'Colour2' = '0,0,0'
# Dfeault Bold Background
'Colour3' = '85,85,85'
@milnak
milnak / update_plex.sh
Created February 1, 2024 00:06
Simple script to update plex
#!/bin/bash
set -e
echo 'Enter Plex update URL:'
echo 'e.g. https://plex.tv/downloads/latest/5?channel=16&build=linux-x86_64&distro=debian'
read -r url
wget --output-document=plex.deb --continue "${url}"