Skip to content

Instantly share code, notes, and snippets.

View palerdot's full-sized avatar
💭
.

Arun Kumar palerdot

💭
.
View GitHub Profile
@palerdot
palerdot / Readme.md
Last active October 23, 2019 22:39
Moon Phase Visualizer

Moon Phase Visualizer

Moon phase visualizer is a simple demo to understand how Moon's phases (and eclipses) occur.

Moon Phase Visualizer Demo Link

Github Page

Moon Phase Visualizer is created using d3.js. There is a short introduction to d3.js using Moon Phase Visualizer.

@palerdot
palerdot / create_iso_from_cmdline.md
Last active August 29, 2015 14:03
Create iso image of dvd in linux from command line

If the dvd is mounted it is available via /dev/dvd

Run the following in terminal

sudo dd if=/dev/dvd of=/your/path/file_name.iso

Here, if denotes input file, of is output file. dd stands for device dump.