Hello everybody,
today I want to write about hierarchical storage of information in databases.
As usually for storing hierarchy you'll have a choice: fast reading or fast writing. Fast reading as usually related with nested sets, and fast writing is related with adjacency. Also you can consider s...
Hello everybody,
few days ago I had chance of configuring Jenkins.
I will ommit purpose and value of CI, just want to mention one error message, which you can find if install MSBuild plugin for building .sln file.
If you point to MSBuild file, I mean msbuild.exe file, you'll see interesting...
Hello everybody,
Have you ever had a desire to become chief of secreat agent or spy? To be honest I never had such desire, but unwilignly I become chief of spies and secret agents which I created in javascript.
To put simply during unit testing of javascript sometime is needed to mock...
Hello everybody,
today I want to make some post about how to work with AngularJS select directive from viewpoint of complicated objects.
<select id="type"
class="form-control" name="type" aria-readonly="true"
&...
Hello everybody,
today just short glimpse about difference between programmer and software developer.
So, try to picture following scenario, you ask for program.
As result programmer will give you a code.
But Software developer will give you "some questions" ( and this list is not complete...
Hello everybody,
today I want to point to some useful features of ZenCoding in web essentials.
Quick reference of ZenCoding shortcuts:
# use it for creating id . use it for creating a class attribute [ ] use it for creating a custom attribute...
Hello everybody,
few notes about some details of AngularJS.
1. What is $scope?
$scope is something where we can store information which is needed for page. Also data for changes of which we need to track.
2. How can we react on some changes in $scope? In other words if something at page modified...
Hello everybody,
today another glimpse from the AngularJS world which I can name of how to get something from server.
So, imagine that you see following code in your controller:
var OrderController = function($scope, $http) {
$scope.order = $http.get("/orders/1563");
}
and no...
Hello everybody,
here is short notice of how to define properties in javascript:
So, lets say you want to have class Dog, with "private" field alias and public property Alias. you can achieve it in the following way:
function Dog(nameOfDog) {
var alias = nameOfDog;
&nb...