Search
Caspian and CoinRoutes Collaborate to Offer Crypto Trading Algorithms
13.11.2019
As per the official announcement through a press release, Caspian and CoinRoutes have come together for providing the market with the latter’s advanced trading algorithms. The clients would now be able to use an advanced engine of compliance, detailed reporting, as well as Caspian’s PMS and OEMS...
HaasOnline – Create Crypto Algorithms Without Coding
23.9.2019
HaasOnline Software, the creators of advanced crypto trading products, has announced the release of a Visual Editor, which leverages their overhauled scripting language, HaasScript. Users can choose between the newly released drag-and-drop visual editor or use the updated text-based editor while...
CoinMarketCap’s first-ever acquisition: Hashtag Capital, for its “true price” algorithm
26.6.2019
Today, we are announcing our first-ever acquisition of a team, Hashtag Capital, which has developed a set of algorithms for “true price” involving liquidity. The team will be joining CoinMarketCap after the acquisition to further develop pricing algorithms and continually […]
The post...
CoinMarketCap’s first-ever acquisition: Hashtag Capital, for its “true price” algorithm
26.6.2019
Today, we are announcing our first-ever acquisition of a team, Hashtag Capital, which has developed a set of algorithms for “true price” involving liquidity. The team will be joining CoinMarketCap after the acquisition to further develop pricing algorithms and continually […]
The post...
An In-Depth Look at Iris, a New Decentralized Social Network
13.6.2019
Cryptocurrency advocates have been discussing a new social media platform designed by one of Bitcoin’s earliest developers Martti Malmi, otherwise known as Sirius. The project he designed, called Iris, is a social networking application that stores and indexes everything on the user’s...
The Ultimate Guide to JavaScript Algorithms: Range Sum
5.4.2019
Sometimes, while performing mathematical calculations, there comes the need to sum up a range of numbers. Some programming languages make this easy by implementing helper functions that enable one
The Ultimate Guide to JavaScript Algorithms: Integer Reversal
26.3.2019
Reversing an integer usually comes across as an easy thing to do for most developers. However, on closer evaluation, it gets a little tricky due to certain requirements and constraints involved. Th
The Ultimate Guide to JavaScript Algorithms: Implementing a Custom Filter
13.3.2019
In JavaScript, the .filter() function is often used to loop through an array and extract the elements that pass a certain condition specified in a callback function.
Ever wonder
CSS Algorithms
6.3.2019
I wouldn't say the term "CSS algorithm" has widespread usage yet, but I think Lara Schenck might be onto something. She defines it as:
a well-defined declaration or set of declarations that produces a specific styling output
So a CSS algorithm isn't really a component where there is some parent...
The Ultimate Guide to JavaScript Algorithms: Where Do I Belong
6.3.2019
It never feels good to be lost and unable to find your way home, or so out of place and unable to fit in. Don’t get confused, this isn’t some dark and twisted literature about some scared lady lost
The Ultimate Guide to JavaScript Algorithms: Falsy Bouncer
4.3.2019
Falsy bouncer? Just in case your mind's been pacing frantically trying to make sense of the title of this challenge, worry not! We’ll do that together.
A bouncer is a person em
The Ultimate Guide to JavaScript Algorithms: Pig Latin
26.2.2019
“Pig Latin is a constructed language game in which words in English are altered, usually by adding a fabricated suffix or by moving the initial consonant or consonant cluster of a
The Ultimate Guide to JavaScript Algorithms: Combining Arrays Without Duplicates
19.2.2019
Combining Arrays Without Duplicates
When developing software, we often need to combine data efficiently and without repetition. This often comes up when manipulating listed data with the use Arrays
The Ultimate Guide to JavaScript Algorithms: Array Chunking
19.2.2019
This article marks the beginning of our array manipulation algorithms. In this article, we explore different techniques to chunk (split) an array into smaller units.
Array chunking is a tech
The Ultimate Guide to JavaScript Algorithms: Anagrams
12.2.2019
Hooray! This article marks the last string manipulation challenge in this section of this course. We've come a long way!
The Ultimate Guide to JavaScript Algorithms: Search and Replace
8.2.2019
The "Search and Replace" functionality is very common within word processing applications used for creating notes, documents and things of that nature. In this challenge, we implem
The Ultimate Guide to JavaScript Algorithms: Finding the Longest Word In a Sentence
7.2.2019
Finding the longest word in a string of text is a very common algorithmic challenge in the JavaScript world. In this article we examine three ways to solve this challenge, with each method showcasi
The Ultimate Guide to JavaScript Algorithms: Hamming Distance
5.2.2019
In this challenge we will come up with an algorithm to calculate the edit distance between two strings of equal length, also known as Hamming Distance.
What is hamming dist
The Ultimate Guide to JavaScript Algorithms: Palindromes
4.2.2019
In this challenge we further strengthen our string manipulation skills by implementing simple algorithms to test if a string of text is a palindrome.
What is a palindrome?
The Ultimate Guide to JavaScript Algorithms: Sentence Capitalization
28.1.2019
Sentence Capitalization
Often times, situations arise in which we need to manipulate the letter casing of stings within our applications usually for presentational purposes. JavaScript off