I hereby claim:
- I am Brianetta on github.
- I am brianetta (https://keybase.io/brianetta) on keybase.
- I have a public key whose fingerprint is FA3D CA2F 38D3 BA69 87E1 D52E C204 FB5C 430A 0BFA
To claim this, I am signing this object:
| #!/bin/bash | |
| # NO CHECKING, NO WARRANTY. | |
| # Don't run this blindly, that would be moronic. Check nuget package versions and Steam paths. | |
| # Also, don't check in any of the changes to Git. Malware will glare at you. | |
| # Install Rider and .NET | |
| sudo snap install rider --classic | |
| sudo add-apt-repository ppa:dotnet/backports | |
| sudo apt-get update && sudo apt-get install -y dotnet-sdk-9.0 | |
| # I didn't do this, but Mdk.CheckDotNet did look like it would need it. Weird. |
| $ErrorActionPreference = "Stop" | |
| try { | |
| $SaveFolder = ((Get-ChildItem $ENV:APPDATA\SpaceEngineers\Saves | Where-Object -Property Name -NE 1234567891011 | Get-ChildItem -Directory | Out-GridView -PassThru -Title "Please select a save game")[0]).FullName | |
| [xml]$Sandbox = Get-Content "$SaveFolder\Sandbox.sbc" -Encoding UTF8 | |
| $BackupName="Sandbox_Backup_$(Get-Date -Format "yyyy-MM-dd_hh-mm-ss").sbc" | |
| Write-Host "Fixing container in saved game: $($Sandbox.MyObjectBuilder_Checkpoint.SessionName)" | |
| Write-Host "Renaming current Sandbox.sbc file to Sandbox_Backup_$(Get-Date -Format "yyyy-MM-dd_hh:mm:ss").sbc" | |
| Rename-Item "$SaveFolder\Sandbox.sbc" "$SaveFolder\$BackupName" | |
| $Sandbox.MyObjectBuilder_Checkpoint.SessionComponents.MyObjectBuilder_SessionComponent.PlayerData.PlayerContainerData | ForEach-Object -Process {$_.Active="true"} | |
| $Sandbox.Save("$SaveFolder\Sandbox.sbc") |
| #!/bin/bash | |
| TEAMS=kbteams.txt | |
| for unwanted_team in $( | |
| keybase team list-memberships | cut -f 1 -d ' ' | tail -n +2 | grep -v -f <(awk '{print "^" $0 "$"}' $TEAMS) | |
| ) | |
| do | |
| echo Leaving team $unwanted_team | |
| keybase team leave $unwanted_team |
| #!/bin/bash | |
| # Brian Ronald, 2019 | |
| # Tested in Ubuntu 18.04 | |
| # Free for all purposes, no warranty at all. | |
| if [ $# -eq 0 ] | |
| then | |
| echo "Usage: $0 <block device node>" | |
| echo "Show the USB device associated with a block device" | |
| exit |
| import os | |
| import yaml | |
| import sys | |
| def worldprefix(world,worldname): | |
| if worldname.startswith(world + "_") or worldname == world: | |
| return True | |
| else: | |
| return False | |
| if len(sys.argv) == 1: |
I hereby claim:
To claim this, I am signing this object:
| # Generator for Minecraft commandblock commands | |
| # List of hostile mobs | |
| hostileMobs=["Zombie","Skeleton","Creeper","Spider","Endermite","Witch","Enderman","Silverfish"] | |
| # Text for when a player sets their spawn point | |
| spawnPointSet='{"text":"","extra":[{"text":"Spawn point set","color":"green"}]}' | |
| # Welcome text | |
| welcomeText='{"text":"Welcome to Brianetta\'s test server","color":"green"}' |
| #!/usr/bin/perl | |
| # Place this file somewhere that Squid can find it, and change access | |
| # so that Squid can read and execute it. | |
| # Include the following line in squid.conf, and un-comment it there. If | |
| # you saved it anywhere other than /etc/squid, change the path to its | |
| # correct location: | |
| #url_rewrite_program /etc/squid/rewrite.pl |
| local ui = Engine.ui | |
| local CheatList = ui:VBox() | |
| local cheatMission = function (loaded) | |
| local cheats = { | |
| {'Add cash', function () Game.player:AddMoney(100000) end}, | |
| {'Refuel (prop tank)', function () Game.player:SetFuelPercent() end}, |