Description: Setup GitHub Pages "gh-pages" branch and "master" branch as subfolders of a parent project folder ("grandmaster").
Author: Chris Jacob @_chrisjacob
Tutorial (Gist): https://gist.github.com/833223
| <?php | |
| /** | |
| * This is free and unencumbered software released into the public domain. | |
| * | |
| * Anyone is free to copy, modify, publish, use, compile, sell, or | |
| * distribute this software, either in source code form or as a compiled | |
| * binary, for any purpose, commercial or non-commercial, and by any | |
| * means. | |
| * |
Description: Setup GitHub Pages "gh-pages" branch and "master" branch as subfolders of a parent project folder ("grandmaster").
Author: Chris Jacob @_chrisjacob
Tutorial (Gist): https://gist.github.com/833223
| package main | |
| import ( | |
| "fmt" | |
| "time" | |
| ) | |
| // Suggestions from golang-nuts | |
| // http://play.golang.org/p/Ctg3_AQisl |
| ###Download XCode from the App Store | |
| Get it from [here](https://itunes.apple.com/en/app/xcode/id497799835?mt=12) | |
| ###Get cmake | |
| Use/get a package manager, such as [homebrew](http://brew.sh/). | |
| Open a terminal window and type the following | |
| ``` | |
| brew install cmake | |
| ``` | |
| This will get the required packages for *cmake*. |
| ;; Set the starting position and width and height of Emacs Window | |
| (add-to-list 'default-frame-alist '(left . 0)) | |
| (add-to-list 'default-frame-alist '(top . 0)) | |
| (add-to-list 'default-frame-alist '(height . 45)) | |
| (add-to-list 'default-frame-alist '(width . 175)) | |
| ;; To get rid of Weird color escape sequences in Emacs. | |
| ;; Instruct Emacs to use emacs term-info not system term info | |
| ;; http://stackoverflow.com/questions/8918910/weird-character-zsh-in-emacs-terminal | |
| (setq system-uses-terminfo nil) |
| (source "melpa" "http://melpa.milkbox.net/packages/") | |
| (source "gnu" "http://elpa.gnu.org/packages/") | |
| (source "marmalade" "http://marmalade-repo.org/packages/") | |
| (depends-on "ac-js2") | |
| (depends-on "adaptive-wrap") | |
| (depends-on "ag") | |
| (depends-on "auto-complete") | |
| (depends-on "calfw") | |
| (depends-on "cask") |
| /* | |
| Serve is a very simple static file server in go | |
| Usage: | |
| -p="8100": port to serve on | |
| -d=".": the directory of static files to host | |
| Navigating to http://localhost:8100 will display the index.html or directory | |
| listing file. | |
| */ | |
| package main |
Unofficial documentation to internal Riot Games APIs for LOL eSports.