Instantly share code, notes, and snippets.
Discover gists
sourcehawk /signed_helmchart_release.yaml
Last activeJuly 19, 2025 00:25
GitHub Actions: Signed Helm Chart packaging and Github Pages release for ArtifactHub 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
name:Release | |
# PREREQUISITE GPG SIGNING SETUP: | |
# | |
# 1. Create an RSA gpg key locally, add a name and an email for the gpg key along with a passphrase. Make sure you have | |
# access to to the supplied email for later steps. | |
# | |
# gpg --full-generate-key | |
# | |
# 2. Print out the gpg key and store the output in a secret called HELM_GPG_KEYRING in your github project |
dupesnduds /gist:1f58bc0e3165fdb4189d1c8a7c99938f
CreatedJuly 19, 2025 00:17
Neurodiverse Interview Toolkit 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
# Neurodiverse Interview Toolkit for Software Engineering | |
A practical, step-by-step strategy designed specifically for neurodivergent candidates to manage internal dialogue, executive function challenges, and cognitive overload during technical interviews—maximizing focus, clarity, and performance. | |
--- | |
## Overview | |
This toolkit helps externalize internal thoughts, chunk problems, reset focus when overwhelmed, and communicate clearly during software engineering interviews. It is tailored for candidates who face challenges with internal dialogue management and executive function in high-pressure interview environments. |
alexander-danilenko /script.js
CreatedApril 24, 2024 08:20
Tempermonkey: Copy Apple Music playlist information | Export Apple Music playlist to text 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
// ==UserScript== | |
//@name Apple music - Copy playlist info | |
//@description Copy playlist information in format `${index}. ${artist} - ${title}` | |
//@namespace Alex Danilenko | |
//@version 1.0 | |
//@license MIT | |
//@grant GM.setClipboard | |
//@grant GM_setClipboard | |
//@match https://music.apple.com/* | |
// ==/UserScript== |
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
"----------------Vundle Stuff ------------------" | |
setnocompatible" be iMproved, required | |
filetypeoff" required | |
" set the runtime path to include Vundle and initialize | |
setrtp+=~/.vim/bundle/Vundle.vim | |
callvundle#begin() | |
"call vundle#begin('~/some/path/here') | |
" - Go To Plugins |
LinuxSBC /1password-flatpak-browser-integration.sh
Last activeJuly 19, 2025 00:12
1Password Integration with Flatpak Browsers 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/bash | |
set -oue pipefail | |
INFO='\033[0;36m'# Cyan for general information | |
SUCCESS='\033[0;32m'# Green for success messages | |
WARN='\033[0;33m'# Yellow for warnings | |
ERROR='\033[0;31m'# Red for errors | |
NC='\033[0m'# No Color | |
echo"This script will help you set up 1Password in a Flatpak browser." |
mayuki /CredentialUI.cs
CreatedMarch 22, 2010 10:22
Windows Common Credential UI Helper for .NET Framework 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
/* | |
* CredentialUI.cs - Windows Credential UI Helper | |
* | |
* License: Public Domain | |
* | |
*/ | |
using System; | |
using System.ComponentModel; | |
using System.Runtime.InteropServices; | |
using System.Security; |
NewerOlder