Unit test is the first point of verification where we test the functionality of the code developed daily. It is pertinent for the success of the solution to be tested properly at the basic functional level before it is tested for logical correctness. What is a Unit test? And why are they important? Let’s assume, […]
Typescript: The story of Inheritance
Inheritance is the concept of adding new implementation to the same structure. Basically, when the object/class is based on another object/class in the uses either same implementation/modified implementation of the same structure. There are two major classes of Inheritance: Base Class serves as the Base/Parent to the all the classes which are inheriting its properties and behavior. Derived Class inherits […]
Simple FTP File Transfer using UDP

We are all aware of how we send and receive files over email. But do we know the process behind the simple send and receiving of a file? Well, this post is kind of touching upon on the same topic. This is my learning and experiment in implementing UDP for transferring files i.e. a simple FTP […]
Networking 101: Creating Simple Chat Application over Python
In my view, one of the easiest way to learn anything new is to develop a simple project around that technology or language. Poof! After a small project, you are kickstarted with the technology. Well, that’s what I tried while started learning Socket Programming as part of Internet Protocols class during my Master’s. I am […]
Data Science for Rookies: Which language/tool to chose?

Well, the title is quite evident what would be there in the post! Let me clear the air a bit, as time flies everything in Tech industry is becoming more dependent on data. And as the data grows, there is need to manage it. Well, we have Oracle, SQL Server then why the transition to […]
Experiment the Ape Way: Plex Server on Raspberry Pi

In my latest post on Pi, I have covered about the setting up of Raspberry Pi with the basic settings for us to get it start with. I am a Movies and TV series lover! Any new episode, any new movie which I don’t have I either download them or stream them. But it is […]
Experimenting the Ape way: Setting up Raspberry Pi 2

Well, I have been working on different microcontrollers like 8051, Arduino Uno etc since quite a time. Recently, I got my hands on Raspberry Pi a SoC(System on Chip) which seems to be quite cool for people interested in DIY stuff. So, I decided to do some digging into the whole system before doing a […]
Google I/O 2016: What to be expected?

Google is again ready with new announcements for this year with it’s awaited event of the year: Google I/O Conference. Every year Google introduces new research in it’s various projects like Android, Chrome, TV, VR, and many more exciting experiments every year. Since the beginning of 2016, fancy announcements have been there by giants like Facebook and […]
Kinect basics on WPF: Part 1

Kinect is quite a fascinating device which have utilities in many fields. Like a person can play a game like FIFA using just his body motion or a medical situation can be measured using a Kinect. Though since quite a time, the device is there in the market but still there are a few applications […]
Navigation in universal windows app
In this post, we will learn about using navigation in Universal Windows Applications. As for a developer, they require navigation between pages in their application. So, we will create an Universal Windows App in Visual studio and add another page in the solution explorer following steps below: Go to Solution Explorer –> Right click on […]