Skip to content

Instantly share code, notes, and snippets.

View raghukul01's full-sized avatar
:octocat:
Learning

Raghukul Raman raghukul01

:octocat:
Learning
View GitHub Profile
@rejuvyesh
rejuvyesh / config
Created April 26, 2014 13:02
ssh config
# For turing and other cse servers
Host vyom
HostName vyom.cc.iitk.ac.in
User jayeshkg
IdentityFile ~/.ssh/cse
Host turing
HostName turing.cse.iitk.ac.in
User jayeshkg
IdentityFile ~/.ssh/cse
@ndarville
ndarville / README.md
Last active April 7, 2024 04:01
From CSV to HTML table (Simple)

This code generates an HTML table based from a CSV file. This is from the tutorial by Christophe Viau.

In trying his code example, I discovered that the code doesn't work as-is, so I figured others might like to see a working d3.js example that did not rely on a pre-existing container HTML element.

The code remains the same except for some cosmetic tweaks.

The task of writing the CSS is left as an exercise for the reader.