From the DTR protocol, the most effective piece that I noticed was having Mod 3&4 students share their experiences of working on teams with students from newer cohorts. The role playing felt a bit forced nad unatural, but there seemed to be great value in sharing group experiences that I've had and how to producively work through them.
When shipping code for an upcoming release, we're responsible for creating release branches (and closing previous ones) for any of the following repos with new code changes:
- peak
- legistarweb
- chronus
- atreyu
We use git flow to manage our branches around releases, so be sure to set it up and read through the docs here if you don't already have it.
- Before cutting new release branches, make sure all open release/hotfix branches are closed.
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
| const MinHeap = require('min-heap') | |
| module.exports = class Sorter { | |
| constructor(logSources, printer, async = false) { | |
| this.heap = new MinHeap | |
| this.min = null | |
| this.logsObj = {} | |
| this.currentMinLog = null | |
| this.complete = false | |
| this.logSources = logSources |
OlderNewer