this is just a html where you can basically make things move with javascript
This file contains 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
@echo off | |
:detect | |
choice /cs /n /c HKPMq | |
if %errorlevel%==1 call :UP | |
if %errorlevel%==2 call :RIGHT | |
if %errorlevel%==3 call :DOWN | |
if %errorlevel%==4 call :LEFT | |
if %errorlevel%==5 goto :quit | |
:UP | |
echo UP |
This file contains 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
""" a simple python 3.x code editor in Kivy""" | |
from kivy.app import App | |
from kivy.uix.codeinput import CodeInput | |
# not sure if needed but must be installed | |
import pygments | |
class MyApp(App): | |
def build(self): |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Game</title> | |
</head> | |
<body> | |
<style> | |
canvas { | |
border : 1px solid black; | |
} |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Game</title> | |
</head> | |
<body> | |
<style> | |
canvas { | |
border : 1px solid black; | |
} |