Skip to content

Instantly share code, notes, and snippets.

View palerdot's full-sized avatar
💭
.

Arun Kumar palerdot

💭
.
View GitHub Profile
@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.

@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 / Readme.md
Last active October 23, 2019 22:39
India Census 2011 Visualization

India Census - 2011

India Census 2011 is the latest comprehensive census of India taken at the time of this writing. The source for this census is census2011.co.in. Hover over the states to see the statistics in the popup and the two graphs on the right.

@palerdot
palerdot / Einstein.pdf
Last active August 29, 2015 14:21
Creating PDF thumbnails in JS with PDF JS
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@palerdot
palerdot / Readme.md
Last active August 29, 2015 14:24
Conway's Game of Life

Conway's Game of Life

This is a pure Javascript implementation of Conway's Game of life. Currently, this is an implementation of Blinker Pattern. In future, this implementation may be improved and new patterns might be added.

Comments and Feedback are welcome.

@palerdot
palerdot / 0-react-hello-world.md
Created May 6, 2016 06:21 — forked from danawoodman/0-react-hello-world.md
React Hello World Examples

React "Hello World" Examples

Below are a small collection of React examples to get anyone started using React. They progress from simpler to more complex/full featured.

They will hopefully get you over the initial learning curve of the hard parts of React (JSX, props vs. state, lifecycle events, etc).

Usage

You will want to create an index.html file and copy/paste the contents of 1-base.html and then create a scripts.js file and copy/paste the contents of one of the examples into it.

What I Wish I'd Known About Equity Before Joining A Unicorn

Disclaimer: This piece is written anonymously. The names of a few particular companies are mentioned, but as common examples only.

This is a short write-up on things that I wish I'd known and considered before joining a private company (aka startup, aka unicorn in some cases). I'm not trying to make the case that you should never join a private company, but the power imbalance between founder and employee is extreme, and that potential candidates would

@palerdot
palerdot / index.html
Created March 6, 2018 09:27
hackerrank name animation
<!doctype html>
<html>
<head>
<style class="cp-pen-styles">#featureAnimation,#featureBox{background-color:#fff;overflow:hidden;line-height:normal;font-size:80%;z-index:1000;}#featureAnimation{position:fixed;visibility:hidden;}#featureBox{position:absolute;}.star{position:absolute;background-color:#161616;display:none;z-index:1001;}.dot{position:absolute;background-color:#91e600;}.page-box{opacity:0;}</style>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/gsap/1.11.2/TweenMax.min.js'></script></head>
<body id="home" class="fixed-header">
<div id="featureBox"></div><div class="feature" id="featureAnimation"><div id="featureBackground" style="pointer-events:none;"></div></div>
<script type="text/javascript">
/* verge 1.9.1+201402130803 | https://github.com/ryanve/verge | * MIT License 2013 Ryan Van Etten | Script to fetch viewport dimensions */
@palerdot
palerdot / tutorial.md
Created July 18, 2018 05:27 — forked from swalkinshaw/tutorial.md
Designing a GraphQL API

Tutorial: Designing a GraphQL API

This tutorial was created by Shopify for internal purposes. We've created a public version of it since we think it's useful to anyone creating a GraphQL API.

It's based on lessons learned from creating and evolving production schemas at Shopify over almost 3 years. The tutorial has evolved and will continue to change in the future so nothing is set in stone.

@palerdot
palerdot / README.md
Created January 31, 2020 11:57 — forked from nikcub/README.md
Facebook PHP Source Code from August 2007