Skip to content

Instantly share code, notes, and snippets.

View rishabhjoshi's full-sized avatar

Rishabh Joshi rishabhjoshi

View GitHub Profile

Haskell

Haskell is a standardized, general-purpose purely functional programming language, with non-strict semantics and strong static typing. It is named after logician Haskell Curry.

Here I have explained basics of Haskell with complete examples. However, you might have doubts even after reading them because I have not included all details. For an exhaustive reference, read the official documentation.

Hello World

module Main where
main :: IO ()

Windows Phone App Development

####This page briefly descibes how to install the tools required to start developing applications on the Windows platform.

  1. Download/Buy a version of Visual Studio.

Use this link to download/buy Visual Studio. Download Visual Studio You should have Visual Studio Express 2013 for Windows with Update 2 or later for windows phone tools to work (I have Visual Studio 2013 Professional and that will be used to demonstrate further steps.)

@rishabhjoshi
rishabhjoshi / tmux_local_install.sh
Created December 21, 2018 10:50 — forked from ryin/tmux_local_install.sh
bash script for installing tmux without root access
#!/bin/bash
# Script for installing tmux on systems where you don't have root access.
# tmux will be installed in $HOME/local/bin.
# It's assumed that wget and a C/C++ compiler are installed.
# exit on error
set -e
TMUX_VERSION=1.8