Hello everybody,
today I started new course at pluralsight.com, which is entitled "Patterns for Building Distributed Systems for The Enterprise".
Andd I started watching CAP theorem. CAP theorem is actually abbreviation of four words:
Consistensy
Availabilty
Partition tollerance.
I do...
Hello everybody,
today I want to write short notice about another useful feature of AngularJS particularly about extend function.
So, according to comment in angular.js file function extend does the following:
/**
* Extends the destination object `dst` by...
Hello everybody,
today I want to share with you some notes about Data Science.
In Data Science everything starts from giving questions, or as to say to giving right questions. Here it goes list of question which data scientists ask in order of rising complexity:
Descriptive
Exploratory...
Hello everybody,
today I want to write few words about topic why mathematician believe that neural networks can be taught of something. Recently I've read book Fundamentasl of Artifical Neural Networks of Mohamad Hassoun and want to share some thoughts in more digestible manner with omitting some...
Hello everybody,
who follows my blog.
Today I want to share with you hierarchical tree view example which displays data as name implies in hierarchical way. There are plenty of tools that display data in hierarchical way with help of AngularJS, but not so many which has implemented lazy loading....
Hello everybody,
today I want to share with you some ideas about activation functions in neural networks.
But before I'll do this let's see simplified edition of neuron:
As usually many books describe following schema of working neuron:
ignals go into dendrites into neuron body. Neu...
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"
&...