├── LICENSE ├── README.md ├── devops └── README.md ├── js ├── README.md ├── click-counter │ ├── README.md │ ├── index.css │ ├── index.html │ ├── index.js │ └── layout.png ├── curry │ ├── README.md │ └── index.js └── object-deep-copy │ ├── README.md │ └── index.js └── python ├── README.md ├── content-tech-task.md └── employee.sql /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostrovok-tech/code-challenge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostrovok-tech/code-challenge/HEAD/README.md -------------------------------------------------------------------------------- /devops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostrovok-tech/code-challenge/HEAD/devops/README.md -------------------------------------------------------------------------------- /js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostrovok-tech/code-challenge/HEAD/js/README.md -------------------------------------------------------------------------------- /js/click-counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostrovok-tech/code-challenge/HEAD/js/click-counter/README.md -------------------------------------------------------------------------------- /js/click-counter/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostrovok-tech/code-challenge/HEAD/js/click-counter/index.css -------------------------------------------------------------------------------- /js/click-counter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostrovok-tech/code-challenge/HEAD/js/click-counter/index.html -------------------------------------------------------------------------------- /js/click-counter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostrovok-tech/code-challenge/HEAD/js/click-counter/index.js -------------------------------------------------------------------------------- /js/click-counter/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostrovok-tech/code-challenge/HEAD/js/click-counter/layout.png -------------------------------------------------------------------------------- /js/curry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostrovok-tech/code-challenge/HEAD/js/curry/README.md -------------------------------------------------------------------------------- /js/curry/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostrovok-tech/code-challenge/HEAD/js/curry/index.js -------------------------------------------------------------------------------- /js/object-deep-copy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostrovok-tech/code-challenge/HEAD/js/object-deep-copy/README.md -------------------------------------------------------------------------------- /js/object-deep-copy/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostrovok-tech/code-challenge/HEAD/python/README.md -------------------------------------------------------------------------------- /python/content-tech-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostrovok-tech/code-challenge/HEAD/python/content-tech-task.md -------------------------------------------------------------------------------- /python/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostrovok-tech/code-challenge/HEAD/python/employee.sql --------------------------------------------------------------------------------