- Anything on master is deployable
- To work on something new, create a descriptively named branch off of master (i.e. stream-item-margins)
- Commit to that branch locally and regularly push your work to the same named branch on the server
- When you need feedback or help, or you think the branch is ready for merging, open a pull request
- After someone else has reviewed and signed off on the feature, you can merge it into master
- Once it is merged and pushed to ‘master’ on the origin, you can and should deploy immediately
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
| var Comment = {} | |
| Comment.store = Store('Comment', {idprop: 'id'}); | |
| Comment.fetchForPost = function (postId) { | |
| return m.request({ method: 'GET', url: '/api/post/' + postId + '/comments' }) | |
| .then(Comment.store.syncAll) | |
| } |
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
| reductio = require 'reductio' | |
| _ = require 'lodash' | |
| makeTemplate = (config)-> | |
| if !type.call(config) == '[object String]' | |
| return ()-> 'unknown' | |
| if ~config.indexOf '<%' | |
| templ = _.template config | |
| tpl = (d)-> templ d:d | |
| else |
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
Show hidden characters
| { | |
| "browser": true, | |
| "esnext": true, | |
| "globals": { | |
| "require": true, | |
| "exports": true, | |
| "console": true, | |
| "module": true, | |
| "define": true, | |
| "process": true |
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
| /* | |
| * SteamGuide starts steam big picture when the guide button is pressed for 3 seconds | |
| */ | |
| #SingleInstance force | |
| #NoTrayIcon | |
| WaitKey() | |
| { | |
| KeyWait, Joy7, T3 | |
| return ErrorLevel |
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
| o-----------------------------------------------------------------------------------------------------------------------------------------o | |
| | Æfingaplan út júní | | |
| o-----------------------------------------------------------------------------------------------------------------------------------------o | |
| | | Mánudagar | Þriðjudagar | Miðvikudagar | Fimmtudagar | Föstudagar | Laugardagar | Sunnudagar | | |
| o--------o---------------------o-------------o---------------------o-------------o---------------------o---------------------o------------o | |
| | Hvað | 3. Skref / Pushaway | Ræktin | 3. Skref / Pushaway | Ræktin | 3. Skref / Pushaway | 3. Skref / Pushaway | fríí | | |
| | Hvenær | 19:00 | | 19:00 | | 19:00 | 19:00 | | | |
| o--------o---------------------o------------ |
NewerOlder