Skip to content

Instantly share code, notes, and snippets.

@zed0
zed0 / tomb-helper-timing-info.json
Last active July 25, 2021 20:27
A JSON file containing timing information for Shadow of the Tomb Raider cutscenes, used in cutscene skippers
{
"cutscenes": [
{
"ids": [
3121003519
],
"real_time": 89.54886,
"in_game_time": 0.019996673,
"skippable_at_real_time": null,
"skippable_at_in_game_time": null
part 1: 2539
██
█ █
██ ████ ██
██ █ █ ███ █
█ █ █ █
███ ███
████ █ █
██ █ ███
███ █
int main(){
char RESULT_LIST[2000];
char DEST[2000];
register int r0 asm ("rax") = 0;
register int r1 asm ("rbx") = 0;
asm volatile(R"ASM(
mltdwn:
zed0@codd:~» which [ [13:33:50]
[: shell built-in command
zed0@codd:~» bash [13:33:52]
zed0@codd:~$ which [
/usr/bin/[

Keybase proof

I hereby claim:

  • I am zed0 on github.
  • I am zed0 (https://keybase.io/zed0) on keybase.
  • I have a public key whose fingerprint is F8A4 3184 9285 A845 68B2 066F F02E 62BB D028 5BD8

To claim this, I am signing this object:

@zed0
zed0 / log.txt
Created February 21, 2012 15:00
Output of mvn clean jetty:run &> log.txt
[INFO] Scanning for projects...
[WARNING]
[WARNING] Some problems were encountered while building the effective model for uk.co.probablyfine:aoko:war:0.0.1
[WARNING] 'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: javax.servlet:servlet-api:jar -> duplicate declaration of version 2.5 @ line 162, column 15
[WARNING]
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING]
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING]
[INFO]
@zed0
zed0 / gist:996145
Created May 27, 2011 20:55
Getting: 'Error: Not initialized' on line 15
var crypto = require('crypto');
var fs = require('fs');
var dir = fs.readdirSync('.');
for(var i=0; i<dir.length; ++i)
{
var filename = dir[i];
if(fs.statSync(filename).isFile()) {
var md5 = crypto.createHash('md5');
var s = fs.ReadStream(filename);