Skip to content

Instantly share code, notes, and snippets.

View atul-github's full-sized avatar

Atul atul-github

  • Bangalore, India
View GitHub Profile
@atul-github
atul-github / index.html
Created July 11, 2015 11:49
Moving ball on horizontal surface in d3.js - by Atul
<!--
Author : Atul Pandit
Email : atul_pandit@yahoo.com / atul.pandit@gmail.com
-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Moving ball on horizontal surface in d3.js - by Atul</title>
<script src="http://d3js.org/d3.v3.min.js"></script>
</head>
@atul-github
atul-github / index.html
Last active August 29, 2015 14:23
Rotating Pie - Rainbow / Newton Disc in D3.js - by Atul
<!--
Author : Atul Pandit
Email : atul_pandit@yahoo.com / atul.pandit@gmail.com
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Rotating Pie - Rainbow / Newton Disc in D3.js</title>
<script src="http://d3js.org/d3.v3.min.js"></script>
</head>
<body>
@atul-github
atul-github / index.html
Last active August 29, 2015 14:22
Simple analog clock using d3.js- by Atul
<!--
Author : Atul Pandit
Email : atul_pandit@yahoo.com / atul.pandit@gmail.com
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="http://d3js.org/d3.v3.min.js"></script>
@atul-github
atul-github / index.html
Last active October 12, 2019 15:25
Snake game (nibbles) by Atul
<!--
Author : Atul Pandit
Email : atul_pandit@yahoo.com / atul.pandit@gmail.com
-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Simple Snake game in D3js by Atul</title>
<script src="http://d3js.org/d3.v3.min.js"></script>
@atul-github
atul-github / index.html
Last active March 25, 2018 14:51
Bouncing balls in D3.js
<!--
Author : Atul Pandit
Email : atul_pandit@yahoo.com / atul.pandit@gmail.com
-->
<!--
DEMO LINK
http://bl.ocks.org/atul-github/0019158da5d2f8499f7f
-->
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">