├── .gitignore ├── README.md ├── android └── README.md ├── design ├── README.md └── ux_ui_test_task.pdf ├── front-end ├── README.md ├── front-end-tt.fig └── front-end-tt.sketch ├── ios └── README.md ├── nodejs └── README.md ├── project-manager └── README.md ├── qa ├── README.md └── SimpleRSS.apk ├── ruby-intern └── README.md ├── ruby └── README.md └── unity ├── README.md ├── Screenshot.jpg └── project.zip /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fs/test-tasks/HEAD/README.md -------------------------------------------------------------------------------- /android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fs/test-tasks/HEAD/android/README.md -------------------------------------------------------------------------------- /design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fs/test-tasks/HEAD/design/README.md -------------------------------------------------------------------------------- /design/ux_ui_test_task.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fs/test-tasks/HEAD/design/ux_ui_test_task.pdf -------------------------------------------------------------------------------- /front-end/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fs/test-tasks/HEAD/front-end/README.md -------------------------------------------------------------------------------- /front-end/front-end-tt.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fs/test-tasks/HEAD/front-end/front-end-tt.fig -------------------------------------------------------------------------------- /front-end/front-end-tt.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fs/test-tasks/HEAD/front-end/front-end-tt.sketch -------------------------------------------------------------------------------- /ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fs/test-tasks/HEAD/ios/README.md -------------------------------------------------------------------------------- /nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fs/test-tasks/HEAD/nodejs/README.md -------------------------------------------------------------------------------- /project-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fs/test-tasks/HEAD/project-manager/README.md -------------------------------------------------------------------------------- /qa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fs/test-tasks/HEAD/qa/README.md -------------------------------------------------------------------------------- /qa/SimpleRSS.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fs/test-tasks/HEAD/qa/SimpleRSS.apk -------------------------------------------------------------------------------- /ruby-intern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fs/test-tasks/HEAD/ruby-intern/README.md -------------------------------------------------------------------------------- /ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fs/test-tasks/HEAD/ruby/README.md -------------------------------------------------------------------------------- /unity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fs/test-tasks/HEAD/unity/README.md -------------------------------------------------------------------------------- /unity/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fs/test-tasks/HEAD/unity/Screenshot.jpg -------------------------------------------------------------------------------- /unity/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fs/test-tasks/HEAD/unity/project.zip --------------------------------------------------------------------------------