Skip to content

Instantly share code, notes, and snippets.

void dumpHex(unsigned int lenData, unsigned char *pData){
int i = 0, j = 0;
int posData = 0;
unsigned char lineData[16];
unsigned char charNext;
unsigned char skip = 0;
if(!lenData) return;
printf("ADDRESS 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 0123456789ABCDEF\n");
#include <windows.h>
#include <tchar.h>
#include "NPSWF32.h"
BOOL WINAPI DllMain(HINSTANCE hDLL, DWORD dwReason, LPVOID lpReserved){
switch(dwReason){
case DLL_PROCESS_ATTACH:
AddLog(_T("DllMain called: dwReason == DLL_PROCESS_ATTACH\r\n"));
package fibonacci;
import java.math.*;
public class Fibonacci {
public static void main(String[] args) {
BigInteger a, b, tmp;
a = new BigInteger("0");
b = new BigInteger("1");
package fibonacci;
import java.math.*;
public class Fibonacci {
public static void main(String[] args) {
BigInteger a, b, tmp;
a = new BigInteger("0");
b = new BigInteger("1");
/*
* Go Goole Maps! -- Jump a place where you stay now on Google Maps.
*
* Copyright(C) 2009 oksoftware. All rights reserved.
*
* Some codes aren't written by me.
*
* Requires:
* * GPS device using NMEA Protocol
*