Skip to content

Instantly share code, notes, and snippets.

View SISheogorath's full-sized avatar
🌍
Waiting for world peace to appear

Sheogorath SISheogorath

🌍
Waiting for world peace to appear
View GitHub Profile
### Keybase proof
I hereby claim:
* I am sisheogorath on github.
* I am sheogorath (https://keybase.io/sheogorath) on keybase.
* I have a public key ASDclDVZcfqODE7Ikh-pjaaSVji1xWAUaCFvkrexeogUFwo
To claim this, I am signing this object:
@SISheogorath
SISheogorath / README.md
Created October 11, 2017 11:32
A file that generates the source code files with an AGPL header including Copyright notices for all involved people.

The generate-header.sh is a small tool, provided for license changes.

It runs across a git repository and adds an AGPL header to all .js files.

To prevent any loss of data, it's not overwritten. Instead .agpl ist added to the file name.

Now the review process can start and you only have to verify that you can change the license to AGPL for this file. If you are allowed to do so, mv one file over the other. If you are already sure that you are allowed to do it, add a mv ${file}.agpl ${file} statement at the end of the if statement.

@SISheogorath
SISheogorath / travis.sh
Last active May 29, 2017 21:29
Use Travis CLI everywhere by running docker
#!/bin/sh
set -e
OPWD=$(pwd)
TRAVIS_DIR="$HOME/.travis-cli"
TRAVIS_RCFILE="$HOME/.travis"
TRAVIS_IMAGETAG="travis:local"
# Check that all we need exists
@SISheogorath
SISheogorath / Dockerfile
Last active March 7, 2017 03:16
Docker based version of the ruby twitter client "t"
# Place this in the $TWITTER_DIR
FROM ruby:2.3
RUN gem install t
ENTRYPOINT ["t"]
@SISheogorath
SISheogorath / doctl
Last active April 3, 2017 18:08
Provides doctl on every plattform. Simple, fast, docker :D
#!/bin/sh
set -e
OPWD=`pwd`
DOCTL_DIR="$HOME/.doctl"
DOCTL_RCFILE="$HOME/.doctlrc"
DOCTL_IMAGETAG="doctl:local"
# Check that all we need exists