Skip to content

Instantly share code, notes, and snippets.

@velickym
velickym / gruntfile.js
Last active September 24, 2020 15:44
Grunt.js local development template
module.exports = function(grunt) {
grunt.initConfig({
connect : {
default : {
options : {
port : 4478,
livereload : 35728,
hostname : '*'
@velickym
velickym / .gitignore
Last active June 1, 2016 13:19
Circular clock
.idea/
config.codekit
@velickym
velickym / index.html
Last active November 11, 2015 10:49
HeartBeat using D3.js
<!DOCTYPE html>
<html>
<head>
<title>HeartBeat</title>
<script src="//d3js.org/d3.v3.min.js"></script>
<style>
#svg-wrapper {
width: 500px;