$ sudo apt-get install zsnes:i386
http://www.emuparadise.me/Super_Nintendo_Entertainment_System_(SNES)_ROMs/
https://www.loveroms.com/roms/super-nintendo
#!/bin/bash | |
genpasswd() { | |
local l=$1 | |
[ "$l" == "" ] && l=16 | |
tr -dc A-Za-z0-9_ < /dev/urandom | head -c ${l} | xargs | |
} | |
genpasswd |
<!DOCTYPE html> | |
<html> | |
<title>Hello Strapdown</title> | |
<xmp theme="united" style="display:none;"> | |
# Markdown text goes in here | |
## Chapter 1 | |
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore |
var fs = require('fs'), | |
util = require('util'), | |
Stream = require('stream').Stream; | |
/** | |
* Create a bandwidth limited stream | |
* | |
* This is a read+writeable stream that can limit how fast it | |
* is written onto by emitting pause and resume events to | |
* maintain a specified bandwidth limit, that limit can |
#! /bin/bash | |
# Dumps, compresses, encrypts, transfers, and rotates Rancher backups to/on Amazon S3. | |
# Requirements: | |
# | |
# 1. Docker | |
# | |
# $ curl -fsSL https://get.docker.com/ | sh |
#! /bin/bash | |
# Generates, encrypts, transfers and rotates Gitlab backups to/on Amazon S3. | |
# Requirements: | |
# | |
# 1. Gitlab | |
# | |
# $ apt-get update |
COUNTRIES = { | |
"US": "United States", | |
"AF": "Afghanistan", | |
"AX": "Åland Islands", | |
"AL": "Albania", | |
"DZ": "Algeria", | |
"AS": "American Samoa", | |
"AD": "Andorra", | |
"AO": "Angola", | |
"AI": "Anguilla", |
package main | |
import ( | |
"fmt" | |
"github.com/codegangsta/negroni" | |
"github.com/julienschmidt/httprouter" | |
"net/http" | |
) | |
func main() { |