Skip to content

Instantly share code, notes, and snippets.

View paulvollmer's full-sized avatar
:octocat:
!#

Paul Vollmer paulvollmer

:octocat:
!#
View GitHub Profile
@PurpleBooth
PurpleBooth / README-Template.md
Last active May 17, 2024 09:42
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

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.

Prerequisites

@tristanwietsma
tristanwietsma / auth.go
Created May 15, 2014 04:15
Golang web server example
package main
import (
"encoding/base64"
"net/http"
"strings"
)
type handler func(w http.ResponseWriter, r *http.Request)
@ff6347
ff6347 / gh-issues-import.py
Created September 21, 2013 08:36
move github issues
#!/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.
@timpulver
timpulver / writeToFile.sh
Created November 29, 2012 00:09
[Bash] Write text to file
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.
@timpulver
timpulver / ResizableSketch.pde
Created November 24, 2012 15:21
[Processing] Make window/frame resizable
void setup(){
frame.setResizable(true);
//...
}
// tags: processing, p5, frame, java, resize, window
@paulvollmer
paulvollmer / xCode ignores
Created February 21, 2012 12:45
gitignore oF Xcode project
# 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