Loading ...

Stop And Clean All Docker Containers In Ubuntu

Hi, just small note on topic how to remove and delete all docker containers in ubuntu: sudo docker stop $(sudo docker ps -a -q) sudo docker rm $(sudo docker ps -a -q) Got a customization idea? Let’s make it happen! Leave a request below, and let’s transform your Acumatica system into a power...

How To Enable Ports For Docker Swarm In Ubuntu

Hello everybody, today I want to document how to enable ports for dokcer swarm in ubuntu:   sudo ufw enablesudo ufw allow 2377/tcpsudo ufw allow 7946/tcpsudo ufw allow 7946/udpsudo ufw allow 4789/tcpsudo ufw verbose Just as configuring the right ports is essential for a seamless Docker Swarm...

Install Shipyard With Curl

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. Ready to...

How To Start With Acumatica Development

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...

Three Grids In Acumatica

 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...

Enable Disable Features Disappeared From Acumatica

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...

Pxfilter Set Up Fields Only Once

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...

Create New Column If It Doesn T Exist

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...

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 (...