Skip to content

Instantly share code, notes, and snippets.

View utilForever's full-sized avatar

Chris Ohk utilForever

View GitHub Profile
@tterb
tterb / README-badges.md
Last active April 16, 2024 03:21
A collection of README badges

Badges

License

MIT License GPLv3 License AGPL License

Version

Version GitHub Release

@benwills
benwills / faster_tolower.c
Last active October 11, 2019 07:33
Faster Letter Comparison and Lowercasing in C
#include <time.h>
#include <stdint.h>
#include <sys/types.h>
#include <stdio.h>
#include <ctype.h>
/*
Character-by-character comparisons for equality and lowercasing.
Custom functions vs tolower.
Spoiler: lookup table is the fastest.
@gitaarik
gitaarik / git_submodules.md
Last active April 22, 2024 10:52
Git Submodules basic explanation

Git Submodules basic explanation

Why submodules?

In Git you can add a submodule to a repository. This is basically a repository embedded in your main repository. This can be very useful. A couple of usecases of submodules:

  • Separate big codebases into multiple repositories.