Skip to content

Instantly share code, notes, and snippets.

View Mystler's full-sized avatar

Florian Meißner Mystler

View GitHub Profile
@Mystler
Mystler / cooldown_onoff.lua
Last active February 22, 2023 08:36
WeakAuras Custom Tiggers
function()
if WeakAuras.triggerState[aura_env.id].triggers[1] then
WeakAuras.regions[aura_env.id].region.cooldown:Show()
return true
end
return false
end
-------
function()
@Mystler
Mystler / outlook.html
Created July 7, 2014 09:00
Comparison of Outlook vs Thunderbird HTML messages
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"><head><meta http-equiv=Content-Type content="text/html; charset=utf-8"><meta name=Generator content="Microsoft Word 15 (filtered medium)"><style><!--
/* Font Definitions */
@font-face
{font-family:"Cambria Math";
panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
@Mystler
Mystler / keybase.md
Last active August 29, 2015 13:57
Keybase

Keybase proof

I hereby claim:

  • I am Mystler on github.
  • I am mystler (https://keybase.io/mystler) on keybase.
  • I have a public key whose fingerprint is 9629 C7A6 52DE 47B4 7ABA 43AE 8331 4F88 9176 5310

To claim this, I am signing this object:

@Mystler
Mystler / rebaseland.txt
Created December 12, 2012 10:54
The Tale of Rebaseland
Once upon a time there was only one great master in Rebaseland. Many people with forks spread
over all of the country and everyone was happy. But then the war started. King Bink of RAD
country was unhappy about some of his people moving to Rebaseland. So he started to attack
Rebaseland in an attempt to rewrite history.
Rebaseland suffered from the war and, even though they could make peace with Bink, order
could not be restored.
So, the SHA-Lords rose, fighting in order to become the new master.
This was, when the time of heroes began. In Rebaseland there were 3 heroes:
MacMercury "CWalther" Two-Legs (“The Guardian of Compatibility”),
@Mystler
Mystler / vs.bat
Created December 8, 2012 20:41
VC11-XP-Setup
"C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\vcvarsall.bat" x86
set INCLUDE=%ProgramFiles(x86)%\Microsoft SDKs\Windows\7.1A\Include;%INCLUDE%
set PATH=%ProgramFiles(x86)%\Microsoft SDKs\Windows\7.1A\Bin;%PATH%
set LIB=%ProgramFiles(x86)%\Microsoft SDKs\Windows\7.1A\Lib;%LIB%
set CL=/D_USING_V110_SDK71_;%CL%
set LINK=/SUBSYSTEM:CONSOLE,5.01 %LINK%
@Mystler
Mystler / bubblesort.c
Created December 3, 2012 20:41
Bubblesort using Pointers
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <time.h>
#define LENGTH 20
uint8_t fNumbers[LENGTH];
uint8_t* fNumRefs[LENGTH];