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
# Bash Menu Script | |
sudo cp free_python_games/* ./ | |
PS3='Please enter your choice of game: ' | |
options=("mazerunner" "pacman" "tic-tac-toe" "puzzle") | |
select opt in "${options[@]}" | |
do | |
case $opt in | |
"mazerunner") | |
python mazerunner.py |
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
alias mazerunner='python mazerunner.py' |
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
""" | |
Sample Python/Pygame Programs | |
Simpson College Computer Science | |
http://programarcadegames.com/ | |
http://simpson.edu/computer-science/ | |
From: | |
http://programarcadegames.com/python_examples/f.php?file=maze_runner.py | |
Explanation video: http://youtu.be/5-SbFanyUkQ |
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
""" | |
Sample Python/Pygame Programs | |
Simpson College Computer Science | |
http://programarcadegames.com/ | |
http://simpson.edu/computer-science/ | |
From: | |
http://programarcadegames.com/python_examples/f.php?file=platform_jumper.py | |
Explanation video: http://youtu.be/BCxWJgN4Nnc |
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
!SESSION Fri Feb 08 16:03:10 IST 2013 ------------------------------------------ | |
!ENTRY org.eclipse.equinox.launcher 4 0 2013-02-08 16:03:10.402 | |
!MESSAGE Exception launching the Eclipse Platform: | |
!STACK | |
java.lang.ClassNotFoundException: org.eclipse.core.runtime.adaptor.EclipseStarter | |
at java.net.URLClassLoader$1.run(Unknown Source) | |
at java.net.URLClassLoader$1.run(Unknown Source) | |
at java.security.AccessController.doPrivileged(Native Method) | |
at java.net.URLClassLoader.findClass(Unknown Source) | |
at java.lang.ClassLoader.loadClass(Unknown Source) |