Skip to content

Instantly share code, notes, and snippets.

View skyzyx's full-sized avatar
👾
OOICU812

Ryan Parman skyzyx

👾
OOICU812
View GitHub Profile
@jamtur01
jamtur01 / ladder.md
Last active February 17, 2025 09:09
Kickstarter Engineering Ladder
@steve-jansen
steve-jansen / docker-inspect.sh
Created August 19, 2016 01:55
List labels for a docker container
docker inspect -f '{{ range $k, $v := .ContainerConfig.Labels -}}
{{ $k }}={{ $v }}
{{ end -}}' $cid
@steven2358
steven2358 / ffmpeg.md
Last active June 8, 2025 14:44
FFmpeg cheat sheet
@kumlali
kumlali / Setting_up_Debian_repositories_with_JFrog_Artifactory.md
Last active March 16, 2024 04:06
Setting up Debian repositories with JFrog Artifactory

Setting up Debian repositories with JFrog Artifactory

While I was searching for how I use Artifactory as Debian repository, I came across official Artifactory documentation: How do I cache artifacts from a remote Debian repository?. But, it did not work because there is no apt-add-repository command as documentation mentioned. I had to figure out the correct way by myself and following steps worked for me.

Resources

@PixelSergey
PixelSergey / dump.md
Last active June 6, 2025 22:43
Dump games with godmode9

Dumping games with Godmode9

Dumping games is the act of taking a game from your system or gamecart and copying it into a readable format onto your SD card. Dumping is perfectly legal if you keep the dumps to yourself, however sharing these dumps is piracy and is illegal.

This guide will tell you how to dump games from various formats and for various purposes. Dumping 3DS cartriges as .cia files is good if you want to install them to your system. Dumping them as .3ds files is good for emulators. Installed titles cannot be dumped as .3ds files. NDS cartiges can only be dumped as .nds files and cannot be installed (however, you can play them with emulators or flashcarts).

Dumping the RomFS of a game is primarily for romhacking purposess.

#!/usr/bin/env bash
set -euo pipefail
#---------------- CONFIGURATION ----------------#
GITHUB_ORG="your-org-here" # Replace with your GitHub organization
MAX_PRS=0 # Maximum number of PRs to create (0 for unlimited)
SEARCH_LIMIT=1000 # Limit for search results
BRANCH_NAME="fix/update-workflow-always-conditions"
PR_TITLE="Replace always() with !cancelled() in workflows"