Author name: Damian

Briefly on OpenAPI

OpenAPI is a specification for documenting your HTTP based API. Example It describes how both a request and a response should look like. Usually YAML format is used, but there is also support for other formats (for example JSON). How it relates to Swagger? OpenAPI specification was originally developed within Swagger (as Swagger specification) and …

Briefly on OpenAPI Czytaj dalej »

Ambient Intelligence

In essence, ambient intelligence aims to create smart environments where technology is:– embedded – is somewhere next to a person– context-aware – it knows if we are in a hospital/construction area or other place– personalized – it’s per person, not per role– anticipatory – tries to predict user needs and act proactively to address them …

Ambient Intelligence Czytaj dalej »

RBAC – Role-Based Access Control

The idea behind RBAC is to manage the access to resources by utilizing roles – so you don’t assign a permission to a resource for a single person, but rather create a role and assign the permission to the role. Then you assign people to the role. Worth a look 1. https://en.wikipedia.org/wiki/Role-based_access_control

Cookies

Cookies are just HTTP headers. However, special kind of headers which are used to keep information longer on a client side and then send it back to server. The basic flow is that a client asks for a resource, then a server responds with setCookie header and then the client stores given information and use …

Cookies Czytaj dalej »