Skip to content

Instantly share code, notes, and snippets.

View JJL772's full-sized avatar
:shipit:

Jeremy L. JJL772

:shipit:
  • SF Bay Area
  • 22:06 (UTC -07:00)
View GitHub Profile
//ValveGames/rel/swarm/game/bin/AdminServer.dll#8 - edit change 6019183 (binary)
//ValveGames/rel/swarm/game/bin/Dist2alpha.exe#9 - edit change 6019183 (binary+x)
//ValveGames/rel/swarm/game/bin/Dist2alpha.pdb#9 - edit change 6019183 (binary)
//ValveGames/rel/swarm/game/bin/FileSystemOpenDialog.dll#7 - edit change 6019183 (binary)
//ValveGames/rel/swarm/game/bin/FileSystemOpenDialog.pdb#7 - edit change 6019183 (binary)
//ValveGames/rel/swarm/game/bin/FileSystem_Stdio.dll#12 - edit change 6019183 (binary)
//ValveGames/rel/swarm/game/bin/MaterialSystem.dll#10 - edit change 6019183 (binary)
//ValveGames/rel/swarm/game/bin/QC_Eyes.exe#7 - edit change 6019183 (binary)
//ValveGames/rel/swarm/game/bin/QC_Eyes.pdb#7 - edit change 6019183 (binary)
//ValveGames/rel/swarm/game/bin/SDKLauncher.exe#15 - edit change 6019183 (binary)
@Albert221
Albert221 / JetBrains-Mono.css
Last active August 11, 2025 11:36
CSS for using JetBrains Mono on the Web. Simply copy&paste it to your stylesheet.
@font-face {
font-family: 'JetBrains Mono';
src: url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff2/JetBrainsMono-Bold-Italic.woff2') format('woff2'),
url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff/JetBrainsMono-Bold-Italic.woff') format('woff');
font-weight: 700;
font-style: italic;
font-display: swap;
}
@font-face {
@peteristhegreat
peteristhegreat / freedesktop.org_icons_with_descriptions.txt
Last active October 19, 2025 21:13
QIcon::fromTheme, List of icons in gnome theme, in qt standardPixmaps and list on freedesktop.org
# https://specifications.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html, aggregate list from each section
address-book-new The icon used for the action to create a new address book.
application-exit The icon used for exiting an application. Typically this is seen in the application's menus as File->Quit.
appointment-new The icon used for the action to create a new appointment in a calendaring application.
call-start The icon used for initiating or accepting a call. Should be similar to the standard cellular call pickup icon, a green handset with ear and mouth pieces facing upward.
call-stop The icon used for stopping a current call. Should be similar to the standard cellular call hangup icon, a red handset with ear and mouth pieces facing downward.
contact-new The icon used for the action to create a new contact in an address book application.
document-new The icon used for the action to create a new document.
document-open The icon used for the action to open a document.
document-open-recent T
@baines
baines / freetype-atlas.c
Created July 15, 2016 13:32
minimal freetype texture atlas example
#include <stdio.h>
#define STB_IMAGE_WRITE_IMPLEMENTATION
#include "stb_image_write.h"
#include <ft2build.h>
#include FT_FREETYPE_H
#define NUM_GLYPHS 128
struct glyph_info {
int x0, y0, x1, y1; // coords of glyph in the texture atlas