Area | Phase 1 | Phase 2 | Phase 3 |
---|---|---|---|
Techs | Editor, Responsive web, BEM, CSS3, HTML5, basic JS, animations, SVG, icon fonts, SCSS\Stylus, flexbox, building tools | advanced JS, Browser API's, algorithms, OOP, FP, MVC, templating, patterns, d3, React, Redux, Ember, Routers, Maps | server side, nodejs, isomorphic web, testing, REST, WS, docker, MongoDB, Redis, SQL, RabbitMQ |
Project | landing page | client for flickr | isomorphic app like google keep or so |
Time | 1-1.5 month | 2-2.5 months | 3-3.5 month |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const juice = require("juice"); | |
console.log(juice(` | |
<style>.test {width: 100px}</style> | |
<div class="test">Test</div> | |
`))// => "<div class="test" style="width: 100px;">Test</div>" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
touch index.js | |
echo "node_modules" >> .gitignore | |
echo ".DS_Store" >> .gitignore | |
git init . | |
flow init | |
curl https://gist.githubusercontent.com/asci/dc5dfe08233b94b4b57a89d566c1233a/raw/0a70dec040024970310174cf94fa8f79ca113483/eslintrc.js >> eslintrc.js | |
npm init --yes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
"env": { | |
"browser": true, | |
"es6": true | |
}, | |
"extends": "eslint:recommended", | |
"parserOptions": { | |
"sourceType": "module" | |
}, | |
"rules": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ignore] | |
.*/node_modules/.* | |
[include] | |
[libs] | |
[options] | |
module.file_ext=.js | |
module.ignore_non_literal_requires=true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file is used by Flex Tool Bar to create buttons on your Tool Bar. | |
# For more information how to use this package and create your own buttons, | |
# read the documentation on https://atom.io/packages/flex-tool-bar | |
[ | |
{ | |
type: 'button' | |
tooltip: 'Show in file tree' | |
callback: 'tree-view:reveal-active-file' | |
icon: 'bullseye' |
- http://wesbos.com/git-hot-tips/
- https://github.com/sindresorhus/awesome - check every tech you're working with for some awesomeness
- http://caniuse.com/ - check browser support for some features berfore use them
- http://stackoverflow.com/ - questions
- https://coderwall.com/ - tips and tricks
- http://javascriptweekly.com/ - subcription
- http://html5weekly.com/ - subcription
- http://css-weekly.com/ - subcription
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[36mBuilt-in Atom packages[39m (89) | |
βββ [email protected] | |
βββ [email protected] | |
βββ [email protected] | |
βββ [email protected] | |
βββ [email protected] | |
βββ [email protected] | |
βββ [email protected] | |
βββ [email protected] | |
βββ [email protected] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function webpackUniversalModuleDefinition(root, factory) { | |
if(typeof exports === 'object' && typeof module === 'object') | |
module.exports = factory(require("react")); | |
else if(typeof define === 'function' && define.amd) | |
define(["react"], factory); | |
else if(typeof exports === 'object') | |
exports["ReactMotion"] = factory(require("react")); | |
else | |
root["ReactMotion"] = factory(root["React"]); | |
})(this, function(__WEBPACK_EXTERNAL_MODULE_1__) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"script" : "bin/www" | |
} |