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
- http://pivotallabs.com/structure-your-sass-files-with-import/ | |
- http://thesassway.com/beginner/how-to-structure-a-sass-project | |
- http://habrahabr.ru/post/140612/ | |
- http://sass-lang.com/documentation/file.SASS_REFERENCE.html --- good start working using sass: varables, types. | |
- https://web-design-weekly.com/2013/05/12/handy-sass-mixins/ | |
- https://www.jamesstone.com/blog/the-five-secrets-of-sass-foundation/ | |
- https://chillco.com/blog/setting-sass-and-compass-source-maps |
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
- http://www.ozon.ru/context/detail/id/2338486/ | |
- http://www.ozon.ru/context/detail/id/4883702/ | |
- http://blog.mann-ivanov-ferber.ru/2014/04/28/prokachaj-sebya-top-10-knig-po-samorazvit/?utm_source=mifmain&utm_medium=display&utm_content=samorazvitie&utm_campaign=4xbanner | |
- http://www.alpinabook.ru/catalog/PersonalEffectiveness/31269/ | |
- http://www.mann-ivanov-ferber.ru/books/paperbook/joy-x/ | |
- http://www.mann-ivanov-ferber.ru/books/vselennaya-chisel/ | |
- http://www.mann-ivanov-ferber.ru/promo/presents/vacation/?utm_source=mifmain&utm_medium=display&utm_content=vacation&utm_campaign=4xbanner |
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
- https://wpmag.ru/2013/edit-css-wordpress/ | |
- https://wpmag.ru/2013/dochernie-temy-wordpress/ | |
- http://codex.wordpress.org/%D0%98%D0%B5%D1%80%D0%B0%D1%80%D1%85%D0%B8%D1%8F_%D1%88%D0%B0%D0%B1%D0%BB%D0%BE%D0%BD%D0%BE%D0%B2 - иерархия шаблонов | |
- http://codex.wordpress.org/%D0%A1%D0%BE%D0%B7%D0%B4%D0%B0%D0%BD%D0%B8%D0%B5_%D1%82%D0%B5%D0%BC - создание тем | |
- http://codex.wordpress.org/%D0%9E%D1%81%D0%BD%D0%BE%D0%B2%D1%8B_%D1%88%D0%B0%D0%B1%D0%BB%D0%BE%D0%BD%D0%BE%D0%B2 - основы шаблонов | |
- http://pro-wordpress.ru/nastrojka-wordpress/mobilnaya-versiya-bloga-na-wordpress.php |
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
- https://koombea.com/blog/the-difference-between-product-and-project-management/ | |
- https://www.brainmates.com.au/brainrants/project-manager-vs-product-manager |
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
- http://techslides.com/50-javascript-charting-and-graphics-libraries | |
- http://visjs.org | |
- http://js.cytoscape.org | |
https://www.google.com.ua/search?client=opera&q=javascript+library+drawing+graphs&sourceid=opera&ie=UTF-8&oe=UTF-8#q=javascript+library+drawing+graphs&start=10 | |
- |
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
QUICK SHORTCODES: | |
Ctrl+T find all files with similar typing file's name in all project | |
Ctrl+\ hide or open tree view | |
Ctrl+Shift+F find something in all project | |
Ctrl+/ comment single line or comment selected piece of code | |
Ctrl+cursor get multi select (coursor) | |
Ctrl+W close all pannels in editor | |
Ctrl+Shift+P - command line |
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
addEventListener("event", handler, capture) - where | |
"event" - name of event, | |
handler - function(e){} - function which handle event | |
e - object of event, | |
capture - (true, false) | |
capture=true - event executes on the first phaze (на этапе перехвата) | |
capture=false - event executes on the third phaze (на этапе всплытия) | |
removeEventListener("event", handler, capture) |
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
<form name='myform' id="formID"> | |
Name <input type="text" name='nameInput' value='enter your name' class="foo"> | |
Email <input type="text" name="emailInput" value="enter your email"> | |
<input type="submit" name="submitBtn" value="Submit"> | |
<p></p> | |
</form> | |
--- get form element on page: by ID attribute, by value of form's attribute 'name' | |
document.getElementById("formID") |