Latest Technology Blogs Updates And News

interested in seeing our take on code references, recent technology & product developments? take a look at our updates below & reach out to us with solutions you'd like to learn about!.

Software Development
Dawn Dawn

Calculating the Size of Objects in Photos with Computer Vision

Table of Contents Overview Setup Windows Linux OSX OpenCV Basics Getting Started Takeaways Overview You might have wondered how it is that your favorite social networking application can recognize you and your friends’ faces when you tag them in a photo. Maybe like Harry Potter, a mysterious letter arrived at your doorstep on your birthday; only this letter wasn’t an

Read More »

Exploring Baseball Data to Predict Run Totals

Table of Contents Overview Support Vector Machines (SVM) The Data Setup and Installation Exploring and Modeling the Data Takeaways Overview The object of this tutorial is to give you an idea of what a process might look like when a data scientist explores data with the intention of using machine learning to make predictions. Crafting a strategy to classify or

Read More »
Umbraco Uploads

Umbraco 8 – More Than Just Content

In the last installment, we learned about the basics of Umbraco and what is new in Umbraco 8. Now we are going to delve into coding basic functionality and making our code as modular as possible. Before we delve into the code, let’s talk a little about the different types of controllers available to us and which one is appropriate

Read More »
Umbraco Uploads

Umbraco 8 – Getting Started

Umbraco has changed a lot since I started working with it in version 4 back in 2013. In this series we are going to delve deep into Umbraco from the basics of creating your first site all the way to writing plugins and customizing the backend of this wonderful ASP.Net MVC based CMS Intended Audience What you need: Net MVC

Read More »

Tree Data Structure Simplified – Part 1

Whether we know it or not, trees are everywhere: our computer file systems, HTML DOM, XML/Markup parsers, PDF format, computer chess games, compilers, and others heavily rely on the tree data structure. More practical examples are company hierarchies, family trees, or comments section of any posts. Trees are found to be tricky when implementing in applications and during the coding

Read More »

Tree Data Structure Simplified – Part 2

Outline Binary search trees BST Implementation Binary Heaps Trie Binary Search Tree A binary search tree is a binary tree with a unique feature – all nodes to the left of the current node must be smaller than the current node and all nodes to the right must be larger. This rule must be valid for all of the nodes in the tree, not just for the root

Read More »

Hash Tables Simplified

Hash table is a data structure designed for quick look ups and insertions. On average, its complexity is O(1) or constant time. The main component of a hash table is its hash function. The better the hash function, the more accurate and faster the hash table is. High level process of implementing a hash table is as follows: data is

Read More »

Strapi.js – A new way to build Node.js APIs

Strapi.js is the most advanced Node.js Framework and Headless CMS out there. Even though it is not as popular as Express.js, it has the power to save weeks of development time for teams working on Node.js applications. With built-in admin panel and Koa.js under the hood, strapi can help you build your next awesome product. Pre-requisites: Basic knowledge of JavaScript

Read More »

Practical guide to build Serverless applications with Netlify and React.js

Serverless technology is taking over the back-end development world. Some businesses are already dumping microservices infrastructure and switching to serverless. However, the learning curve for serverless is pretty steep and it comes with great complexity. Netlify is trying to solve that problem by providing create & drop functions. In this article, we learn about the main concepts of serverless technology

Read More »