Skip to content

Instantly share code, notes, and snippets.

View shaliniJK's full-sized avatar

Shalini Jayjaywantee Koodun shaliniJK

View GitHub Profile
@shaliniJK
shaliniJK / introrx.md
Created February 9, 2018 22:03 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@shaliniJK
shaliniJK / memory.h
Created February 8, 2017 12:41 — forked from jvanz/memory.h
my own malloc/free implementation
#ifndef _MEMORY_HEADER
#define _MEMORY_HEADER
/**
* Allocates a block of memory with bytes of length
* @returns a pointer to the allocated block of memory. Return NULL in error
*/
void* memory_alloc(size_t bytes);
/**
@shaliniJK
shaliniJK / .vimrc
Created January 21, 2017 18:02 — forked from JeffreyWay/.vimrc
Laracasts: Vim Mastery - Episode 3 .vimrc progress
syntax enable
colorscheme desert
"-------------General Settings--------------"
set backspace=indent,eol,start "Make backspace behave like every other editor.
let mapleader = ',' "The default leader is \, but a comma is much better.
set number "Let's activate line numbers.

Learn you a Haskell - In a nutshell

This is a summary of the "Learn You A Haskell" online book under http://learnyouahaskell.com/chapters.


1. Introduction

  • Haskell is a functional programming language.