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

Keybase proof

I hereby claim:

  • I am CodeAsm on github.
  • I am codeasm (https://keybase.io/codeasm) on keybase.
  • I have a public key whose fingerprint is 856B 734D AF9B 84B6 666B 6684 EDF0 ACEF 94E5 20EC

To claim this, I am signing this object:

@CodeAsm
CodeAsm / xqemu.sh
Last active August 1, 2019 17:08
My latest Xqemu start script, does need a little bit of love and im sure someone could write a tidier and better one. Hey, im learning. Tweet or mail me your ideas or find me on some discord/fb or forum with ideas or how you solved it. Besides, I am very well aware of some GUI made menu's. but they depend on staying uptodate with Xqemu, and the …
#!/bin/bash
cd /home/codeasm/xbox/
while [[ $# -gt 0 ]]
do
key="$1"
case $key in
-cd|--cdrom)
CD="$2"
shift; shift # past argument and value
;;-bios|-kernel|-k)
@CodeAsm
CodeAsm / PRIMOSDK.H
Created May 15, 2019 09:22
A header file found in a Lenovo recovery image. "CD and DVD mastering API" by Sonic Solutions
//-----------------------------------------------------------------------------
// primosdk.h
// Copyright (c) 2002 - 2004, Sonic Solutions. All rights reserved.
//-----------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////
// //
// //
// P r i m o S D K //
@CodeAsm
CodeAsm / MN740.md
Last active October 17, 2025 18:28
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;
}