Skip to content

Instantly share code, notes, and snippets.

View LovelySanta's full-sized avatar
⌨️
Programming

lovely_santa LovelySanta

⌨️
Programming
  • Belgium
View GitHub Profile
@LovelySanta
LovelySanta / Win-BuildPremake.bat
Last active October 11, 2019 18:26
buildPremake
@echo off
rem Navigate to premake vendor folder
pushd ..\vendor\premake
rem Premake already build, no need to continue
if exist bin\premake5.exe (
echo Premake already build!
pause
exit
@LovelySanta
LovelySanta / crc.hpp
Last active January 27, 2023 20:37 — forked from Sam-Belliveau/crc.hpp
CRC16, CRC32, and CRC64 in constexpr C++17
/**
* Copyright 2019 Sam Robert Belliveau
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions: