Source data Crinacle (folder ears-711_harman_over-ear_2018): link Preamp: -6.3 dB Filter 1: ON PK Fc 24 Hz Gain 6.2 dB Q 0.44 Filter 2: ON PK Fc 163 Hz Gain -2.4 dB Q 1.00 Filter 3: ON PK Fc 3852 Hz…
NET Framework 6 adds the long-awaited Priority Queue to the list of collections. An example of usage of Priority Queues is getting the k-highest value in an array without sorting the array: the algorithm is keeps k values in the…
SortedSet uses a custom comparer for sorting items. The comparer serves two purposes: define a criterion for ordering items in the set (e.g. the Length property in the sample below), AND identify duplicate items, so that only one is present…
In this example, we will import video from a Yi security camera into YouTube. The same process, with eventual adjustment to the naming of directories in the SD card used by the camera to record videos, will also apply to…
Standing out of the pack starts by being visible, and being noticed by the right group of professionals. No matter how good your profile is, it is lost in a sea of similar profiles, so you need to show up…
There are many ways to extract data elements from web pages, almost all of them prettier and cooler than the method proposed here, but as we are in an hurry, let’s get that data quickly, ok? Suppose we have to…
One of the most common roadblocks when scraping the content of web sites is getting the full contents of the page, including JS-generated data elements (probably, the ones you are looking for). So, when using CEFSharp to scrape a site,…
Two good news: file I/O is unit-testable, and it is surprisingly easy to do. Let’s see how it works! A software no-one asked for First, we need a piece of software that deals with files and that has to be…
If you encounter the following error when pulling a repository in SourceTree: VirtualAlloc pointer is null, Win32 error 487 it is due to to the Cygwin system failing to allocate a 5 MB large chunk of memory for its heap…