Skip to content

Instantly share code, notes, and snippets.

View Shibabrat's full-sized avatar

Naik, Shibabrat Shibabrat

View GitHub Profile
@Shibabrat
Shibabrat / ssh-add.md
Created April 25, 2018 15:52 — forked from egoens/ssh-add.md
Use this if ssh key keeps asking for password
@Shibabrat
Shibabrat / randgsl.c
Created August 8, 2017 15:46 — forked from PhDP/randgsl.c
Random numbers with gsl
//: clang -DHAVE_INLINE -O3 randgsl.c -o randgsl -lgsl -lgslcblas
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include <gsl/gsl_rng.h>
#include <gsl/gsl_randist.h>
int main(int argc, const char *argv[])