Originally found on Reddit.
Jackkell100 15h ago
# Install WinMerge per-user from https://winmerge.org/downloads | |
# or: winget install --id 'WinMerge.WinMerge' | |
# Then do "git config --edit --global" and add the following: | |
[diff] | |
tool = winmerge | |
[difftool "winmerge"] | |
name = WinMerge | |
trustExitCode = true | |
# For Machine-wide install: |
$argumentCompleterScriptBlock = { | |
param($wordToComplete, $commandAst, $cursorPosition) | |
$commands = ` | |
@{Text = 'alias'; Tip = 'Manage scoop aliases' }, ` | |
@{Text = 'bucket'; Tip = 'Manage Scoop buckets' }, ` | |
@{Text = 'cache'; Tip = 'Show or clear the download cache' }, ` | |
@{Text = 'cat'; Tip = 'Show content of specified manifest.' }, ` | |
@{Text = 'checkup'; Tip = 'Check for potential problems' }, ` | |
@{Text = 'cleanup'; Tip = 'Cleanup apps by removing old versions' }, ` |
import sqlite3 | |
database = 'C:/Users/jeffm/scoop/scoop.db' | |
try: | |
with sqlite3.connect(database) as conn: | |
cur = conn.cursor() | |
cur.execute(""" | |
SELECT DISTINCT | |
bucket, |
Originally found on Reddit.
Jackkell100 15h ago
# Based on: | |
# A surprisingly capable RPN calculator in about 100 lines of Zig code | |
# https://cryptocode.github.io/blog/docs/prefix-calculator | |
# Example session: | |
# | |
# Python RPN Calculator | |
# Type mc to clear memory slots, exit to quit. | |
# # see if 2 + 2 is still 4 | |
# # mc |
Originally found here
One of the most common questions I get is to identify someone's mystery Buffet clarinet.
Here's a quick guide, and PLEASE comment with any update/clarification/additional info.
Buffet clarinets are generally produced in one of two places: France and Germany.
From SoundMondo reface-panel JS
YC61: {
identity: [0x5C, 0x06],
groupNumber: [0x7F, 0x1C],
modelId: 0x09
},
<# | |
.SYNOPSIS | |
Take ownership of a file or folder. | |
.NOTES | |
takeown.exe and icacls.exe (both included in Windows) need to be in $env:PATH | |
If a folder is specified, all files and subfolders of that folder will change ownership. | |
#> | |
#Requires -RunAsAdministrator |
# ___ _ | |
# | _ \_ _ ___ _ __ _ __| |_ | |
# | _/ '_/ _ \ ' \| '_ \ _| | |
# |_| |_| \___/_|_|_| .__/\__| | |
# |_| | |
# Install oh-my-posh (to ~/bin): | |
# curl -s https://ohmyposh.dev/install.sh | bash -s -- -d ~/bin | |
# Download the themes: |
I couldn't find easy to follow instructions for setting up Visual Pinball X with VPinMAME, so I created one. I've tested these instructions using Windows 11. With these settings, I can run any VPX game at full speed at 2560x1440 resolution on my i9-9900K CPU with a GTX1050Ti video card.
Replace "D:" with whatever drive you prefer in the instructions that follow.
Follow these steps in order.