Skip to content

Instantly share code, notes, and snippets.

View StrayDragon's full-sized avatar
🎯
Fighting~

L8ng StrayDragon

🎯
Fighting~
View GitHub Profile
@StrayDragon
StrayDragon / cap2esc.ahk
Created January 15, 2023 07:38
AHK-WinPC
Capslock::Esc
@StrayDragon
StrayDragon / CustomKeys.txt
Created September 4, 2022 09:53
Keybinding-War3
/////////////////////////////////////////////////////
// Download this file to C:\Users\USER\Documents\Warcraft III\CustomKeyBindings
// Customized for Lefthanded Keyboard Alignment (QWEASZ)
// Simply place this Customkeys.txt file into your WC3
// folder usually under Documents or Program Files then
// in the game options Enable Custom Keyboard Shortcuts
///////////////////////////////////////////////////////
/////////////////////////////////////////////////////////
// This Custom Keys setup aligns all races units, heroes,
import random
from typing import List
from pprint import pprint
from dataclasses import dataclass, field
debug = False
@dataclass
class Item:
@StrayDragon
StrayDragon / Matrix.hpp
Last active June 29, 2019 09:12
🌟 WARNING: If you want to run the test, add a header (Third party dependence: https://github.com/catchorg/Catch2) in the same directory;
#ifndef MATRIX_H
#define MATRIX_H
#include <algorithm>
#include <cmath>
#include <cstdint>
#include <fstream>
#include <initializer_list>
#include <iostream>
#include <random>