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
(function () {
const meta = document.createElement('meta');
meta.name = 'viewport';
meta.content = 'width=device-width, initial-scale=1.0';
document.head.appendChild(meta);
document.body.style.margin = "0";
document.body.style.height = "100vh";
document.body.style.display = "grid";
document.body.style.gridTemplateRows = "1fr 1fr 1fr auto 2fr";
#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;