This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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")); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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 | |
* |