├── Indmind-Calc ├── vendor │ └── .gitkeep ├── app │ ├── helpers │ │ └── .gitkeep │ ├── models │ │ └── .gitkeep │ ├── routes │ │ └── .gitkeep │ ├── components │ │ ├── .gitkeep │ │ └── calc-ulator.js │ ├── controllers │ │ └── .gitkeep │ ├── templates │ │ ├── components │ │ │ ├── .gitkeep │ │ │ └── calc-ulator.hbs │ │ └── application.hbs │ ├── resolver.js │ ├── router.js │ ├── app.js │ ├── index.html │ └── styles │ │ └── app.css ├── tests │ ├── unit │ │ └── .gitkeep │ ├── integration │ │ ├── .gitkeep │ │ └── components │ │ │ └── calc-ulator-test.js │ ├── .eslintrc.js │ ├── helpers │ │ ├── destroy-app.js │ │ ├── start-app.js │ │ └── module-for-acceptance.js │ ├── test-helper.js │ └── index.html ├── public │ ├── robots.txt │ └── crossdomain.xml ├── Screenshot from 2017-12-09 22-42-06.png ├── config │ ├── targets.js │ └── environment.js ├── .eslintrc.js ├── .gitignore ├── testem.js ├── ember-cli-build.js ├── package.json └── README.md ├── 2coolife ├── calculator │ ├── vendor │ │ └── .gitkeep │ ├── app │ │ ├── components │ │ │ ├── .gitkeep │ │ │ ├── main-buttons.js │ │ │ └── main-screen.js │ │ ├── helpers │ │ │ └── .gitkeep │ │ ├── models │ │ │ └── .gitkeep │ │ ├── routes │ │ │ └── .gitkeep │ │ ├── controllers │ │ │ └── .gitkeep │ │ ├── templates │ │ │ ├── components │ │ │ │ ├── .gitkeep │ │ │ │ ├── main-screen.hbs │ │ │ │ └── main-buttons.hbs │ │ │ └── application.hbs │ │ ├── resolver.js │ │ ├── router.js │ │ ├── app.js │ │ ├── index.html │ │ └── styles │ │ │ └── app.css │ ├── tests │ │ ├── unit │ │ │ └── .gitkeep │ │ ├── integration │ │ │ ├── .gitkeep │ │ │ └── components │ │ │ │ ├── main-screen-test.js │ │ │ │ └── main-buttons-test.js │ │ ├── .eslintrc.js │ │ ├── helpers │ │ │ ├── destroy-app.js │ │ │ ├── resolver.js │ │ │ ├── start-app.js │ │ │ └── module-for-acceptance.js │ │ ├── test-helper.js │ │ └── index.html │ ├── public │ │ ├── robots.txt │ │ └── crossdomain.xml │ ├── config │ │ ├── targets.js │ │ └── environment.js │ ├── testem.js │ ├── ember-cli-build.js │ ├── package.json │ └── README.md └── README.md ├── niteshkumarniranjan └── embercalculator │ ├── vendor │ └── .gitkeep │ ├── app │ ├── helpers │ │ └── .gitkeep │ ├── models │ │ └── .gitkeep │ ├── routes │ │ └── .gitkeep │ ├── components │ │ ├── .gitkeep │ │ └── calc-main.js │ ├── controllers │ │ └── .gitkeep │ ├── templates │ │ ├── components │ │ │ ├── .gitkeep │ │ │ └── calc-main.hbs │ │ └── application.hbs │ ├── resolver.js │ ├── router.js │ ├── app.js │ ├── index.html │ └── styles │ │ └── app.css │ ├── tests │ ├── unit │ │ ├── .gitkeep │ │ └── routes │ │ │ └── calculator-test.js │ ├── integration │ │ ├── .gitkeep │ │ └── components │ │ │ └── calc-main-test.js │ ├── .eslintrc.js │ ├── helpers │ │ ├── destroy-app.js │ │ ├── resolver.js │ │ ├── start-app.js │ │ └── module-for-acceptance.js │ ├── test-helper.js │ └── index.html │ ├── .watchmanconfig │ ├── public │ ├── robots.txt │ └── crossdomain.xml │ ├── Screenshot.png │ ├── config │ ├── targets.js │ └── environment.js │ ├── .eslintrc.js │ ├── .ember-cli │ ├── .travis.yml │ ├── .gitignore │ ├── .editorconfig │ ├── testem.js │ ├── ember-cli-build.js │ ├── package.json │ └── README.md ├── README.md ├── dumbtroll ├── README.md ├── index.html └── js │ └── libs │ └── handlebars-1.1.2.js └── LICENSE /Indmind-Calc/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Indmind-Calc/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Indmind-Calc/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Indmind-Calc/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Indmind-Calc/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2coolife/calculator/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Indmind-Calc/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Indmind-Calc/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2coolife/calculator/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2coolife/calculator/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2coolife/calculator/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2coolife/calculator/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2coolife/calculator/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Indmind-Calc/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2coolife/calculator/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2coolife/calculator/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Indmind-Calc/app/templates/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2coolife/calculator/app/templates/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /niteshkumarniranjan/embercalculator/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Indmind-Calc/app/templates/application.hbs: -------------------------------------------------------------------------------- 1 | {{calc-ulator}} -------------------------------------------------------------------------------- /niteshkumarniranjan/embercalculator/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /niteshkumarniranjan/embercalculator/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /niteshkumarniranjan/embercalculator/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /niteshkumarniranjan/embercalculator/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /niteshkumarniranjan/embercalculator/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /niteshkumarniranjan/embercalculator/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /niteshkumarniranjan/embercalculator/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2coolife/README.md: -------------------------------------------------------------------------------- 1 | # Calculator 2 | A calculator made using Ember.js 3 | -------------------------------------------------------------------------------- /niteshkumarniranjan/embercalculator/app/templates/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Indmind-Calc/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /2coolife/calculator/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /niteshkumarniranjan/embercalculator/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /Indmind-Calc/app/resolver.js: -------------------------------------------------------------------------------- 1 | import Resolver from 'ember-resolver'; 2 | 3 | export default Resolver; 4 | -------------------------------------------------------------------------------- /Indmind-Calc/tests/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | env: { 3 | embertest: true 4 | } 5 | }; 6 | -------------------------------------------------------------------------------- /2coolife/calculator/app/resolver.js: -------------------------------------------------------------------------------- 1 | import Resolver from 'ember-resolver'; 2 | 3 | export default Resolver; 4 | -------------------------------------------------------------------------------- /2coolife/calculator/tests/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | env: { 3 | embertest: true 4 | } 5 | }; 6 | -------------------------------------------------------------------------------- /niteshkumarniranjan/embercalculator/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /niteshkumarniranjan/embercalculator/app/resolver.js: -------------------------------------------------------------------------------- 1 | import Resolver from 'ember-resolver'; 2 | 3 | export default Resolver; 4 | -------------------------------------------------------------------------------- /niteshkumarniranjan/embercalculator/tests/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | env: { 3 | embertest: true 4 | } 5 | }; 6 | -------------------------------------------------------------------------------- /niteshkumarniranjan/embercalculator/app/templates/application.hbs: -------------------------------------------------------------------------------- 1 |