Hello everybody,
today I want to describe some useful from my prospective commands for working with Nuget.
First of all, I want to say that you can work with Nuget as usually with usage of wizard, but if wizard fails for some unknown reason, console can give you interesting facts, that otherwise...
Hello everybody,
today I want to write few rakes of Dockerfile.
First of all I want to document how to install dot net sdk 1.1. It isn't installable by chocolatey, so I had to use following workaround:
RUN Invoke-WebRequest 'https://download.microsoft.com/download/1/1/4/114223DE-0AD6-4B8A-A8FB-16...
Hello everybody,
today I want to write a few words about Dockerfile.
So, as usually for developer it will not be enough just ordinary docker images. Quite often they need to add some more features to docker images. One of the useful ways to organize it can be creating Dockerfile.
Dock...
Hello everybody,
recently I've spent plenty of time with the following task: Create Publisher/Subscriber application that via WCF send/receive messages from RabbitMQ. As foundation for my code I've used code from Dieg web site, just modified binding.
Bindings were modified in App.config file...
Hello everybody,
today I want to document few features of MSMQ.
First of all I want to say that MSMQ is ancient technology. It started it's life from Windows 95 as windows service. So for time of writing of this blog post it already had 22 years!
General principle of working of MSMQ is save...
Hello everybody,
today I want to document one gotcha related to difference between Html.TextAreaFor and Html.EditorFor.
Recently I've had a requirement to add hint text to text fields. In Html world there are two ways to create input field which accepts text: <input type="text" />...
Hello everybody,
today I want to write a few words about how to work with Docker with help of C#.
Recently I've got a challenge to find the way how to manage Docker. Initially I've tried Docker.Dotnet library. It has quite interesting options for management of docker, but from my own prospec...
Hello everybody,
today I want to write a few words on how to add links to some entites in Acumatica.
So, recently I've had an assignment to add redirect into existing grid, so intead of showing some text show nice link which will lead to Purchase order.
Here is what I've done in order to achieve...
Hello everybody,
today I want to note just short usage of openssl command:
openssl req -nodes -days 10 -newkey rsa:2048 -keyout keyfile.pem -out certfile.pem
this command will generate two files: keyfile.pem and certfile.pem.
Just as the openssl command simplifies the creation of key an...
Hello everybody,
today I want to document how to permanently open port in CentOS linux permanently. You can achieve it with following command:
firewall-cmd --zone=public --add-port=22/tcp --permanent
or with usage of iptables:
iptables -I INPUT -p tcp -m tcp --dport 80 -j ACCEPT
Key --permanent e...