Hello everybody,
today I want to write a few notes about difference between Acumatica instance created with "Acumatica Framework Configuration Wizard" and "Acumatica ERP Configuration Wizard". If to summarize there are plenty of differences, but one of the biggest is availabilty of "Enable/Disabl...
Hello everybody,
today I want to document in my blog interesting behavior of PXFilter in Acumatica.
First of all, few words about it's behavior. If Acumatica sees PXFilter, it will create single record, which will remain only in cache and never will travel to the db. Recently I faced intere...
Hello everybody,
today I just want to preserve simple sql which creates column, if it is not created yet in ms sql db. Important feature of this code is indempotency.
IF Col_length('APPayment', 'usrPOSkipped') IS NULL BEGIN PRIN...
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...
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 (...
Hello everybody,
today I want to write a few words about two types of containers in windows:
Windows server containers
Hyper-V containers
Windows server containers provide application isolation through process and namespace isolation. Windows server container shares a kernel with the container...
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...
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...
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...
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...