Name | License | Source |
---|---|---|
7-Zip | Open Source | |
Audacity | Open Source | |
Audiveris | Open Source | |
Autodesk Fusion 360 | Free License | |
AutoIt | Freeware | |
Battle.net | Platform | |
Blender | Open Source |
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
-- SQL Server Logins | |
select | |
'create login [' + sp.[name] + '] with password=0x' + CONVERT(nvarchar(max), l.password_hash, 2) + ' hashed, sid=0x' + convert(nvarchar(2000), sp.[sid], 2) + ', default_language = [us_english];' | |
from | |
master.sys.server_principals sp | |
inner join master.sys.sql_logins l on sp.[sid] = l.[sid] | |
where | |
sp.type_desc = 'SQL_LOGIN' | |
and sp.is_disabled = 0 | |
and sp.default_language_name = 'us_english' -- helps target the specifically created logins |
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
// https://www.gatekeeperhq.com/ | |
// The Vendor & Contract Lifecycle Management (VCLM) Platform | |
// Webhook 'documentation' on Settings page is for Ruby, incomplete and does not include that the crc_response is to be base64 encoded. | |
// Video on Knowledgebase contains Python script which shows this is the case: | |
// https://knowledge.gatekeeperhq.com/en/docs/webhooks | |
import * as crypto from "crypto"; | |
export default defineComponent({ | |
async run({ steps, $ }) { |
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
# Done successfully on a Toshiba THNSNJ512GCSY | |
# WARNING: ALL DATA ON THE DRIVE WILL BE LOST; DON'T DO THIS UNLESS YOU KNOW ITS WHAT YOU NEED | |
# This is a series of shell commands, not a functional script | |
# Once unlocked, the drive should be able to be initialized/MBR written and partitions created. | |
sudo -s | |
# Identify drives | |
lsblk |
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
param ( | |
[String] $Process = 'gswin64c', | |
[Int] $MaxRunTime = -5 | |
) | |
try{ | |
Get-Process $Process -ErrorAction Stop | Where StartTime -lt (Get-Date).AddSeconds($MaxRunTime) | Stop-Process -Force | |
} catch { | |
# No process to kill, good to go | |
# Exit as non-zero so Boomi takes Try-Catch route and continues processing |
When upgrading to Terraform 0.13 where runs driven by VCS and state is stored remotely (in this case Terraform Cloud)
I had an issue where a public Github module I was using included versions.tf which fails on older terraform versions.
I'd never used terraform
locally, only connected the repository to Terraform Cloud.
The terraform 0.13upgrade
is only in the 0.13 binaries, I had to download the old binary for my OS and run that specifically.
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
var recipe = {}; | |
recipe.name = item.name_with_subtitle; | |
recipe.recipe_yield = '4 Servings'; | |
var ingredients = []; | |
item.ingredients.forEach((ingredient) => { | |
ingredients.push(ingredient.name_with_quantity); | |
}); | |
item.assumed_ingredients.forEach((ingredient) => { | |
ingredients.push(ingredient.name); |
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
## Prep SD card | |
# wpa_supplicant.conf | |
touch /boot/ssh | |
echo "enable_uart=1" >> /boot/config.txt | |
## Boot, ssh | |
uname -a | |
# Linux gatelpr 5.10.63+ #1496 Wed Dec 1 15:57:05 GMT 2021 armv6l GNU/Linux |
https://www.oracle.com/java/technologies/javase-downloads.html
Install to the default location, eg: C:\Program Files\Java\jdk-14.0.2
- keytool.exe
- jarsigner.exe
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
# https://github.com/aircrack-ng/rtl8188eus | |
sudo apt update | |
sudo apt install bc | |
sudo rmmod r8188eu.ko | |
git clone https://github.com/aircrack-ng/rtl8188eus | |
cd rtl8188eus | |
sudo -i | |
echo "blacklist r8188eu.ko" > "/etc/modprobe.d/realtek.conf" | |
exit |
NewerOlder