-
Find the Discord channel in which you would like to send commits and other updates
-
In the settings for that channel, find the Webhooks option and create a new webhook. Note: Do NOT give this URL out to the public. Anyone or service can post messages to this channel, without even needing to be in the server. Keep it safe!
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
;AHK v1 | |
#NoEnv | |
/* | |
MsgBox % BinaryToText(Temp1 := TextToBinary("Test")) . "`n" . Temp1 | |
MsgBox % BinaryToNumber(Temp1 := NumberToBinary(1234)) . "`n" . Temp1 | |
*/ | |
TextToBinary(ByRef InputText) | |
{ |
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
#InstallKeybdHook | |
#IfWinActive ahk_class ArenaNet_Dx_Window_Class | |
SetKeyDelay, 50, 50 | |
MouseGetPos, xpos, ypos | |
SetTimer, KeyLog, 20 | |
KeyLog: | |
If (A_priorkey != "RControl" && A_priorkey != "LButton") | |
d := A_PriorKey |
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
#MaxThreadsPerHotKey 2 | |
$Numpad0:: | |
Switch := !Switch | |
While Switch | |
{ | |
Send LShift w | |
Sleep 20 | |
} | |
Return |
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
KeyArray := ["e","r","t"] | |
PgUp:: | |
i++ | |
Hotkey % Key := KeyArray[ Mod( i-1 , KeyArray.MaxIndex() )+1 ], % "Slabel_" i, on | |
Return | |
PgDn:: |
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
#SingleInstance, Off | |
#NoEnv | |
SetBatchLines, -1 | |
FilePath = C:\Windows\ShellNew\Template.ahk | |
DefaultName = %A_UserName% | |
DefaultDesc = | |
Indent := "`t" | |
Title = CodeQuickTester |
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
// Waveファイル 読み込みと書き込み | |
// 16bit形式のみ対応 | |
// 読み込んだデータはList<short>に格納されます | |
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
namespace ConsoleApplication1 | |
{ | |
class Program |
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/bash | |
# Verify and install composer from https://getcomposer.org/installer | |
me=`basename "$0"` | |
if [[ $# -eq 0 ]] ; then | |
echo "Usage: $me <hash>" | |
echo 'where <hash> is the hash value of the installer to verify' | |
exit 1 | |
fi |
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/bash | |
# Verify and install composer from https://getcomposer.org/installer | |
me=`basename "$0"` | |
if [[ $# -eq 0 ]] ; then | |
echo "Usage: $me <hash>" | |
echo 'where <hash> is the hash value of the installer to verify' | |
exit 1 | |
fi |