Posted on August 28, 2019, 1:59 pm, by admin, under
dictionary.
1. Sprint Refinement – when a team goes through the backlog, score points, etc. It focuses on a long term goals 2. Scrum Planning – when a team go through the backlog and discuss tickets to be added to oncoming Sprint, assign to developer. It focuses on a short term, goals within next Sprint. 3. […]
Associative arrays in PHP = Javascript Objects written as name value pairs = Hash maps in Java
Posted on March 4, 2019, 5:29 pm, by admin, under
dictionary.
Code isolation, or encapsulation (like a capsule), is when methods wrapped into a class to make one solid piece of logic, it became like a capsule. Also, then one piece of code knows little or nothing about another
Когда человек при регистрации на веб-сайте дает согласие на обработку персональных данных то обработка будет осуществляться согласно Privacy Policy т.е. “Политике Конфиденциальности” сайта. Privacy Policy – это внутренний документ, который устанавливает правила сбора и обработки персональных данных пользователей на определенном веб-ресурсе. Пользователь должен ознакомиться с Privacy Policy во время первого визита на сайт либо при […]
Posted on January 23, 2018, 4:27 pm, by admin, under
dictionary,
php.
Abstract class – is something between a regular class and a pure interface. The purpose of this is to provide a kind of template to inherit from and to force the inheriting class to implement the abstract methods. Interface – is a special case of abstract classes where ALL methods are abstract.
Posted on January 27, 2017, 4:07 pm, by admin, under
dictionary,
php.
Stateless – when the application doesn’t save anything to the disk or to the RAM that is required to process future workloads. The benefit of stateless application is that it is possible to run multiple instances of an application in order to distribute workload and increase availability.