// gist: https://gist.github.com/izackp/dad8090f25ed0d3cd3b2a15fdcb14dac
Version: 1.0.0
Updated: 2026/05/26
1.0.0 (2026/05/26) — initial release.
// gist: https://gist.github.com/izackp/dad8090f25ed0d3cd3b2a15fdcb14dac
Version: 1.0.0
Updated: 2026/05/26
1.0.0 (2026/05/26) — initial release.
| #!/bin/bash | |
| # These steps will allow the setup of an on-demand SSH proxy | |
| # Three unit files will be created to serve this purpose: | |
| # ssh-socks-helper.socket - The listening socket providing activation | |
| # ssh-socks-helper.service - A systemd proxy to pass the socket fd | |
| # ssh-socks.service - The actual SSH service providing the tunnel | |
| cat <<'EOF' > ~/.config/systemd/user/ssh-socks-helper.socket | |
| [Unit] | |
| Description=Proxy Helper Socket for Bastion SOCKS5 Proxy |
| // NOTE: For best viewing experience, click "Raw" in the top right of the Gist page, or download | |
| // this file and view it in your favorite text editor with syntax highlighting! | |
| //============================================== | |
| //| Title : SDL 2.0 API Quick Reference | | |
| //| Author : https://github.com/dbechrd/ | | |
| //| Last updated : Jan 8, 2023 | | |
| //============================================== | |
| // Based on: https://wiki.libsdl.org/SDL2/APIByCategory (retrieved Jan 8, 2023) |
In Session 1, Laughing Bull foretells of Spike's death being brought on by a woman.
Laughing Bull: Swimming bird will meet a woman. The bird will be hunted by this woman. And then death.
Spike: One more time.
Laughing Bull: What's that?
Spike: I was killed once before by a woman.
| package pl.snowdog.material.view; | |
| import android.content.Context; | |
| import android.graphics.Bitmap; | |
| import android.graphics.Canvas; | |
| import android.graphics.Matrix; | |
| import android.graphics.Paint; | |
| import android.graphics.drawable.Drawable; | |
| import android.os.Build; | |
| import android.renderscript.Allocation; |
| { | |
| "$type":"Models.Components.ComponentGroupVersioned", | |
| "version": 0.1, | |
| "subcomponents": [ | |
| { | |
| "$type": "Models.Components.CharacterComponent", | |
| "displayName": "Bandit", | |
| "componentRefs":["DefaultSkin", "Body", "BodyStack", "Feet", "FeetStack", "Target"] | |
| }, | |
| { |
| #!/bin/bash | |
| printf "\n** Tool to disable metadata on volume **\n\n" | |
| printf "Enable full disk access to delete files:\n" | |
| printf "\tSystem Preferences -> Security & Privacy -> Privacy -> Full Disk Access\n" | |
| printf "\tAdd Terminal to have full disk access then restart the terminal\n\n" | |
| DRIVENAME="/Volumes/$1" | |
| if test -z "$1" | |
| then |
Don't do any of this on a mac. Macos sets bits on file attributes as well as adds spotlight files and a ton of metadata files which interfer.
This is for a setup with emummc.
bootloader atomosphere sept| /* | |
| Example Usage: | |
| public int CalcScore(VideoResolution? itemResolution) { | |
| if (Util.Guard(out VideoResolution res, itemResolution)) return 0; | |
| if (res == VideoResolution._1080p) return 5; | |
| return 1; | |
| } | |
| Alternatively you can do: | |
| if (!(itemResolution is VideoResolution res)) return 0; |
| Description | Command |
|---|---|
| Create New Solution | dotnet new sln |
| Create New Library | dotnet new classlib -o library |
| Add Project to Solution | dotnet sln add library/library.csproj |
| Add Nueget Package to Project | dotnet add library package Newtonsoft.Json |
| Fix Dependencies | dotnet restore |
| Build Solution | dotnet build |
| Create Unit Test Project | dotnet new xunit -o test-library |
| Add P |