Loading ...

Mesos Terminology

Hello everybody, today I want to share few words of my knowledge related to mesos and mesosphere. Recently I've subscribed myself for making investigation for mesosphere. And quite often I was asked by my project manager what is difference between mesos and mesosphere. For now I've found that mai...

Http Status Codes

Hello everybody, today I want to write a few words about http status codes which some kind are common among developers for web api clients. So, For POST request following are common to return: 201 ( item was created ), 400 ( bad request ), 500 ( internal server error ) For GET: 200 ( ok ), 404 (...

Some Notes On Usage Of Docker

Hello everybody, today I want to write a few words about usage of docker for windows. First of all, I want to point what is docker at all. There are many ideas of how to explain it, but in my opinion docker is like installed and configured piece of software with needed fragment of operating syste...

Angular 2 Property Binding

Hello everybody, today I want to write few words about binding in AngularJS 2. There are two ways of making one way binding: element property binded to template expression property interpolation I've described it with following picture: Two-way Binding <input [(ngModel)]='property'> And...

Ionic2 Running Apps

Hello everybody, today I want to document few usefull commands which are usefull in ionic 2. Add platform: If you need your app to be able to execute on some platform you can use following command: ionic platform add xxx Where xxx stands for name of platform. It can have following values: windows...

What Is Service In Angularjs 2

Hello everybody, today I want to write few words about AngularJS 2 services, or if to be more specific what is Service in angular at all? If to speak very very shortly: Service - it's a class with focused purpose independent from any particular component. It can be caching purpose, or logging pur...