Since we working with Go, it’s good time to play a bit with Fibonacci numbers. First of all it’s great in case of learning a new programming language and second, we will try to analyze a bit recurrent function and write it’s short iterative implementation. As a bonus we will write function that return function that return int . But let’s starts from a theory. The definition...
Since we working with Go, it’s good time to play a bit with Fibonacci numbers. First of all it’s great in case of learning a new programming language and second, we will try to analyze a bit recurrent function and write it’s short iterative implementation. As a bonus we will write function that return function that return int But let’s starts from a theory. The definition of...
In this post i will introduce some basic (real basic) web development in go. We will start to implement TODO list and at the end of this topic it would’t be perfect but it will compile and show us proper results. May be in following topics we will continue to develop and expend this project. Sources will be available at the bottom of...
Most of the day we spend answering and sending emails. Therefore, correctly configured email box can increase your productivity and free up the time for other aspects of the work. There are couple options to make our work with Gmail with maximum convenience: Undo send. It gives us ability to cancel almost send email in specified cancellation period of time, which in some cases might be useful....
A large part of my nature is to constantly move forward in spite of everything: of failure, ups and downs, joy or sorrow. I constantly learning from anything i experience. I look at it the same way as the natural process of breathing or a natural smile on face of a standing smiling man. Since the constant movement always creates friction, I always...
I think I falling in love for the first time after years of software development. I believe it should happen at least once to each software engineer, who truly loves what he does. It wasn't love from the first sight. I felt something strange, something completely different from knowledge i gain till this point. But sometimes people prefer their warm and very familiar...
Sometime we need to update UI from a task. In order to update UI we should run or return result in UI thread. But it seems to impossible since all tasks run on threads provided by ThreadPool. But still, we can achieve updating UI from the task by using synchronization context Task Scheduler. First we will see an approach and then we will...
We all worked with ContinueWith() method but there are some interesting and useful facts we should be aware of. First of all lets remember what is Continuation regarding the Tasks. When we looking for this definition in MSDN , we see following: Creates a continuation that executes asynchronously when the target Task completes. Lets see an example: Task task1 = Task.Factory.StartNew(() => Console.Write ("creating...
Developers can define parent-child relationships between task. The main idea is, parent task is completed when all its children tasks are completed. Example1: private static void childrenTasksExample() { var parent = Task.Factory.StartNew(() => { Console.WriteLine("Parent...