One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
package main | |
import ( | |
"encoding/base64" | |
"net/http" | |
"strings" | |
) | |
type handler func(w http.ResponseWriter, r *http.Request) |
#!/usr/bin/python | |
""" | |
Import Github issues from one repo to another. | |
The orignal work: https://github.com/mkorenkov/tools/blob/master/gh-issues-import/gh-issues-import.py | |
(assuming public domain license). | |
Used to migrate Github's Plone Conference 2012 temporary repository | |
to collective.developermanual issues. |
echo "THIS IS STUFF FOR THE FILE" > index.html | |
the single > just overwrites anything in there. | |
echo "THIS IS STUFF FOR THE FILE" >> index.html | |
the dual >> appends the stuff at the end. |
void setup(){ | |
frame.setResizable(true); | |
//... | |
} | |
// tags: processing, p5, frame, java, resize, window |
# https://gist.github.com/gists/1876339 | |
*.DS_Store | |
# ignore Xcode compiled build folder and application. | |
*build | |
*.app | |
# ignore Xcode User .pbxuser and .mode1v3 files. | |
*.pbxuser | |
*.mode1v3 |