- Call of Duty 2
- World of Warcraft
- World of Warcraft: The Burning Crusade
- Mafia
- Sid Meier's Pirates
- Portal
- Diablo 2: Lord of Destruction
- Black & White
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 <stdio.h> | |
#include <stdlib.h> | |
int main(int argc, char** argv) { | |
int i,j; | |
for(i=0; i<500; i++) { | |
for(j=0; j<i; j++) { | |
int a = i*i-j*j; | |
int b = 2*i*j; | |
int c = i*i+j*j; |
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
from Mathstuff import mathstuff | |
M = mathstuff() | |
A = M.permutations(range(9)) | |
print A(10**6-1) | |
def permutations(self, iterable): | |
return list(set(self.doPermutations(iterable))) | |
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
http://www.voitzsch.net/index.php/en/flashconv-a-minolta-flash-converter/assembly-instructions |
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
// Basstation | |
#include <Coordinator.h> | |
#include <Radio.h> | |
#include <XBee.h>U | |
#include <SoftwareSerial.h> | |
#include <Analog.h> | |
Coordinator coordinator = Coordinator(); |
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
import serial | |
import sys | |
ser = serial.Serial('/dev/ttyUSB0', 9600) | |
ys = ""; | |
xs = ""; | |
i = 0 | |
while 1: |