A Pen by Andreas Storm on CodePen.
Disclaimer : Heavily inspired from agnoster's theme - https://gist.github.com/3712874
A ZSH theme optimized for people who use:
- Solarized
- Git
- Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)
This procedure is tested on Mac OS X 10.8 with Developpers tools installed (xCode).
PHP 5.4 installed with Homebrew.
Update: I wrote a blog post about this.
Download the following files from Oracle website (yes, you need to create an account and accept terms):
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
// Getting the data // | |
var filename = "ROM_NAME"; | |
var rawData = base64ToArray(findValue("B64_SRAM_" + filename)).map(function (a) { return String.fromCharCode(a); }).join(""); | |
var tmpLink = document.createElement("a"); | |
tmpLink.href = "data:application/force-download," + escape(rawData); | |
document.body.appendChild(tmpLink); |