Skip to content

Instantly share code, notes, and snippets.

@lena121
lena121 / starting using sass
Last active January 27, 2016 15:30
Sass file structure and starting work with sass
- 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
- 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
@lena121
lena121 / gist:2e66c2176857004a6e36
Created July 5, 2015 19:16
links pro WordPress
- 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
- https://koombea.com/blog/the-difference-between-product-and-project-management/
- https://www.brainmates.com.au/brainrants/project-manager-vs-product-manager
@lena121
lena121 / gist:9d6d55ed875348ca816f
Created October 17, 2015 12:06
JS library drwaing graphes
- 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
-
@lena121
lena121 / TEXT EDITOR
Last active March 21, 2017 10:39
ATOM
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
@lena121
lena121 / JS events
Created October 27, 2016 13:44
JS events (DOM level2)
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)
@lena121
lena121 / JS forms
Last active October 29, 2016 15:12
<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")