Tag Archives: php

How to Make a Raspberry Pi Web Server

http://www.wikihow.com/Make-a-Raspberry-Pi-Web-Server How to Make a Raspberry Pi Web Server Start the Raspberry Pi Operating SystemSet Up the Raspberry PiInstalling The ServerInstall MySQLInstall FTPConfigure FTPThe Finishing Touches Edited by Zach, Tri.infinite, AnguishedEnd, June and 15 others If you are looking for a way to make a cheap web server, primarily to be used as a testing environment or to store files, then the Raspberry Pi is perfect for you. What is a Raspberry Pi? It is a new inexpensive mini computer, perfect for

Python Joystick Test

  Instalasi & Testing Koneksi Joystick   import pygame as p p.init() stick = p.joystick.Joystick(0) stick.init() print(“initialized:”,bool(stick.get_init())) print(stick.get_name()) while stick.get_axis(0)*100 < 399: print(round(stick.get_axis(0)*100)) #need for right detection otherwise stick.get_axis always returns 0 for event in p.event.get(): None p.quit()