- Back Dip
- Crazy Arm Dip
- Deep Dip (Over-the-Shoulder Deep Dip) (Step Behind Deep Dip)
- Doug's Dip
- Faint Dip
- Hair Sweep
- Leaning Dip
- Memories Dip
- Neck Dip
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
import json | |
import requests | |
import time | |
class Video: | |
"A class to store video information" | |
id = '' | |
title = '' | |
start = 0 | |
end = 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
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
SetTitleMatchMode, 1 | |
I_Icon = C:\Program Files\AutoHotkey\Letter Icons\paste.ico | |
ICON [I_Icon] ;Changes a compiled script's icon (.exe) | |
if I_Icon <> | |
IfExist, %I_Icon% |
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
# SSH Agent | |
# Note: ~/.ssh/environment should not be used, as it | |
# already has a different purpose in SSH. | |
# source : https://www.schoonology.com/technology/ssh-agent-windows/ | |
env=~/.ssh/agent.env | |
# Note: Don't bother checking SSH_AGENT_PID. It's not used | |
# by SSH itself, and it might even be incorrect | |
# (for example, when using agent-forwarding over SSH). |
- Flush radiator & change antifreeze
- Change oil and oil filter
- Change transmission fluid & filter
- Change fluid in transfer case ( if applicable )
- Change gear oil in front & rear differential
- Top off brake fluid & bleed or flush if dark
- Top off power steering fluid & flush if dirty
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
class Player { | |
constructor() { | |
this.health = 20; | |
this.healing = false; | |
} | |
playTurn(warrior) { | |
if (warrior.health() > 12 && !this.healing) { | |
this.sense(warrior); | |
} else if (warrior.health() < this.health) { |
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
@echo off | |
:: Save this file as %USERPROFILE%\aliases.bat | |
:: Run regedit and go to HKEY_CURRENT_USER\Software\Microsoft\Command Processor | |
:: Add String Value entry with the name AutoRun and the full path of your .bat/.cmd file. | |
:: Copied from: https://stackoverflow.com/questions/20530996/aliases-in-windows-command-prompt | |
DOSKEY ls=dir /B | |
DOSKEY ll=dir |
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"?> | |
<packages> | |
<package id="sql-server-management-studio" /> | |
<package id="autodesk-fusion360" /> | |
<package id="autohotkey" /> | |
<package id="spotify" /> | |
<package id="ditto" /> | |
<package id="dotnet4.5" /> | |
<package id="dotnetcore-sdk" /> | |
<package id="filezilla" /> |
- Make cmd aliases
- Run
certutil.exe -urlcache -split -f "https://gist.github.com/2ajoyce/246cfd1feee333ef09692506010c2648/raw/" %USERPROFILE%\aliases.cmd
in the cmd prompt - Download and run https://gist.github.com/2ajoyce/f80263b8b248084da6d7c54dc8ffdfe2 to create a registry key
- Run
- Make git bash aliases
- Run
certutil.exe -urlcache -split -f "https://gist.github.com/2ajoyce/9a82fb6858d262055981ebcc94d0de54/raw/" %USERPROFILE%\.bash_profile
in the cmd prompt
- Run
- Install Chocolatey
- Install programs with chocolatey
- Run
certutil.exe -urlcache -split -f "https://gist.github.com/2ajoyce/ae087a4107d8bae35b5f54c4f50e1cff/raw/" %USERPROFILE%\packages.config
in the cmd prompt
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
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\Software\Microsoft\Command Processor] | |
"AutoRun"="%USERPROFILE%\\aliases.cmd" | |