- Create initial state in Sparta project (locally)
- Commit to Github (Sparta organisation)
- Set up Codeship integration with GitHub
- Set up HipChat to track JIRA
- Create HipChat Room
- Integrate HipChat room with CodeShip and Github
- Create new JIRA Project
- Create JIRA Scrum Board
This file contains hidden or 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
| # Download the source | |
| git clone https://github.com/instructure/canvas-lms.git canvas | |
| cd canvas | |
| git checkout --track -b stable origin/stable | |
| rbenv install –keep 1.9.3-p545 | |
| rbenv local 1.9.3-p545 | |
| brew install xmlsec1 postgresql | |
| bundle install | |
| # If you get this error: No source for ruby-1.9.3-p545 provided with debugger-ruby_core_source gem. |
This file contains hidden or 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
| # Set up ssh password for easy access. | |
| # http://cs.sru.edu/~zhou/linux/howto/sshpasswd.html | |
| # Set up remote Sublime Text | |
| # Install rsub package in ST3 | |
| printf "Host *\n RemoteForward 52698 127.0.0.1:52698" >> ~/.ssh/config | |
| ssh -X root@XXXXXXXXX | |
| sudo wget -O /usr/local/bin/subl https://raw.github.com/aurora/rmate/master/rmate; sudo chmod +x /usr/local/bin/subl |
This file contains hidden or 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 | |
| # ~/.osx — http://mths.be/osx | |
| # Ask for the administrator password upfront | |
| sudo -v | |
| # Keep-alive: update existing `sudo` time stamp until `.osx` has finished | |
| while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null & |
This file contains hidden or 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
| <html> | |
| <head> | |
| <style> | |
| body { | |
| width: 30%; | |
| margin: 3em auto; | |
| position: relative; | |
| height: 180px; | |
| text-align: center; |
This file contains hidden or 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
| 100.times{|i|s=nil;s='Fizz'if i%3==0;s="#{s}Buzz"if i%5==0;puts s||i} |
This file contains hidden or 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
| - Order of Jobs / Projects. Add Date to projetc for ordering. | |
| - Print Stylesheet | |
| - Redesign top bit of main pages to make better use of space | |
| - Convert | |
| - Add freetext "Projects" section. Use radio buttons to choose witch mode to use. |
This file contains hidden or 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
| display dialog "Project Name" default answer "" | |
| set project_name to text returned of result | |
| set project_tag to "/" & project_name | |
| set project_note_title to "PROJECT - " & project_name | |
| set evernote_note_link to missing value | |
| tell application "Evernote" | |
| -- Create Project Tag |
This file contains hidden or 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
| on alfred_script(project_name) | |
| set project_tag to "/" & project_name | |
| set project_note_title to "PROJECT - " & project_name | |
| set evernote_note_link to missing value | |
| tell application "Evernote" | |
| -- Create Project Tag | |
| if (not (tag named project_tag exists)) then |
This file contains hidden or 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
| display dialog "Project Name" default answer "" | |
| set project_name to text returned of result | |
| set project_tag to "/" & project_name | |
| set project_note_title to "PROJECT - " & project_name | |
| set evernote_note_link to missing value | |
| tell application "Evernote" | |
| -- Create Project Tag |