This file contains 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
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 |
This file contains 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
############################### | |
# Action Replay # | |
# Code Types supported by # | |
# CTRPluginFramework # | |
# v0.5.0 # | |
############################### | |
============== | |
INFO | |
============== |
This file contains 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 | |
# 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" |
This file contains 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
# 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 ; } |
This file contains 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
/** | |
* 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, |
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:
https://stackoverflow.com/questions/18404272/running-ssh-agent-when-starting-git-bash-on-windows
I needed this to launch the ssh agent on my windows git bash sessions.
edit or create .profile and add:
env=~/.ssh/agent.env
This file contains 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
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 "[email protected]" comment.. |
This file contains 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
# 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="[email protected]" |
NewerOlder