Skip to content

Instantly share code, notes, and snippets.

View TymianekPL's full-sized avatar
❤️
Busy killing MySQL/MariaDB

Tymianek TymianekPL

❤️
Busy killing MySQL/MariaDB
View GitHub Profile
#ifndef LOOKUPVECTOR_H
#define LOOKUPVECTOR_H
#include <memory>
#include <vector>
namespace Utilities
{
template<typename T, typename = void>
struct auto_const_reference
@TymianekPL
TymianekPL / main.c
Created April 18, 2022 10:53
Gist for "How to make your own protocol" video (https://youtu.be/X8mzTqV58-U)
#include <stdio.h>
#include <string.h>
#include <Windows.h>
int main(int argc, char **argv)
{
if(argc != 2)
{
printf("That command requried 1 argument");
return 1;