flowchart LR
A([fa:fa-user Lab Administrator])
B([fa:fa-user Lab Technician])
C([fa:fa-user Lab Administrator])
D([fa:fa-user Lab Technician])
E[(BLIS @ Remote Lab)]
I[(BLIS @ Remote Lab)]
F[(BLIS @ Cloud)]
A--Uses-->E
This file contains hidden or 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
| sudo apt install cabal-install | |
| cabal update | |
| git clone https://github.com/Zigazou/NecControl | |
| cd NecControl/ | |
| cabal build --allow-newer | |
| ln -s "$(find . -type f -name 'neccontrol')" neccontrol | |
| ./neccontrol |
This file contains hidden or 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
| oh-my-posh init pwsh --config "$env:POSH_THEMES_PATH/material.omp.json" | Invoke-Expression | |
| Register-ArgumentCompleter -Native -CommandName az -ScriptBlock { | |
| param($commandName, $wordToComplete, $cursorPosition) | |
| $completion_file = New-TemporaryFile | |
| $env:ARGCOMPLETE_USE_TEMPFILES = 1 | |
| $env:_ARGCOMPLETE_STDOUT_FILENAME = $completion_file | |
| $env:COMP_LINE = $wordToComplete | |
| $env:COMP_POINT = $cursorPosition | |
| $env:_ARGCOMPLETE = 1 |
I hereby claim:
- I am mrysav on github.
- I am mrysav (https://keybase.io/mrysav) on keybase.
- I have a public key whose fingerprint is 3B4D 0CC1 8CEC 4A17 523E DD46 619D A262 4ED7 F150
To claim this, I am signing this object:
This file contains hidden or 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 | |
| # not needed if using packaged version | |
| restic self-update | |
| # Assumes you have RESTIC_REPOSITORY and RESTIC_PASSWORD_COMMAND set | |
| # Refresh credentials here, if applicable | |
| # Bail if restic is already running, maybe previous run didn't finish |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| # Colors | |
| GRN='\033[1;32m' | |
| NC='\033[0m' | |
| echo -e "${GRN}Installing prerequisites...${NC}" | |
| echo "rbenv: https://github.com/rbenv/ruby-build/wiki#suggested-build-environment" |
This file contains hidden or 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
| # frozen_string_literal: true | |
| require 'rubygems' | |
| require 'bundler/setup' | |
| require 'markovite' | |
| # from_book: the filename (ending in .txt) of the Freddy book to read in | |
| # character: the character's name to find dialog for (ie. Charles or Freddy) | |
| def get_dialog(from_book, character) | |
| # read the entire contents of the given file (book) into memory |
This file contains hidden or 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
| 'use strict'; | |
| // This practice exercise will cover: | |
| // - For loops: For loops are useful when you know you want to run through a bit of code a fixed number of times. | |
| // There are three parts to declare: the variable, the conditional, and the incrementer. | |
| // They look like this: | |
| // for (let i = 0; i < 5; i = i + 1) { | |
| // ...your code here... | |
| // } | |
| // |
These instructions, while they might still work, are outdated.
Please read the official OpenRCT2 docs for better, less complicated instructions on how to get going!
https://docs.openrct2.io/en/latest/installing/installing-on-macos.html
This file contains hidden or 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
| "AppState" | |
| { | |
| "AppID" "285310" | |
| "Universe" "1" | |
| "installdir" "RCT1" | |
| "StateFlags" "1026" | |
| } |
NewerOlder