Skip to content

Instantly share code, notes, and snippets.

View slimlime's full-sized avatar
😀
Hello, welcome to Weiber.

slimlime

😀
Hello, welcome to Weiber.
  • Australia
View GitHub Profile
@slimlime
slimlime / geforce_games_with_no_steam_gg_cloud_gg.csv
Last active October 19, 2021 20:53 — forked from GeekyDeaks/geforce_games_with_no_steam.csv
This is a list of Geforce games that do not have a Steam AppID specified. This data is completely unrelated to SteamDB and came from geforce.com graphql.
type title publisherName developerName sortName shortName appStore storesFlat
gg gg gg gg gg gg gg gg
DLC #Chroma Test 20007 - Type DLC Anbox Developers #chroma_test_20007_-_type_dlc STEAM STEAM=test-id12-3456
APPLICATION 1162019blender2.79b Adobe 1162019blender2.79b UNKNOWN
APPLICATION 1172019blender Adobe 1172019blender UNKNOWN
APPLICATION 1172019vlc Adobe 1172019vlc UNKNOWN
APPLICATION 3DS Max 2018 iRay VRay 3ds_max_2018_iray_vray UNKNOWN
APPLICATION 3vijia GPU Rendering - DLSS 3vijia_gpu_rendering_-_dlss UNKNOWN
APPLICATION Adobe Bridge 2018 Adobe adobe_bridge_2018 UNKNOWN
APPLICATION Adobe Fuse 2018 Adobe adobe_fuse_2018 UNKNOWN
@slimlime
slimlime / ActionReplayCodeTypes.txt
Created July 16, 2021 01:11 — forked from Nanquitas/ActionReplayCodeTypes.txt
CTRPF-Action Replay Code Types
###############################
# Action Replay #
# Code Types supported by #
# CTRPluginFramework #
# v0.5.0 #
###############################
==============
INFO
==============
@slimlime
slimlime / gen-key.bash
Created June 9, 2021 04:33 — forked from sycobuny/gen-key.bash
Quick script to generate new GPG keys (and export pertinent details)
#!/bin/bash
# Print a welcome banner for the user.
function Welcome() {
echo ""
echo "================================"
echo "Welcome to the GPG Key Generator"
echo "================================"
echo "Please select a STRONG passphrase. Once entered and verified, the"
echo "system must generate and collect enough random data to create your"
@slimlime
slimlime / .bashrc
Last active March 19, 2022 19:33
dotfiles
# Share ssh session between terminals see sock tok
env=~/.ssh/agent.env
agent_load_env () { test -f "$env" && . "$env" >| /dev/null ; }
agent_start () {
(umask 077; ssh-agent >| "$env")
. "$env" >| /dev/null ; }
@slimlime
slimlime / generate-non-overlapping-sequences.js
Last active March 27, 2021 08:03
Generate non-overlapping (gapped) sequences. Partitioned sequences auto-incrementing numbers. generate-non-overlapping-sequences.js
/**
* Quick no doco utility fn. Not sure what the SEO for searchability of this concept is.
* Reminds me of a hacky workaround for distributed database reconciliation of separately incrementing distinct IDs
* Can probably shift some parameters to different places.
* Functional! FP
* - TODO: Rename to "get____" function name convention. ref transp
*/
function generateSteppedSequence(
stepNumberOfSequences,
originalBaseLength,
@slimlime
slimlime / README-Couchbase-Docker.adoc
Created January 11, 2021 01:11 — forked from HodGreeley/README-Couchbase-Docker.adoc
Docker Scripts to Simplify Setup with Couchbase

Docker Scripts to Simplify Setup with Couchbase

@slimlime
slimlime / private_fork.md
Created November 18, 2020 00:33 — forked from 0xjac/private_fork.md
Create a private fork of a public repository

ravicious commented on Aug 14, 2019 Nowadays you should be able to just use the Import a Repository feature. Not sure if you can import someone's repo straight away, but I first did a public fork and then imported that as private.

The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.

The correct way of creating a private frok by duplicating the repo is documented here.

For this assignment the commands are:

@slimlime
slimlime / git bash ssh agent.md
Created July 28, 2020 22:34 — forked from Peregrinox/git bash ssh agent.md
configure your git bash to run agent on start
ssh-keygen
-t ed25519 - for greatest security (bits are a fixed size and -b flag will be ignored)
-t rsa - for greatest portability (key needs to be greater than 4096 bits)
-t ecdsa - faster than RSA or DSA (bits can only be 256, 284, or 521)
-t dsa - DEEMED INSECURE - DSA limted to 1024 bit key as specified by FIPS 186-2, No longer allowed by default in OpenSSH 7.0+
-t rsa1 - DEEMED INSECURE - has weaknesses and shouldn't be used (used in protocol 1)
-b 4096 bit size
-a 500 rounds (should be no smaller than 64, result in slower passphrase verification and increased resistance to brute-force password cracking)
-C "First.Last@somewhere.com" comment..
@pgarciacamou
pgarciacamou / .zshrc
Created April 28, 2019 23:52
Use `.gitemail` and `.npmregistry` files to switch user per project.
# Automatically assign local git user email
# This code expects the following
# file ".gitemail" to exist and contain only 1 row with an email
# file ".npmregistry" to exist and contain only 1 row with the registry url
#
# Note: if any of the files don't exist then the default will be used
setup-dev-user() {
local expected_git_email=$(grep -hs ^ ./.gitemail)
local current_git_email="$(git config user.email)"
local default_git_email="example@company.com"