Story Points | Equivalent T-shirt size | Effort | Complexity | Risks | Unknowns | Description |
---|---|---|---|---|---|---|
0.5 ~ 1 | X-Small | Very Low | Very Low | Very Low | Very Low | |
2 ~ 3 | Small | Low | Low | Low | Low | ⭐ Smaller user stories. Can be done by 1 person even a junior. |
5 ~ 8 | Medium | Medium | Medium | Medium | Low | 🌟 Most common and normal sized user stories. Can be usually done by 1 person. |
13 ~ 21 | Large | High | High | Medium - High | Low - Medium | |
40 ~ up | X-Large | Very High | Very High | Very High | High | 🚫 Elaborate and/or split. Avoid these kinds of user stories. Manage the risks and unknowns. |
Angular CLI version | Angular version | Node.js version | TypeScript version | RxJS version | |
---|---|---|---|---|---|
1.0.0-beta.17 (package name: angular-cli) | 2.0.x | 6.9.x or later minor version | 2.0.x | 5.0.x or later minor version | |
1.0.0-beta.20-1 (package name: angular-cli) | 2.1.x | 6.9.x or later minor version | 2.0.x | 5.0.x or later minor version | |
1.0.0-beta.22-1 (package name: angular-cli) | 2.2.x | 6.9.x or later minor version | 2.0.x | 5.0.x or later minor version | |
1.0.0-beta.30 | 2.3.x | 6.9.x or later minor version | 2.0.x | 5.0.x or later minor version | |
1.0.0-rc.4 | 2.4.x | 6.9.x or later minor version | 2.0.x | 5.0.x or later minor version | |
1.0.6 | 4.0.x/4.1.x | 6.9.x or later minor version | 2.2.x | 5.0.x or later minor version | |
1.1.3 | 4.0.x/4.1.x | 6.9.x or later minor version | 2.3.x | 5.0.x or later minor version | |
1.2.7 | 4.0.x/4.1.x | 6.9.x or later minor version | 2.3.x | 5.0.x or later minor version | |
1.3.2 | 4.2.x/4.3.x/4.4.x | 6.9.x or later minor version | 2.4.x | 5.0.x or later minor version |
A subjective rating of the bug as it relates to the business or customer requirements. Priority indicates the order in which code defects should be fixed. You can specify the following values:
- Product cannot ship without the successful resolution of the work item, and it should be addressed as soon as possible.
- Product cannot ship without the successful resolution of the work item, but it does not need to be addressed immediately.
- Resolution of the work item is optional based on resources, time, and risk.
# Frontend Learning Resources |
⇐ back to the gist-blog at jrw.fi
Or, 16 cool things you may not have known your stylesheets could do. I'd rather have kept it to a nice round number like 10, but they just kept coming. Sorry.
I've been using SCSS/SASS for most of my styling work since 2009, and I'm a huge fan of Compass (by the great @chriseppstein). It really helped many of us through the darkest cross-browser crap. Even though browsers are increasingly playing nice with CSS, another problem has become very topical: managing the complexity in stylesheets as our in-browser apps get larger and larger. SCSS is an indispensable tool for dealing with this.
This isn't an introduction to the language by a long shot; many things probably won't make sense unless you have some SCSS under your belt already. That said, if you're not yet comfy with the basics, check out the aweso
expect(x).toEqual(y); compares objects or primitives x and y and passes if they are equivalent | |
expect(x).toBe(y); compares objects or primitives x and y and passes if they are the same object | |
expect(x).toMatch(pattern); compares x to string or regular expression pattern and passes if they match | |
expect(x).toBeDefined(); passes if x is not undefined | |
expect(x).toBeUndefined(); passes if x is undefined |
http://angular.github.io/protractor/#/api
Note: Most commands return promises, so you only resolve their values through using jasmine expect API or using .then(function()) structure
Based on this post: https://spagettikoodi.wordpress.com/2015/01/14/angular-testing-cheat-sheet/ by @crystoll
browser.get('yoururl'); // Load address, can also use '#yourpage'
{ | |
"presets": ["es2015"], | |
"plugins": ["transform-runtime"] | |
} |
.pull-right-xs { | |
@media screen and (max-width: 767px) { | |
float: right !important; | |
} | |
} | |
.pull-right-sm { | |
@media screen and (min-width: 768px) { | |
float: right !important; | |
} |