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...
Hello everybody,
today I want to write few words about binding in XAML.
So there are four ways of binding in XAML.
One way
Two way
One way to source
One time
If to speak about them more, then here it goes additional definitions:
OneWay : source property updates target property
TwoWay: s...
Hello everybody,
today I want to write few words about basic elements in XAML.
DependencyObject
This class is next in inheritance level in XAML after object. DependencyObject gives needed properties for representing something that participates in dependency property system. Mostly nee...
Hello everybody,
today I want to make short note about types of Data Binding in AngularJS 2.
here they are:
Interpolation. It looks like this in code: {{firstName}}
Property binding. Sample in code: <img [src]='person.photo'>
Event binding. Html code pattern: <button (click)='show...
Introduction
Here I want to write of how I grasped what is Angular 2 component building blocks
Hello everybody,
I don't know about you, but when I first opened AngularJS 2 component source code, I've become puzzled with question mark of what is AngularJS 2 component?
Imagine, that you look...
Hello everybody,
sometime people ask me how to send email from C# windows forms application or even ask is it possible at all to accomplish in C#?
I can reassure you that yes, it's possible.
For this purpose you can use following code sample:
private void btnSendMessage_Click(object sender...