Skip to content

Instantly share code, notes, and snippets.

View Vbitz's full-sized avatar

Joshua Scarsbrook Vbitz

View GitHub Profile
@Vbitz
Vbitz / hexdump.ts
Last active January 28, 2024 15:25
Simple node.js hexdump function written in TypeScript.
function printValue(value: number): string {
if (value >= 0x20 && value <= 0x7e) {
return String.fromCharCode(value);
} else {
return '.';
}
}
export function hexDump(buff: Buffer): string {
let x = 0;
@Vbitz
Vbitz / LICENSE
Last active December 19, 2019 02:15
Reentrent + callback/async safe global variables.
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
#!/usr/bin/env python3
from glasgow.applet import *
from nmigen.compat import *
from nmigen.build.plat import ResourceError
import logging
import asyncio
@Vbitz
Vbitz / Makefile
Created April 19, 2019 10:37
docgen
PANDOC= pandoc
POPTS=
all: Testing.html
Testing.html: Testing.md template.html
$(PANDOC) $(POPTS) --template template.html Testing.md -o Testing.html
@Vbitz
Vbitz / extract.py
Created February 21, 2019 04:11
Extractor for Pathfinder Humble Bundle.
#!/usr/bin/env python3
import os
import re
import zipfile
fileMatch = re.compile(
r"(Pathfinder|Starfinder)(RoleplayingGame|CampaignSetting|Module|AdventurePath|Chronicles|Companion|PlayerCompanion|Playtest|CoreRulebook|SocietyScenario)(.*)(PDF|Bundle)(-SingleFile)?.zip")
mainPDFName = re.compile(r"(PZO(PSS)?[0-9\-]+B?E).pdf")

Keybase proof

I hereby claim:

  • I am vbitz on github.
  • I am jscarsbrook (https://keybase.io/jscarsbrook) on keybase.
  • I have a public key ASA2dCdLIGOfX96SXWf-7HNh1JpHlxVKgOYnzp62cRKOPgo

To claim this, I am signing this object:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define BLOCKSIZE 1024
#define OUTPUT_BUFFERS 8
#define WRITE_BUFFER_SIZE (2 * 16) + 4 + 8 + 1
/* generated with in python:
for i in range(0, 256):
@Vbitz
Vbitz / autocommit.py
Last active August 29, 2015 14:13
Python script to commit git changes every 15 minutes
#!/usr/bin/env python2.7
import time
import subprocess
if __name__ == '__main__':
while True:
for i in range(0, 15):
print "Commiting in %s minutes" % (str(15 - i))
time.sleep(60)
@Vbitz
Vbitz / gist:82f01aa618337ff7429b
Created October 1, 2014 05:10
A list of events in one game of League of Legends using the recent match history API endpoints.
0 minutes and 0 seconds : [ITEM_PURCHASED] : Caitlyn purchased a Doran's Blade : Good starting item for attackers
0 minutes and 0 seconds : [ITEM_PURCHASED] : Master Yi purchased a Doran's Blade : Good starting item for attackers
0 minutes and 0 seconds : [ITEM_PURCHASED] : Vladimir purchased a Boots of Speed : Slightly increases Movement Speed
0 minutes and 0 seconds : [ITEM_PURCHASED] : Zyra purchased a Doran's Ring : Good starting item for casters
0 minutes and 0 seconds : [ITEM_PURCHASED] : Rammus purchased a Doran's Shield : Good defensive starting item
0 minutes and 1 seconds : [ITEM_PURCHASED] : Caitlyn purchased a Health Potion : Consume to restore Health over time
0 minutes and 1 seconds : [ITEM_PURCHASED] : Master Yi purchased a Health Potion : Consume to restore Health over time
0 minutes and 1 seconds : [ITEM_PURCHASED] : Vladimir purchased a Health Potion : Consume to restore Health over time
0 minutes and 1 seconds : [ITEM_PURCHASED] : Zyra purchased a Health Potion : Consume to restore Health o
| 2.92615 : [User] Script | DrawProfile {
| 2.9262 : [User] Script | "results": {
| 2.92622 : [User] Script | "virtual void Engine::RenderGL3::Begin2d()": {
| 2.92624 : [User] Script | "avg": 0.00000286102294921875,
| 2.92626 : [User] Script | "count": 2,
| 2.92627 : [User] Script | "max": 0.000003814697265625,
| 2.92629 : [User] Script | "min": 0.0000019073486328125
| 2.92632 : [User] Script | },
| 2.92633 : [User] Script | "virtual void Engine::RenderGL3::BeginRendering(int)": {
| 2.92636 : [User] Script | "avg": 0.000003714894139489462,