I hereby claim:
- I am msecret on github.
- I am msecret (https://keybase.io/msecret) on keybase.
- I have a public key ASAnq2TP5Mjg_gSpKl0ICryjwayTIC-oN-3WcY66tbMOrwo
To claim this, I am signing this object:
Verifying my Blockstack ID is secured with the address 1QFwXnJX93zDNWQ9bAFiX2EMJXuUynoCiK https://explorer.blockstack.org/address/1QFwXnJX93zDNWQ9bAFiX2EMJXuUynoCiK |
I hereby claim:
To claim this, I am signing this object:
// line 96 | |
this.merge('guid', | |
{ | |
"type": "app.crash", | |
"actor": "bba7537f-601d-48c4-9705-4583ba54ea4b", | |
"actor_type": "user", | |
"actor_name": "[email protected]", | |
"actee": "b44c91fc-f85b-4c6d-9623-e72babfe0f29", | |
"actee_type": "app", | |
"actee_name": "testapp01", |
The cloud.gov dashboard is an open source UI for the open source Cloud Foundry(CF) system. It's built with React and anotoher CSS library called cg-style to create a UI emulates the CF CLI tool as well as add additional functionality. The project has a large amount of testing and is thoroughly user researched.
As cloud foundry is an open source project, there are many groups that are interested in building a CF dashboard similar to the cloud.gov one. Government's like Australia or Rhode Island, or any Cloud Foundry users will likely need to set up their own dashboard with their own styling, configuration and functionality. The only current solution is a poorly maintained and tested Angular project.
The cloud.gov dashboard could potentially make a great candidate for individual teams to roll their own CF dashboard. Before this is done, the cloud.gov dashboard has to be made less specific to cloud.gov. This could be d
# Cost-benefit analysis of building a configurable and extendable dashboard | |
## Introduction | |
The cloud.gov dashboard is an open source UI for the open source Cloud Foundry(CF) system. It's built with React and anotoher CSS library called cg-style to create a UI emulates the CF CLI tool as well as add additional functionality. The project has a large amount of testing and is thoroughly user researched. | |
As cloud foundry is an open source project, there are many groups that are interested in building a CF dashboard similar to the cloud.gov one. Government's like Australia or Rhode Island, or any Cloud Foundry users will likely need to set up their own dashboard with their own styling, configuration and functionality. The only current solution is a poorly maintained and tested Angular project. | |
The cloud.gov dashboard could potentially make a great candidate for individual teams to roll their own CF dashboard. Before this is done, the cloud.gov dashboard has to be made less specific to cloud.gov. This could be d |
var main = require('../src/main.js'); | |
describe('main', function() { | |
describe('init()', function() { | |
it('set the name property to the name passed in', function() { | |
}); | |
}); | |
describe('calculate()', function() { |
// The problem | |
/* | |
In working on the standards, seeing other people's code and seeing our own code, I see a lot of having to | |
remove the margins on elements like headings. This usually happens when headings are included in elements | |
that aren't in normal content flow such as in an accordion. | |
*/ | |
// accordion.scss, example of our own rules to remove margin | |
.usa-accordion { | |
h1, |
Pre-steps: Ensure your local webserver for you project is running on localhost at some port. This port will be reference later with ${PORT}.
var foo = 1; | |
var bar = foo; | |
bar = 9; | |
function doStuff() { | |
var fullName; | |
var item = {}; | |
var items = []; |