Nom | Plateforme | Etat (Boite/Support (cd / cartouche) / Notice) | Region | Complet | |
---|---|---|---|---|---|
Sim City 2000 | Saturn | A- / B- / A | Pal | boite / CD / Notice | |
Armored Core Nine Breaker | PS2 | B- / C / A | Pal | boite / CD / Notice | |
The Sword of Etheria | PS2 | A / A - / A | Pal | boite / CD / Notice | |
Tetris Worlds | PS2 | A / A - / A - | Pal | boite / CD / Notice | |
Goblin Commander | PS2 | A / A / B - | Pal | boite / CD / Notice | |
Gungrave | ps2 | A / A - / B - | Pal | boite / CD / Notice | |
Metal Slug 4 | ps2 | A- / A / A | Pal | boite / CD / Notice | |
Loom | Saturn | A / A - / A | Jap | boite / CD / Notice |
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
#!/bin/sh | |
### | |
# SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
# For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
### | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |
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
#!/usr/bin/env bash | |
# Generates gource video (h.264) out of multiple repositories. | |
# Pass the repositories in command line arguments. | |
# Example: | |
# <this.sh> /path/to/repo1 /path/to/repo2 | |
RESOLUTION="1600x1080" | |
outfile="gource.mp4" | |
i=0 |