Tools to generate images to get your app on the play store.
- Icons and 512 x 512 Web Icon
- Android Asset Studio - Make sure to click
Generate Web Icon
- Android Asset Studio - Make sure to click
- Feature Graphic
- Feature Graphic Generator
| /* | |
| * Tiny tokenizer | |
| * | |
| * - Accepts a subject string and an object of regular expressions for parsing | |
| * - Returns an array of token objects | |
| * | |
| * tokenize('this is text.', { word:/\w+/, whitespace:/\s+/, punctuation:/[^\w\s]/ }, 'invalid'); | |
| * result => [{ token="this", type="word" },{ token=" ", type="whitespace" }, Object { token="is", type="word" }, ... ] | |
| * | |
| */ |
Tools to generate images to get your app on the play store.
Generate Web Iconextension_id=jifpbeccnghkjeaalbbjmodiffmgedin # change this ID
curl -L -o "$extension_id.zip" "https://clients2.google.com/service/update2/crx?response=redirect&os=mac&arch=x86-64&nacl_arch=x86-64&prod=chromecrx&prodchannel=stable&prodversion=44.0.2403.130&x=id%3D$extension_id%26uc"
unzip -d "$extension_id-source" "$extension_id.zip"Thx to crxviewer for the magic download URL.
By: @BTroncone
Also check out my lesson @ngrx/store in 10 minutes on egghead.io!
Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!
Table of Contents
| // connect() is a function that injects Redux-related props into your component. | |
| // You can inject data and callbacks that change that data by dispatching actions. | |
| function connect(mapStateToProps, mapDispatchToProps) { | |
| // It lets us inject component as the last step so people can use it as a decorator. | |
| // Generally you don't need to worry about it. | |
| return function (WrappedComponent) { | |
| // It returns a component | |
| return class extends React.Component { | |
| render() { | |
| return ( |
| # Stop all containers | |
| docker stop `docker ps -qa` | |
| # Remove all containers | |
| docker rm `docker ps -qa` | |
| # Remove all images | |
| docker rmi -f `docker images -qa ` | |
| # Remove all volumes |
| importScripts('/node_modules/mocha/mocha.js'); | |
| mocha.setup({ | |
| ui: 'bdd', | |
| reporter: null, | |
| }); | |
| describe('First SW Test Suite', function() { | |
| it('should test something', function() { | |
| ... |