View this code at http://livecoding.io/5814042
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
-- Based on http://www.codenauts.com/blog/2011/3/1/importing-activities-from-omnifocus-or-things-to-pomodoro-ap.html and http://forums.omnigroup.com/showpost.php?p=55309&postcount=22 | |
-- Gets selected tasks or flagged tasks and copies them to ~/Dropbox/Pomodoro/tasks.json | |
tell application "OmniFocus" | |
-- CONSTANTS change them if you like | |
set UserHome to (POSIX path of (path to home folder)) as string | |
set JSONfilename to UserHome & "Dropbox/Pomodoro/tasks.json" as string | |
set JSONpattern to UserHome & "Dropbox/Pomodoro/*.json" as string | |
set onePomodoroIsMinutes to 25 | |
set estimateItems to {} |
View this code at http://livecoding.io/5845125
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
# Assuming that you have followed all the instructions from https://github.com/rumblelabs/asset_sync | |
# Put this in your deployment script | |
# Choose any environment here the important part is that your environment is using the same bucket for all environments | |
# than you only need to precompile assets once | |
RAILS_ENV=staging bundle exec rake assets:precompile | |
# You need to set git credentials otherwise it won't be able to commit | |
git config --global user.email "[email protected]" | |
git config --global user.name "Codeship Server" | |
# Add your manifest file so that rails can find digested version of files |
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
package parser | |
import ( | |
"database/sql" | |
"fmt" | |
) | |
type Row struct { | |
MenuId int | |
Menu sql.NullString |
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
/node_modules/.bin/rtd runOnce --debug <<< | |
Running "bgShell:killAll" (bgShell) task | |
[D] Task source: /Users/maxim/repos/meteor_learning/meteor-rtd-example-project/node_modules/rtd/node_modules/grunt-bg-shell/tasks/bg-shell.coffee | |
Running "downloadAndOrStartSelenium" task | |
[D] Task source: /Users/maxim/repos/meteor_learning/meteor-rtd-example-project/node_modules/rtd/Gruntfile.js | |
Running "bgShell:startKarma" (bgShell) task | |
[D] Task source: /Users/maxim/repos/meteor_learning/meteor-rtd-example-project/node_modules/rtd/node_modules/grunt-bg-shell/tasks/bg-shell.coffee |
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
<section ng-app="myApp" ng-controller="MainCtrl"> | |
<h4 class="text-center">AngularJS Numeric Value Widget</h4> | |
<div class="well entry"> | |
<label>Activity entry</label> | |
<input type="text" ng-model="activityUnitValue" name="unitValue" integer="" numeric="" positive=""> | |
</div> | |
</section> |
- Find an ip address of site you want to access ( including subdomain as each subdomain can point to different ip) using cached DNS records -> https://www.whatsmydns.net
Example https://www.whatsmydns.net/#A/docs.semaphoreapp.com
2. Put the following in your /etc/hosts
IP_ADDRESS WEBSITE_WITH_SUBDOMAIN
Example:
50.31.209.254 docs.semaphoreapp.com
3. Access website using normal address in browser. Does not require restart unless you are on windows.
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
#!/bin/bash | |
# | |
# _ _ _ _ _ _ _ _ _ _ | |
# | | (_) | | | | (_) | | | | | | | | |
# | |__ _ _ _| | __| | | ___| |_ ___ | |__ ___ ___ | |_ ___| |_ _ __ __ _ _ __ | |
# | '_ \| | | | | |/ _` | |/ / | __/ _ \ | '_ \ / _ \ / _ \| __/ __| __| '__/ _` | '_ \ | |
# | |_) | |_| | | | (_| | <| | || __/ | |_) | (_) | (_) | |_\__ \ |_| | | (_| | |_) | | |
# |_.__/ \__,_|_|_|\__,_|_|\_\_|\__\___| |_.__/ \___/ \___/ \__|___/\__|_| \__,_| .__/ | |
# | | |
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
--- | |
services: | |
logentries: | |
image: logentries/docker-logentries | |
volumes: ["/var/run/docker.sock:/var/run/docker.sock"] | |
command: " -t <SECRET_TOKEN> -a host=`uname -n`" |
OlderNewer