Skip to content

Instantly share code, notes, and snippets.

View Reedbeta's full-sized avatar

Nathan Reed Reedbeta

View GitHub Profile
// Derived from: https://github.com/Cyan4973/xxHash
// Specialized version of XXH64 for 64-bit inputs
constexpr uint64_t XXH_PRIME64_1 = 0x9E3779B185EBCA87ULL;
constexpr uint64_t XXH_PRIME64_2 = 0xC2B2AE3D27D4EB4FULL;
constexpr uint64_t XXH_PRIME64_3 = 0x165667B19E3779F9ULL;
constexpr uint64_t XXH_PRIME64_4 = 0x85EBCA77C2B2AE63ULL;
constexpr uint64_t XXH_PRIME64_5 = 0x27D4EB2F165667C5ULL;
inline uint64_t XXH64_round(uint64_t acc, uint64_t input)
Windows Registry Editor Version 5.00
; Visual Studio context menu items
[-HKEY_CLASSES_ROOT\Directory\shell\AnyCode]
[-HKEY_CLASSES_ROOT\Directory\Background\shell\AnyCode]
; Share with Skype
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked]
"{776DBC8D-7347-478C-8D71-791E12EF49D8}"=""
@Reedbeta
Reedbeta / bash-and-cmd-in-context-menu-wt.reg
Last active August 29, 2021 23:20
Windows registry edit to add Bash and Command Prompt items to Explorer context menu - version using Windows Terminal
Windows Registry Editor Version 5.00
; Get rid of existing Windows Terminal context menu item
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked]
"{9F156763-7844-4DC4-B2B1-901F640F5155}"=""
[HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\Bash]
@="Bash"
"Icon"=hex(2):22,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,\
00,74,00,25,00,5c,00,53,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,\
@Reedbeta
Reedbeta / nested-lists.md
Last active April 26, 2022 13:28
Nested lists markdown
  • Item 1

  • Item 2

  • Item 3
    second line

    • Item 3a
    • Item 3b
    • Item 3c

    Item 3 continue

@Reedbeta
Reedbeta / gamuts.svg
Created December 19, 2020 19:44
Common RGB gamuts on CIE chromaticity diagram
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
#pragma once
// String tokenizing iterator
// by Nathan Reed, 2020-08-06. Licensed CC0 https://creativecommons.org/publicdomain/zero/1.0/
//
// Use it like:
//
// for (auto token : IterTokens(" Bird \t\tFish Dog Cat "))
// {
// // token is a std::string_view pointing into the original string
@Reedbeta
Reedbeta / generate_code.py
Created June 27, 2020 16:55
Generate code into a source file using python
# Load the source file
sourcePath = r'c:\path\to\my\file.cpp'
sourceText = codecs.open(sourcePath, encoding='utf-8').read()
# Find the generated section
startMarker = (
'''/*
* Generated data tables - do not edit by hand!
* To regenerate, run my_fancy_script.py.
@Reedbeta
Reedbeta / disband-spd.md
Created June 6, 2020 22:54
Letter to Seattle City Council members

Dear Council Members,

Like so many Seattle residents, I was appalled and disgusted by George Floyd’s murder at the hands of Minneapolis police officers on May 25, and I have been further appalled and disgusted by the Seattle Police Department’s treatment of those protesting for racial justice in the days since. The SPD has repeatedly responded to peaceful protests with violence, escalating and attacking without provocation, using chemical weapons that would be banned in warfare against unarmed and peaceful Seattleites — and then attempting to cover up, deny, and evade responsibility for their conduct. And why has the SPD done this? Because citizens have dared to hold them and other police departments across the country accountable for their ongoing and deeply ingrained racism, brutality, and callous disregard for Black lives and humanity.

As a white person, I was brought up to believe the police were there to help — and that they were obviously necessary to “fight crime” and keep our cities safe. Immigrants

#pragma once
// Intrusive Linked List (or Internal Linked List, etc)
// by Nathan Reed, 2020-01-18. Licensed CC0 https://creativecommons.org/publicdomain/zero/1.0/
//
// Use it like:
//
// class MyClass
// {
// ...
@Reedbeta
Reedbeta / interesting-libs.txt
Last active July 4, 2023 02:38
Interesting libraries I might like to use in a project
Interesting libraries I might like to use in a project...
Asset loading:
assetsys.h - virtual filesystem with ZIP backing, overlaying, etc https://github.com/mattiasgustavsson/libs/blob/master/docs/assetsys.md
cute_filewatch.h - file modification watching, for runtime reloading etc https://github.com/RandyGaul/cute_headers/blob/master/cute_filewatch.h
flatbuffers - data serialization, zero-copy deserialization, extensible schemas https://github.com/google/flatbuffers
stb_image - https://github.com/nothings/stb/blob/master/stb_image.h
tinyexr - https://github.com/syoyo/tinyexr
tinygltf - https://github.com/syoyo/tinygltf
tinyobjloader - https://github.com/syoyo/tinyobjloader