Hello everybody,
today in order to preserve shortcut for shipyard installation I've decided to preserve it's shortcut in my blog.
curl -sSL https://shipyard-project.com/deploy | bash -s
this will install shipyard at your centOS machine. User name will be admin, password: shipyard.
Hello everybody,
this post is intended for those people who want to make development for Acumatica, but don't know where to start or how to start. Or for those, who know C#, but absolutely can't figure out how to work with Acumatica.
So, first of all, I'll describe some general ideas, and then pr...
Recently I've posted following question on stackoverflow:
I have following request from my customer to be implemented in Acumatica:
Create form which have input fields on top.
Form should have first grid, which reacts on parameters on top
Form should have second grid, which reacts o...
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...