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
# Use the below at your own risk, as you may lose changes with incorrect resets (or it will require digging in the reflog to recover commits). | |
# WIP_feature-branch contains a single commit with uncommited changes | |
# WIP branch needs to be exactly one commit ahead of the fetaure branch | |
git checkout feature-branch | |
git reset --hard origin/WIP_feature-branch | |
git reset --soft origin/feature-branch | |
git reset HEAD |
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/sh | |
echo 'Installing dependencies...' | |
sudo apt install python3-pip python3-dev python3-pkgconfig libssl-dev openssl libacl1-dev libacl1 build-essential -y | |
echo 'Installing borg backup system wide...' | |
sudo pip3 install borgbackup |
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/sh | |
sed -i.bak "s/data.status !== 'Active'/false/" /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js |
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/sh | |
sudo apt-get update | |
sudo apt-get upgrade --dry-run |
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?><templates><template autoinsert="false" context="java" deleted="false" description="Create SLF4J logger" enabled="true" name="logger">private static final Logger LOGGER = LoggerFactory.getLogger(${enclosing_type}.class);</template></templates> |
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
Local $windowHandle = WinActivate ("RaidTime") | |
If $windowHandle == 0 then | |
MsgBox ( 0, "Ooops", "Could not find RaidTime tab or window") | |
Exit | |
EndIf | |
; add items to filter here and separate with | | |
; no leading or trailing spaces |
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
n=0 | |
!+t:: | |
Titles := GetWindows() | |
if n=0 | |
{ | |
loop, parse, Titles, "`n" | |
{ | |
if(A_LoopField != "Start" and A_LoopField != "iTunes") ;don't mess up the start button, also iTunes does not like transparency | |
{ |
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
Opt("MouseCoordMode",0) ; Coordiantes relative to window | |
Opt("PixelCoordMode",0) ; Coordiantes relative to window | |
; Script to roll stats when creating a avatar in E.Y.E Divine Cybermancy | |
; | |
; Set game resolution to 1600x900 and windowed mode for the script to work, | |
; or correct the cordinates | |
; 1235, 183 STR | |
; 1235, 205 PSI |
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
C: | |
cd %WINDIR%\Microsoft.NET\Framework\ | |
for /d %%D IN (*) DO .\%%D\ngen.exe executeQueuedItems | |
cd %WINDIR%\Microsoft.NET\Framework64\ | |
for /d %%D IN (*) DO .\%%D\ngen.exe executeQueuedItems | |
pause |
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
; Toggle selected window between transparent / opaque (alt + shift + t) | |
n=0 | |
!+t:: | |
WinGetActiveTitle, T | |
if n=0 | |
{ | |
WinSet, Transparent, 222, %T% | |
n=1 | |
Exit |