This file contains 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
#!/usr/bin/env bash | |
# | |
# Author: Stefan Buck | |
# License: MIT | |
# https://gist.github.com/stefanbuck/ce788fee19ab6eb0b4447a85fc99f447 | |
# | |
# | |
# This script accepts the following parameters: | |
# | |
# * owner |
This file contains 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
var oauth = { | |
consumer_key: config.twitter.clientID, | |
consumer_secret: config.twitter.clientSecret, | |
token: twitterUser.token, | |
token_secret: twitterUser.tokenSecret | |
}; | |
var params = { | |
user_id: twitterUser.id, | |
count: 200 |
This file contains 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
'use strict'; | |
var gulp = require('gulp'); | |
var jshint = require('gulp-jshint'); | |
var jscs = require('gulp-jscs'); | |
var mocha = require('gulp-mocha'); | |
var bump = require('gulp-bump'); | |
var paths = { | |
lint: ['./gulpfile.js', './src/*.js'], |
This file contains 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
ps aux | grep PROCESSNAME |
This file contains 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
/** | |
* Key - Value style | |
*/ | |
M.I18N.de_de = { | |
'global.button.back' : 'Back', | |
'global.button.close' : 'Close', | |
'global.button.remove' : 'delete', | |
'global.button.remove.confirm' : 'Do you really want to delete this item??', | |
'global.button.edit' : 'Edit', | |
'global.button.next' : 'Next »', |
NewerOlder