Skip to content

Instantly share code, notes, and snippets.

View RyanAtViceSoftware's full-sized avatar

Ryan Vice RyanAtViceSoftware

View GitHub Profile
@RyanAtViceSoftware
RyanAtViceSoftware / readme.md
Created January 18, 2019 13:01
Branching Strategy

Our branching strategy is going to be GitFlow with some modifications to accommodate demo and testing.

Note we will be renaming dev to master by Monday (1/21)

Challenges

We are trying to solve these current challenges which we will likely not have in the future as our testing and dev ops improve

  1. Allow stability in the demo branches while working with small timezone overlaps. By the time the offshore team is done for the day the US team is just getting started and so we need to have a way that we can get demo stable the day before Friday demos but continue work on Fridays.
  2. Where can code be tested?
  3. The frequency of demos being weekly is causing us to to have to demo code that hasn't been fully reviewed and merged.
@RyanAtViceSoftware
RyanAtViceSoftware / fiddle.css
Last active October 22, 2017 18:16
D3 Example
.chart {
background-color: lightgray;
width: 200px;
height: 300px;
border: 1px solid black;
}
.bar {
height: 30px;
fill: lightgreen;
@RyanAtViceSoftware
RyanAtViceSoftware / fiddle.css
Last active June 14, 2016 12:39
Hello React - forms - data driven form using controlled components. JsFiddle: http://jsfiddle.net/gh/gist/library/pure/e0d4f1ddf19c7050ba70
button {
margin-left: 5px;
}
input {
margin: 5px;
}
form {
padding-right: 10px;
@RyanAtViceSoftware
RyanAtViceSoftware / fiddle.css
Last active December 19, 2015 16:43
Hello React - forms - using controlled components in a form. JsFiddle: http://jsfiddle.net/gh/gist/library/pure/b9d111c5a246ec210a43
button {
margin-left: 5px;
}
input {
margin: 5px;
}
form {
padding-right: 10px;
@RyanAtViceSoftware
RyanAtViceSoftware / fiddle.css
Last active January 5, 2018 08:48
Hello React - controlled components - read and write. JsFiddle: http://jsfiddle.net/gh/gist/library/pure/07b0d008f4ff8e74af46
div {
padding-right: 5px;
}
input {
margin: 5px;
}
@RyanAtViceSoftware
RyanAtViceSoftware / fiddle.html
Last active December 19, 2015 16:42
Hello React - controlled components - read only. http://jsfiddle.net/gh/gist/library/pure/49c7b0271a71001ef5ff
<script src="https://fb.me/react-with-addons-0.14.0.js"></script>
<script src="https://fb.me/react-dom-0.14.0.js"></script>
<div id="view"/>
@RyanAtViceSoftware
RyanAtViceSoftware / fiddle.html
Last active December 19, 2015 16:42
Hello React - controlled components - how to use controlled components in forms. JsFiddle: http://jsfiddle.net/gh/gist/library/pure/044ecdf2f63b2bff57d7
<script src="https://fb.me/react-with-addons-0.14.0.js"></script>
<script src="https://fb.me/react-dom-0.14.0.js"></script>
<div id="view"/>
<script src="https://fb.me/react-with-addons-0.14.0.js"></script>
<script src="https://fb.me/react-dom-0.14.0.js"></script>
<div id="view"/>
@RyanAtViceSoftware
RyanAtViceSoftware / fiddle.html
Last active December 19, 2015 16:41
Hello React - mixins - updating events. JsFiddle: http://jsfiddle.net/gh/gist/library/pure/a0f84933027e0a1a2a38
<script src="https://fb.me/react-with-addons-0.14.0.js"></script>
<script src="https://fb.me/react-dom-0.14.0.js"></script>
<div id="view"/>
@RyanAtViceSoftware
RyanAtViceSoftware / fiddle.html
Last active July 18, 2019 18:48
Hello React - component lifecycle - updating events. JsFiddle: http://jsfiddle.net/gh/gist/library/pure/c709657dc3584cb5962b
<script src="https://fb.me/react-with-addons-0.14.0.js"></script>
<script src="https://fb.me/react-dom-0.14.0.js"></script>
<div id="view"/>