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
<!-- used with <gap:plugin name="com.chariotsolutions.nfc.plugin" /> --> | |
<!DOCTYPE html> | |
<html ng-app="app"> | |
<head> | |
<title>nfc - Test</title> | |
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, maximum-scale=1.0" /> | |
<meta charset="utf-8" /> | |
<meta name="apple-mobile-web-app-capable" content="yes"> | |
<!-- Style --> |
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
# The provider 'virtualbox' that was requested to back the machine | |
# 'default' is reporting that it isn't usable on this system. The | |
# reason is shown below: | |
# VirtualBox is complaining that the kernel module is not loaded. Please | |
# run `VBoxManage --version` or open the VirtualBox GUI to see the error | |
# message which should contain instructions on how to fix this error. | |
sudo /sbin/vboxconfig | |
# There was an error while executing `VBoxManage`, a CLI used by Vagrant |
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
# remove all exited containers | |
docker rm -v $(docker ps -a -q -f status=exited) | |
# remove unused images | |
docker rmi $(docker images -f "dangling=true" -q) | |
# docker container that removes unwanted/unused volumes | |
docker run -v /var/run/docker.sock:/var/run/docker.sock -v /var/lib/docker:/var/lib/docker --rm martin/docker-cleanup-volumes |
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
angular.module('app', ['ionic']).directive('elementSize', [ | |
'$timeout', | |
function ($timeout) { | |
return { | |
restrict: 'A', | |
link: function (scope, element, attrs) { | |
element.ready(function () { | |
var height, | |
width; | |
$timeout(function () { |
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
git log 1.1.1...1.1.2 --pretty=format:'* %s * view commit %H' | grep -v Merge |
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
Plugins: | |
======== | |
AdvancedNewFile | |
AngularJS | |
Babel | |
BracketHighlighter | |
DocBlockr | |
Emmet | |
Git | |
GitGutter |
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
git log 1.1.1...1.1.2 --pretty=format:'* %s * view commit %H' | grep -v Merge |
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
// get new release | |
git fetch --tags | |
git checkout -b <tagname> tags/<tagname> | |
// update existing tag | |
// switch branch before | |
git branch -d <tagname> | |
git fetch --tags | |
git checkout -b <tagname> tags/<tagname> |
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
git push origin origin/OLD_BRANCH:refs/heads/NEW_BRANCH && git push origin :OLD_BRANCH |
OlderNewer