Popular Tags:

K5005 / E398 Firmware

22. März 2013 at 19:29

Den Unlock Code kann man hier umsonst erhalten: http://a-zgsm.com/freecode/ Die IMEI steht auf dem Stick – dort wo die SIM-Karte eingesteckt wird. Den IMEI Code […]

Mobilfunk (ITU-Definition)

22. März 2013 at 19:21

Generation Technik Übertragung Bandbreite 1G AMPS analog, leitungsvermittelt – 2G GSM digital, leitungsvermittelt 9,6 kBit/s 2.5G HSCSD digital, leitungsvermittelt 57,6 kBit/s GPRS digital, paketvermittelt 115 […]

Python For Schleife (vorwärts / rückwärts)

16. März 2013 at 21:53

#!/usr/bin/python value = -1 Stepcount = 4 for value in range (0,Stepcount):        print value         print #range(100,-1,-1)      for value in range (Stepcount-1,-1,-1): […]

Schrittmotor am I2C

16. März 2013 at 21:52

Es gibt eine große Anzahl von Motoren, aber ich habe mich für folgendes Modell entschieden: 28BJY-48 mit ULN2003 control board. Die Gründe für diesen Schrittmotor […]

Raspberry Projekt: 1-Wire Sensor mit Datenbank

3. März 2013 at 19:32

Mein erstes Projekt mit dem Raspberry und Python: Die Temperaturen von mehreren Sensoren soll in eine Datenbank geschrieben werden.Da mein raspberry headless läuft (also ohne […]

Python – command line arguments

3. März 2013 at 09:36

http://docs.python.org/2/howto/argparse.html   parser = argparse.ArgumentParser(description=”Read 1-wire sensors and write to database”) # argument with argument from type int parser.add_argument(“-r”, “–read”, help=”get the [READ] last entries […]

Python Decompiler – uncompyle2

3. März 2013 at 09:35

https://github.com/wibiti/uncompyle2   Description ‘uncompyle2’ converts Python byte-code back into equivalent Python source. It accepts byte-code from Python version 2.7 only. Additionally, it will only run […]

Python – Referenz

24. Februar 2013 at 19:23

http://www.tutorialspoint.com/python    

SSH Terminal MobaXterm

24. Februar 2013 at 19:06

http://mobaxterm.mobatek.net/ Wenn man Putty verwendet, glaubt man tatsächlich, es muss so beschränkt sein. Mobaterma öffent ein ganz neue Welt. obaXterm free Xserver and SSH client […]

Raspberry – Nano

24. Februar 2013 at 15:52

Tastenkombinationen Eine unvollständige Liste der in Nano vergebenen Tastenkombinationen: Tastenkürzel in Nano Tastenkombination(en)* Funktion Strg + G F1 Hilfe anzeigen (In der Hilfe ist die […]