Algorithm for detecting which point is peak in a given list of points. Idea taken from Simple Algorithms for Peak Detection in Time-Series - Girish Keshav Palshikar).
Sample app generates some curve and detects peaks on it. Demonstration uses D3.js library. Detection can be calibrated with few parameters.
Using custom implementation of K-D Tree to check if new rectangle does not overlap any existing one.
Sample app generates random rectangle in given 2D space. For each new one checks if it overlaps any previously generated. if it overlpas its not drawn.
Tool to create images of web pages. Tool gets URL and creates image of the page on that URL.
For image capture PhantomJS is used.
Custom collection for data virtualization with support for UI virtualization also.
New batch (page) of elements is loaded asynchronously.
Implemented data structure Interval Tree for checking if intervals overlap.
Implemented in Javascript.
Explanation can be found here.
Two custom WPF panels. One panel animates elements added to it another animates elements on mouse over.
3D animation implemented in WPF. Control is rotated depending where mouse cursor is.
Example of binding ICommand to control events in XAML with behaviors.
Creates tree structure (Parent, Children) of nodes from flat unordered list.
Performance is O(n) with the power of references and at the expense of memory.
Busy indicator similar to the facebook's.
Function checks if the input date is a Slovenian day off holiday.
Most holidays are hard-coded, easter is calculated.
Based on Revealing the divine mathematics of a holiday.
WinForms custom scrollbar integrated with TableLayoutPanel. Custom scrollbar can be skinned as desired.
Idea taken from https://www.codeproject.com/Articles/14801/How-to-skin-scrollbars-for-Panels-in-C