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
def git_current_branch () { | |
git branch --show-current | str trim -c "\n" | |
} | |
alias s = git status -sb | |
alias g = git | |
alias ga = git add | |
alias gaa = git add --all | |
alias gapa = git add --patch | |
alias gau = git add --update |
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
{ | |
"name" : "Dracula at night", | |
"background" : "#0E1419", | |
"black" : "#21222C", | |
"blue" : "#BD93F9", | |
"brightBlack" : "#6272A4", | |
"brightBlue" : "#D6ACFF", | |
"brightCyan" : "#A4FFFF", | |
"brightGreen" : "#69FF94", | |
"brightPurple" : "#FF92DF", |
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
// ==UserScript== | |
// @name T3-Improved | |
// @namespace emrsn.net/ | |
// @version 0.2.2 | |
// @description Improves T3 Time Tracker usability | |
// @author [email protected] | |
// @match http://usaust-techweb2/t3/* | |
// @grant none | |
// @updateURL https://gist.githubusercontent.com/spitfire05/da6be0638b2358bdb7a45de30a826771/raw/t3-improved.js | |
// ==/UserScript== |
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
print_usage () { | |
echo "USAGE: updateip.sh PATH FILE" | |
} | |
if [ -z "$1" ]; then | |
print_usage | |
exit 1 | |
fi | |
if [ -z "$2" ]; then |
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
<!-- Based on https://github.com/Ibrahim-Islam/monokai-vs-2015 --> | |
<UserSettings> | |
<ApplicationIdentity version="15.0"/> | |
<ToolsOptions> | |
<ToolsOptionsCategory name="Environment" RegisteredName="Environment"/> | |
</ToolsOptions> | |
<Category name="Environment_Group" RegisteredName="Environment_Group"> | |
<Category name="Environment_FontsAndColors" Category="{1EDA5DD4-927A-43a7-810E-7FD247D0DA1D}" Package="{DA9FB551-C724-11d0-AE1F-00A0C90FFFC3}" RegisteredName="Environment_FontsAndColors" PackageName="Visual Studio Environment Package"> | |
<PropertyValue name="Version">2</PropertyValue> | |
<FontsAndColors Version="2.0"> |
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
# Run this with admin priviliges: | |
$path = "HKCU:\Software\Policies\Microsoft\Office\16.0\Outlook\DisabledShortcutKeysCheckBoxes"; New-Item $path -Force; New-ItemProperty -Path $path -Name "Alt+S" -Value "83,16" -PropertyType String |
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
$shell_app=new-object -com shell.application | |
$zip_file = $shell_app.namespace($ZipPath) | |
$destination = $shell_app.namespace($DestinationPath) | |
$destination.Copyhere($zip_file.items()) |
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
<NotepadPlus> | |
<UserLang name="BF2 Con" ext="con tweak inc ai" udlVersion="2.1"> | |
<Settings> | |
<Global caseIgnored="yes" allowFoldOfComments="no" foldCompact="no" forcePureLC="1" decimalSeparator="0" /> | |
<Prefix Keywords1="no" Keywords2="no" Keywords3="no" Keywords4="yes" Keywords5="no" Keywords6="no" Keywords7="no" Keywords8="yes" /> | |
</Settings> | |
<KeywordLists> | |
<Keywords name="Comments">00rem 01 02 03beginrem 04endrem</Keywords> | |
<Keywords name="Numbers, prefix1"></Keywords> | |
<Keywords name="Numbers, prefix2"></Keywords> |