- 12pm - The Kernel (~1hour) (2pm close)
- 1pm - Fourpure (~45mins)
- 1:30pm - Partizan (~45hour)
- 2:30pm - Brew By Numbers (~1hour)
- 3:30pm - Southwark Brewing Co (~30mins) (5pm close)
- 4:15pm - Anspach & Hobday/Bullfinch Brewery (~1hour) (6pm close)
- 6pm - Bottleshop
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
| $(document).on('click', '#showInvestigated', function () { | |
| window.location = '@Html.Raw(Url.Action("StoreErrors"))'; | |
| }); |
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
| public class VolatileJournal : IJournal | |
| { | |
| private readonly StringBuilder log; | |
| public VolatileJournal() | |
| { | |
| log = new StringBuilder(); | |
| } | |
| public string[] GetExecutedScripts() |
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
| ReleaseNotesCompiler | |
| In order to improve the quality for our release notes we'll generate them based on the relevant github issues. | |
| * This is a separate tool from GFV | |
| * The build server will compile the release notes either for each commit or daily | |
| * Build will fail if release notes can't be generated | |
| * All closed issues for a milestone will be included | |
| * All issues must have one of the following tags Bug|Feature|Internal refactoring | |
| * For now the text is taken from the name of the issue |
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
| # Utilities | |
| cinst 7zip | |
| cinst ConEmu | |
| # Fonts | |
| cinst SourceCodePro | |
| # Coding | |
| cinst git | |
| cinst P4Merge |
I have been doing a heap of reading about semver and how you can include build meta-data and other things, but I am really struggling to find a way to fit SemVer and Continous Delivery together.
Currently I am the primary maintainer or a main contributor for for:
https://github.com/TestStack/White
https://github.com/JakeGinnivan/VSTOContrib
https://github.com/DbUp/DbUp
https://github.com/Code52/DownmarkerWPF
https://github.com/TestStack/ConventionTests
And quite a few other smaller projects (https://github.com/JakeGinnivan?tab=repositories)
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
| mocha --compilers js:babel/register,js:./test/css-modules-compiler.js --recursive -w |
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
| import React from 'react'; | |
| const toPromise = (load) => (new Promise((resolve) => ( | |
| load(resolve) | |
| ))); | |
| class LazilyLoad extends React.Component { | |
| constructor() { | |
| super(...arguments); |
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
| // setup.js | |
| import hook from 'css-modules-require-hook' | |
| import sass from 'node-sass' | |
| hook({ | |
| extensions: [ '.scss' ], | |
| preprocessCss: data => sass.renderSync({ data }).css | |
| }) |
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 Col = require('react-bootstrap/lib/Col') | |
| var PageHeader = require('react-bootstrap/lib/PageHeader') | |
| var React = require('react') | |
| var Row = require('react-bootstrap/lib/Row') | |
| var {connect} = require('react-redux') | |
| var {reduxForm} = require('redux-form') | |
| var DateInput = require('./DateInput') | |
| var FormField = require('./FormField') | |
| var LoadingButton = require('./LoadingButton') |
OlderNewer