Skip to content

Instantly share code, notes, and snippets.

View fairfieldt's full-sized avatar
💾

Tom Fairfield fairfieldt

💾
View GitHub Profile
.......#...#.##....#.###.######....#.##..##.#....######.###.#......#.##..##.#....######.###.#....##.#...#.......###.#...#..........#.##..##.#....######.###.#....##.#...#.......###.#...#........##.#...#.......###.#...#.......#...............#..................#.##..##.#....######.###.#....##.#...#.......###.#...#........##.#...#.......###.#...#.......#...............#................##.#...#.......###.#...#.......#...............#...............#...............#...............................................

Keybase proof

I hereby claim:

  • I am fairfieldt on github.
  • I am tdf (https://keybase.io/tdf) on keybase.
  • I have a public key ASCYl3ISQenf4QVpREfvvzbI-e66O5oXEEMdTFV7lKrB9go

To claim this, I am signing this object:

Author: Jan Miller
Requirements
-C Language basic knowledge
-x88 intel ASM basics
-Windows API / Windows programming basic knowledge
-OllyDbg (You can get it here: http://www.ollydbg.de - but if you don't have it yet, you might aswell just skip this paper for the moment *g*)
.. and most importantly: Diablo II: Lord of Destruction with v1.11 Patch
### Keybase proof
I hereby claim:
* I am fairfieldt on github.
* I am tdf (https://keybase.io/tdf) on keybase.
* I have a public key ASDu8W80f0JyU6LG0rTLNaZnafE5ZUa8zkmWkelNS9s8TQo
To claim this, I am signing this object:
class Super {
public void meth1() {
}
}
class Sub extends Super {
public void meth2() {
}
project(foo)
cmake_minimum_required(VERSION 2.8)
#add_subdirectory(tealeaf)
#add_subdirectory(desktop-runner)
add_executable(${PROJECT_NAME}
"main.cpp")
target_link_libraries(${PROJECT_NAME}, "libbar.a")
NATIVE.contacts.sendSMS("6502481586", "This is a test!", function (result) {
logger.log("Sent an SMS and got a result of " + result + "!");
});
@fairfieldt
fairfieldt / gist:709485
Created November 22, 2010 03:40
coffeescript 0.9.5 splat thing
describe = (testName, tests...) ->
console.log('\nTesting ' + testName)
#the last member of the splat will be undefined, which didn't happen in 0.9.4
for test in tests
if test.name == 'setup'
...