Skip to content

Instantly share code, notes, and snippets.

View ameoverflow's full-sized avatar
🖥️
godot asset library master race

ameOverflow ameoverflow

🖥️
godot asset library master race
  • /dev/null
  • 02:53 (UTC +01:00)
View GitHub Profile
@hammerill
hammerill / livearea-specs.md
Last active November 19, 2025 02:01
Documentation how to make PS Vita happy with images for LiveArea. Resolves 0x8010113D error.
@0xjac
0xjac / private_fork.md
Last active December 8, 2025 20:03
Create a private fork of a public repository

The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.

The correct way of creating a private frok by duplicating the repo is documented here.

For this assignment the commands are:

  1. Create a bare clone of the repository. (This is temporary and will be removed so just do it wherever.)

git clone --bare [email protected]:usi-systems/easytrace.git

@willurd
willurd / web-servers.md
Last active December 9, 2025 14:34
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000