I hereby claim:
- I am kadikraman on github.
- I am hellokadi (https://keybase.io/hellokadi) on keybase.
- I have a public key ASDG7VvFroU2sJhdL6yt4kkk9EtOy4Q_FMzBXl3wKe5UbAo
To claim this, I am signing this object:
| docker run -e "ACCEPT_EULA=true" -e "MSSQL_PID=Express" -e "SA_PASSWORD=suchpass123@" -p 1433:1433 microsoft/mssql-server-linux |
| kill $(ps aux | grep flow | grep -v grep | awk '{print $2}') |
I hereby claim:
To claim this, I am signing this object:
| cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[",]//g' |
| export { default as CircleAdd } from './icons/CircleAdd'; | |
| export { default as TagRemove } from './icons/TagRemove'; |
| /* | |
| Instead of | |
| require('../../blah/stories.js'); | |
| require('../../blah/blah/stories.js'); | |
| ... | |
| */ | |
| const req = require.context('../', true, /stories\.js$/); | |
| function loadStories() { |
| /* | |
| Replacing an item in an array without mutating it | |
| */ | |
| const old = [1, 2, 3, 4]; | |
| const new = Object.assign([], old, {0: 1000}); | |
| console.log(new); | |
| // [1000, 2, 3, 4] |
| /src | |
| /components | |
| /Component1 | |
| index.js <— may be a pure component or a component wrapped in a container, the consumer doesn’t care anyway | |
| index.spec.js | |
| /Component2 | |
| /Component3 | |
| /reducers | |
| index.js | |
| /Reducer1 |
| /src | |
| /components | |
| PureComponent1 | |
| index.js | |
| index.spec.js | |
| style.css | |
| PureComponent2 | |
| index.js | |
| index.spec.js | |
| style.css |
| /src | |
| /components | |
| /containers | |
| /actions | |
| /reducers | |
| /sagas |