Skip to content

Instantly share code, notes, and snippets.

View hhimanshu's full-sized avatar
🚀
Building meaningful products

Harit Himanshu hhimanshu

🚀
Building meaningful products
View GitHub Profile
@hhimanshu
hhimanshu / Chapter01.json
Created August 25, 2015 23:13
ElasticSearch: The definitive guide
GET _search
{
"query": {
"match_all": {}
}
}
PUT /megacorp/employee/1
{
"first_name": "John",
@hhimanshu
hhimanshu / codereview.md
Created May 31, 2014 21:21
Code Review Guideline

Code Review Guidelines

In spirit of keeping our home (read codebase) clean and organized, we must have same protocol to talk.

Every pull request opened on the project needs to be scruitinzed on mutiple aspects. For example,

  • How code is designed
  • How code is formatted.
  • How code structure is created
@hhimanshu
hhimanshu / Hello.java
Last active August 29, 2015 14:04
Hello Tumblr!
System.out.println("Hello World!");
@hhimanshu
hhimanshu / Calculator.scala
Created October 22, 2014 20:55
Scala Calculator
import scala.collection.mutable
object Calculator {
def main(args: Array[String]): Unit =
if (args.length != 1) {
throw new IllegalArgumentException("usage: Calculator <expression>")
} else {
val expression = args(0)
val tokens = expression.split(" ")
@hhimanshu
hhimanshu / process.erl
Created December 17, 2014 21:19
Create 2 process and send M messages back and forth between them
% http://www.erlang.org/course/exercises.html#conc
-module(process).
-export([loop/0]).
loop() ->
receive
{From, Message} -> io:format("received [~p] from [~p]~n", [Message, From]),
loop()
end.
### Keybase proof
I hereby claim:
* I am hhimanshu on github.
* I am harit (https://keybase.io/harit) on keybase.
* I have a public key whose fingerprint is 04F0 0F7B 4775 E8EF 5B3B 2836 E703 AF72 5E8D EFF3
To claim this, I am signing this object:
@hhimanshu
hhimanshu / P01.scala
Last active August 29, 2015 14:22
P01 (*) Find the last element of a list.
package com.learner.s99
/*
(*) Find the last element of a list.
Example:
scala> last(List(1, 1, 2, 3, 5, 8))
res0: Int = 8
*/
object P01 {
@hhimanshu
hhimanshu / P02.scala
Created June 7, 2015 04:40
P02 (*) Find the last but one element of a list.
package com.learner.s99
/**
* (*) Find the last but one element of a list.
* Example:
* scala> penultimate(List(1, 1, 2, 3, 5, 8))
* res0: Int = 5
*/
object P02 {
def penultimate(input: List[Any]): Any = penultimate(input, None, None)
@hhimanshu
hhimanshu / P03.scala
Created June 7, 2015 05:18
P03 (*) Find the Kth element of a list.
package com.learner.s99
object P03 {
def nth(n: Int, l: List[Any]): Any = {
require(n >= 0, "n must be greater than or equal to zero")
l match {
case List() => None
case head :: tail if n == 0 => head
case head :: tail if n > 0 => nth(n - 1, tail)
}
@hhimanshu
hhimanshu / P04.scala
Created June 7, 2015 05:36
P04 (*) Find the number of elements of a list.
package com.learner.s99
/**
* (*) Find the number of elements of a list.
* Example:
* scala> length(List(1, 1, 2, 3, 5, 8))
* res0: Int = 6
*/
object P04 {