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 / uupdump ConvertConfig.ini explained.md
Created October 8, 2022 22:45
uupdump ConvertConfig.ini explained (convert-UUP, AutoStart, AddUpdates, Cleanup, ResetBase, NetFx3, StartVirtual, wim2esd, wim2swm, SkipISO, SkipWinRE, LCUwinre, UpdtBootFiles, ForceDism, RefESD, SkipEdge, AutoExit, Store_Apps, SkipApps, AppsLevel, CustomList, create_virtual_editions, vAutoStart, vDeleteSource, vPreserve, vwim2esd, vwim2swm, vS…

note: some of the information is posted in comments,
if you'll fork this gist, you'll loose that information,
it is best to just bookmark this one..

WIM

WIM (ESD,SWM) is an image of an OS file system,
it can be mounted, and modified (to some degree) .
there are two possible ways, through DISM or through mounting it directly through an older way, using a driver named imagex (Windows Imaging Utility).
regardless,

terminology

@slimlime
slimlime / docker-loki.json
Created April 28, 2022 00:04 — forked from proffalken/docker-loki.json
Vector, Loki, and Prometheus
// Be sure to follow the instructions at
// https://grafana.com/docs/loki/latest/clients/docker-driver/
// otherwise this will not work!
//
// Also, remember to remove these comments because JSON doesn't support them!
{
"data-root": "/mnt/docker",
"metrics-addr" : "10.231.1.21:9323",
"experimental" : true,
@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 ; }

@kangax's ES6 quiz, explained

@kangax created a new interesting quiz, this time devoted to ES6 (aka ES2015). I found this quiz very interesting and quite hard (made myself 3 mistakes on first pass).

Here we go with the explanations:

Question 1:
(function(x, f = () => x) {
@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: