Use
git grep -E "# TODO|// TODO"
or
git grep -El '# TODO|// TODO' | xargs -n1 git blame | grep $(git config user.name) | grep TODO
to get your todos from a git-project.
sudo npm install -g cordova | |
brew install android-sdk -g | |
android | |
// Now the "Android SDK-Manager" GUI opens; download the preselected packages plus "Android 4.4.2 (API 19)" | |
brew cask install android-file-transfer | |
brew install ant -g | |
cordova create hello com.example.hello HelloWorld | |
cd hello |
Use
git grep -E "# TODO|// TODO"
or
git grep -El '# TODO|// TODO' | xargs -n1 git blame | grep $(git config user.name) | grep TODO
to get your todos from a git-project.
github_project='[projectname]' # e.g. github_project='kirby' | |
project_creator_username = # e.g. github_project='getkirby' | |
my_username='DerZyklop' | |
git clone "https://github.com/$project_creator_username/$github_project" | |
# now click the "fork" button | |
git remote add "$my_username" "https://github.com/$my_username/$github_project" | |
git checkout -b [name of my new feature] |
wget http://builds.piwik.org/piwik.zip && unzip piwik.zip && rm piwik.zip && How\ to\ install\ Piwik.html |
I hereby claim:
To claim this, I am signing this object:
module.exports = (grunt) -> | |
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks) | |
grunt.initConfig | |
# load content from the package.json | |
pkg: grunt.file.readJSON('package.json') | |
# Replace o1234567890 with your OpenVPN id. To get your id, start the VPN and run ps|grep client_o | |
# Replace YOUR_VPN_NAME with the name of your VPN profile in DSM 5 admin panel. | |
if echo `ifconfig tun0` | grep -q "00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00" | |
then | |
echo "VPN is running" | |
else | |
echo conf_id=o1234567890 > /usr/syno/etc/synovpnclient/vpnc_connecting | |
echo conf_name=YOUR_VPN_NAME >> /usr/syno/etc/synovpnclient/vpnc_connecting | |
echo proto=openvpn >> /usr/syno/etc/synovpnclient/vpnc_connecting |
git config --global color.ui true |
git log --pretty --graph --name-status --oneline |
#! /usr/bin/env node | |
var file = require(process.cwd()+'/package.json'); | |
var pkg = JSON.parse(JSON.stringify(file)); | |
var spawn = require('child_process').spawn; | |
if ( pkg.bugs.url ) { | |
spawn('open', [pkg.bugs.url]); | |
} else { | |
console.error("--------------------------------------"); |