Skip to content

Instantly share code, notes, and snippets.

@QuietusPlus
QuietusPlus / Structures_Plus-Release_Notes-20180113.md
Last active January 13, 2018 15:02
These notes include the changes for both updates released on January 13th (8:30 AM + 11:41 AM), in a more readable format.

Structures Plus - Release Notes (2018-01-13)

These notes include the changes for both updates released on January 13th (8:30 AM + 11:41 AM), in a more readable format.

New Structures

  • S+ Dedicated Storage

    10,000 slots, holds a single resource type, inventory is not directly accessible, can deposit by hitting it.

  • S+ Dedicated Storage Intake > Hitting it (yourself or while riding a dino) will transfer all items out of your/dino inventory to nearby dedicated storage units, can be upgraded in size.
@QuietusPlus
QuietusPlus / Get-Verb.ps1
Created July 8, 2016 21:04
PowerShell get command verbs
Get-Verb | Format-Table -Property Verb -GroupBy Group
@QuietusPlus
QuietusPlus / PowerShell-XAML-Template.ps1
Last active February 11, 2024 21:58
Template: Use PowerShell to launch a .xaml file (MainWindow.xaml) designed within Visual Studio. It automatically removes attributes which are otherwise incompatible, so design in Visual Studio and launch your GUI without any additional steps. The template supports "Windows Presentation Foundation" and "Windows Forms" by default, add additional …
<#
PowerShell XAML Template
by QuietusPlus
#>
<#
Include
#>
# .NET Framework classes
@QuietusPlus
QuietusPlus / vscode-keybindings-default.json
Created July 5, 2016 02:17
Visual Studio Code - Insiders: Default settings.json + keybindings.json
// Overwrite key bindings by placing them into your key bindings file.
[
{ "key": "shift+escape", "command": "closeReferenceSearchEditor",
"when": "inReferenceSearchEditor && !config.editor.stablePeek" },
{ "key": "escape", "command": "closeReferenceSearchEditor",
"when": "inReferenceSearchEditor && !config.editor.stablePeek" },
{ "key": "shift+escape", "command": "cancelSelection",
"when": "editorHasSelection && editorTextFocus" },
{ "key": "escape", "command": "cancelSelection",
"when": "editorHasSelection && editorTextFocus" },
@QuietusPlus
QuietusPlus / KodiPortable.bat
Created July 3, 2016 03:34
Kodi portable batch file launcher
@TITLE Kodi (Portable)
START "" ".\Kodi.exe" -p
@QuietusPlus
QuietusPlus / keybindings.json
Created July 1, 2016 22:20
Default keybindings for Visual Studio Code. The source was taken from a clean Insiders build (2016-02-07) and was formatted to a single keybinding per line, instead of "when" taking up an entire new line.
// Place your key bindings in this file to overwrite the defaults
[
{ "key": "shift+escape", "command": "closeReferenceSearchEditor", "when": "inReferenceSearchEditor && !config.editor.stablePeek" },
{ "key": "escape", "command": "closeReferenceSearchEditor", "when": "inReferenceSearchEditor && !config.editor.stablePeek" },
{ "key": "shift+escape", "command": "cancelSelection", "when": "editorHasSelection && editorTextFocus" },
{ "key": "escape", "command": "cancelSelection", "when": "editorHasSelection && editorTextFocus" },
{ "key": "ctrl+end", "command": "cursorBottom", "when": "editorTextFocus" },
{ "key": "ctrl+shift+end", "command": "cursorBottomSelect", "when": "editorTextFocus" },
{ "key": "ctrl+shift+alt+down", "comma
@QuietusPlus
QuietusPlus / VisualStudioCode-Portable.bat
Last active July 24, 2016 06:18
Visual Studio Code - Portable launcher via a batch file. NOTE: Only works for user data, the extensions parameter has issues!
REM Please note that currently only user data is supported, meaning extensions
REM will not be portable! Visit the following address for more information:
REM
REM https://github.com/Microsoft/vscode/issues/329
REM
REM The mentioned --extensionHomePath="extensions" parameter does not work.
REM A possible alternative is to use the "Settings Sync" extension until a
REM proper implementation has been released.
REM
REM https://marketplace.visualstudio.com/items?itemName=Shan.code-settings-sync
<#
NOTICE
Write-Menu has been moved to it's own repository located at:
https://github.com/QuietusPlus/Write-Menu
#>
function Write-Menu {