Skip to content

Instantly share code, notes, and snippets.

View AucaCoyan's full-sized avatar
⌨️

Auca Coyan AucaCoyan

⌨️
View GitHub Profile

Keybase proof

I hereby claim:

  • I am aucacoyan on github.
  • I am aucacoyan (https://keybase.io/aucacoyan) on keybase.
  • I have a public key ASD4-106wdC4TagSygUH4vg49DB0zaJMQMU2uV6rt2PfDQo

To claim this, I am signing this object:

{
"$schema": "http://json-schema.org/draft-07/schema",
"description": "a schema to validate base.yaml",
"additionalProperties": false,
"required": [
"matches"
],
"properties": {
"$schema": {
"type": "string"
https://docs.google.com/spreadsheets/d/1RBi5A9zZ7yh1RNSYmUxK4vO13JoaDHaNZV3coXcvjR4/edit?usp=sharing
@AucaCoyan
AucaCoyan / Esszett.ahk
Created August 2, 2017 18:41
AutoHotkey script convert "ss" into German Esszet (ß)
; ss+Space --> ß
; Any word: weiss+space = weiß
:?:ss::
Send, ß
return
@AucaCoyan
AucaCoyan / Resize window.ahk
Created August 2, 2017 18:36
Resize Window. For Windows XP (Win+Up Maximize, etc)
#NoEnv ;Avoids checking empty variables to see if they are environment variables (recommended for all new scripts).
#Up::
WinMaximize, A
return
#Down::
WinMinimize, A
return