Loading ...

Jforex Utilities Sample And Jfquantisan Jar

Greetings to everybody. Recently when I visited blog of Paul Lam, I've noticed JFUtil 2.0 alpha demonstration of usage of his library JForex-Utilities.   It is nice example, but very unformatted. It looks like this:   So I've made formatting corrections, and put his sample on my p...

Chocolatey Usage For Installing Programs

Hello everybody, today I want to document wonderfull tool. Chocolatey. It allows you to install quite big list of programs without need to search, download and setup them.  Before chocolatey will be able to execute anything at your pc, following command needs to be executed at your powershel...

How To Parse Google Search Results

Hello everybody, today I want to describe how to use C# for scrapping results.  For me it was surprising to see, that there is a stereotype that for scrapping the best tool or tools only to use are R, Python. And majority of people who needed functionality of parsing wanted that functionalit...

Asp Net Lifecycle

Hello everybody, today I want to write few words about ASP .Net lifecycle.  Actually just sequence of events.  Begin Request Resolve request cache Map request handler Acquire request state Request handler execute Update request cache Log request End request Here are the 8 main steps o...

How Closures Are Implemented By Net

Hello everybody, today I want to share piece of wisdom which is interesting, but hard to explain why somebody may need it. That is how closures are implemented.  Consider the following code: Snippet class Program     {         ...

Ways To Reduce Overfitting In Nn

Hello everybody, today I want to write short summary of how to reduce overfitting. Here it goes: Weight decay. Weight sharing Early stopping of training Model averaging Bayesian fitting of NN Dropout Generative pre-training Some explanations about some points. Weight decay stands for keeping w...

Types of fields in Dynamics CRM

Hello everybody, today I want to write a short note on types of fields in Dynamics CRM. So, below goes list of types: Single line of text Multiple line of text Option set Two options Whole numbers Floating point Decimal Currency Date and Time Lookup Names of them are pretty self-explanatory, bu...

Perceptron Learning Algorithm

Hello everybody, today I want to document perceptron learning algorithm for classifications Below goes following steps for teaching perceptron. Add one more column with value to 1 to each input row. Pick training cases according to some rules that gives you guarantee that every training case wil...