Skip to content

Instantly share code, notes, and snippets.

View CodeAsm's full-sized avatar
🌏
Doing my coding thingies

CodeAsm CodeAsm

🌏
Doing my coding thingies
View GitHub Profile
@CodeAsm
CodeAsm / MN740.md
Last active March 13, 2019 18:48
Xbox wireless adapter MN740 notes

Firmware is ARJ compressed MN740_01.00.02.0022_RUNTIME.bin extracted results into a NML.MEM

some strings inside this memory dump/file are:

D:\Source Code\stack\arch\ar531x\wireless\common\crypto\ccm.c
Copyright string: "Copyright © 2004 D-Link Systems, Inc.
DGL-3420 Bootrom 00.03.00.0000
D-Link 108AG Gaming Adapter
@CodeAsm
CodeAsm / glUtils.js
Created November 23, 2015 11:16 — forked from zdxerr/glUtils.js
Small webgl example
// augment Sylvester some
Matrix.Translation = function (v)
{
if (v.elements.length == 2) {
var r = Matrix.I(3);
r.elements[2][0] = v.elements[0];
r.elements[2][1] = v.elements[1];
return r;
}