Getting started with the raspberry pi
Buy all the hardware stuffs Raspberry pi Display Screen HDMI Cable Keyboard Micro SD card and Card reader UBB Hub and 2 Micro USB cables… Read More »Getting started with the raspberry pi
Buy all the hardware stuffs Raspberry pi Display Screen HDMI Cable Keyboard Micro SD card and Card reader UBB Hub and 2 Micro USB cables… Read More »Getting started with the raspberry pi
Here are my takeway points from the papers we love meetup on – Design and implementation of log-structured file system. Here is the link to the… Read More »Papers we love – Summary of Design and implementation of log-structured file system
Papers We Love (PWL) is a community built around reading, discussing and learning more about academic computer science papers. This repository serves as a directory… Read More »Whitepapers and research materials on all things computer science
Introduction So this is a part 2 of a series of posts I am planning to write to create a very basic distributed system in… Read More »Create a basic distributed system in Go lang – Part 2- http server & JSON request/response
The Fenwick tree is more popularly known as the Binary Indexed Tree which works solves the Range Sum Queries problems. The same can be achieved… Read More »Notes on Fenwick tree
Introduction Yesterday I started looking into basics of Go – A relatively young programming language and though of learning it via creating some useful case… Read More »Create a basic distributed system in Go lang – Part 1
Export Go path export GOPATH=/Users/ysharma/work/go/ Directory Structure . ├── bin │ ├── main │ └── test ├── pkg │ └── darwin_amd64 │ └── rect.a └──… Read More »Hello Go – Scratching the surface
The following blog is a simple insight into a very helpful and widely used framework for logging purpose. Bingo !!! You are right – Log4j… Read More »Log4j
Hi Friends !!! Recently I came across a requirement where in I was supposed to sort a Custom Class based on multiple parameters. Problem Statement… Read More »Dynamic Sorting Utility
Lot of time you need to connect to people personally but you do not actually know their emailid. GitHub is a social coding platform where… Read More »Get email id of user using GitHub userid
What is a Logical Plan? Apache Drill creates two intermediate plans for its execution – The Logical plan & the Physical plan. The incoming query… Read More »Understanding Apache Drill Logical Plan
The post talks about two exceptions I came across while trying to implement new Drill Functions. I would keep updating the list as i come… Read More »Few exceptions and solutions while implementing new drill functions