Skip to content

Instantly share code, notes, and snippets.

View praveenscience's full-sized avatar
😻
Creative Kitteh

Praveen Kumar Purushothaman praveenscience

😻
Creative Kitteh
View GitHub Profile
@praveenscience
praveenscience / README.md
Created October 30, 2017 14:48 — forked from shubhgo/README.md
D3 tree with weighted links and color coding

A tree visualization built using d3 and inspired from mbostock's work. Some of the features supported are:

  • Weighted edges
  • Color coded links
  • Links originate along the height of the node instead of the center of the node

The MIT License (MIT)

Copyright (c) 2014 Shubham Goel

@praveenscience
praveenscience / fonts.less
Created February 10, 2017 11:54 — forked from joshuapekera/fonts.less
Proxima Nova Font Face
/* Typekit delayed loading of Ansyc Fonts */
.wf-loading h1, .wf-loading h2, .wf-loading h3, .wf-loading p, .wf-loading a { visibility: hidden; }
/* Font-Face */
@font-face {
font-family: @sansFontFamily;
src: url(../fonts/proxima-nova/proximanova-regular-webfont.eot?1307578394);
src: url('../fonts/proxima-nova/proximanova-regular-webfont.eot?iefix') format('eot'),url(../fonts/proxima-nova/proximanova-regular-webfont.woff?1307578394) format('woff'),url(../fonts/proxima-nova/proximanova-regular-webfont.ttf?1307578394) format('truetype'),url('../fonts/proxima-nova/proximanova-regular-webfont.svg#webfont2rpW2ohz') format('svg')
}
// ==UserScript==
// @name Spamtracker
// @namespace http://tampermonkey.net/
// @version 0.2
// @description Alerts you when new smokedetector messages show up
// @author NormalHuman
// @author Ferrybig
// @match *://chat.meta.stackexchange.com/*
// @match *://chat.stackexchange.com/*
// @match *://chat.stackoverflow.com/*
@praveenscience
praveenscience / meteor-windows-vagrant-tutorial.md
Created December 24, 2015 20:24 — forked from gabrielhpugliese/meteor-windows-vagrant-tutorial.md
Tutorial for running Meteor in Windows using Vagrant

Tutorial: Meteor in Windows using Vagrant

BEFORE YOU CONTINUE:

  • Now, Meteor runs in any Windows without any line of this tutorial. Just download the Meteor binary! Yay!!
  • mrt is no longer used with Meteor 1.0

These days some people were discussing at meteor-talk group about running Meteor at Windows and I’ve recommended them using Vagrant. It’s a very developer-friendly piece of software that creates a virtual machine (VM) which let you run any operating system wanted and connect to it without big efforts of configuration (just make the initial installation and you have it working).

Many packages (I've tested) for running Meteor+Vagrant fails because Meteor writes its mongodb file and also other files inside local build folder into a shared folder between the Windows host and the Linux guest, and it simply does not work. So I've put my brain to work and found a solution: do symlinks inside the VM (but do not use ln. Use mount so git can follow it). It’s covered on