- [Конфигурация compass](https://gist.github.com/DmitriyRF/f62d3028d7c2e1d883329a73f10e1422)
- Конфигурационный файл для компилятора SCSS COMPASS
- [Файл media.css](https://gist.github.com/DmitriyRF/7731c2cbe85d1034b67025b224f41b58)
- Css файл для медиа запросов для разных разрешений экранов
- [Файл .gitignore](https://gist.github.com/DmitriyRF/a47664ef332cbf6470923fb449ef827a)
Файл для игнорирования Git определенных фалов и не клонировании их на сервер GitHub
Basic idea of stream in software engineering implies existence of a data source and some destination entity to which the stream should output processed data. Simple bash example below should demonstrate how to get a list of all files with .js extension in a current working directory:
ls -la | grep ".js$"