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...
Hello everybody,
today I want to write a few words about security tokens in OAuth2.
So, first of all I'd like to point that security tokens wasn't needed for corporate world. When I say corporate world, I mean networks like B2B, or B2E or something, that has strong system administration arm...
Hello everybody,
today I want to write few words about how to avoid nested ifs if you program for cAlgo.
Recently I've got following request ( code is modified in order to protect privacy of customers idea ):
buy in following case:
price is above moving average 20
price is above moving aver...