Loading ...

Some Elastic Search Featues

Hello everybody, For few days I've got assigned to work with Elastic search. As faithful to my principles before doing any activity I'd like to familiarize myself with instrument that I had to use. In ordre to use it more effectively. So, first of all I want to mention terminology. As a lot of de...

Different Types Of Views

Hello everybody, today I want to write few words about different kinds of Views in .Net core. So, if you decide somehow to create new view you can see something like this: and now question. What is the difference between MVC View Page, MVC View Layout Page, MVC View Start Page and MVC View Impor...

Concurent Collections Of C

Hello everybody, today I want to write few words about Concurent collections in C#. First of all  I want to point there there are only four of them: ConcurrentDictionary ConcurrentQueue ConcurrentStack ConcurrentBag BlockingCollection Partitioner EnumerablePartitionerOptions IProducerConsum...

Features Of System Reflection

Hello everybody, today I want to document few features of System.Reflection namespace. It has following important types: Type ( with methods GetType, GetMemberInfo, GetPropertyInfo, GetFieldInfo ), Activator ( with method CreateInstance ), Assembly ( Load, LoadFrom, GetTypes, GetName, GetFiles ),...

Ema In Jforex Full Code

Hello everybody, recently one of my readers asked me to show whole code of taking value of ema. Here it is: package jforex; import java.util.*; import com.dukascopy.api.*; public class CountSamples implements IStrategy { private IEngine engine; private IConsole console; private IHistory hi...