Skip to content

Instantly share code, notes, and snippets.

View khare-ashwini's full-sized avatar

Ashwini Khare khare-ashwini

View GitHub Profile
@khare-ashwini
khare-ashwini / FAQ.md
Last active August 29, 2015 14:22
MS in US - FAQs

Why?

Prospective Students often have a lot of questions about the educational system, living, expenses and life in general. Often, the best source for answers they have is students, like me, who are, or have pursuied Master's in States. This gist will be helpful to get answers to what people have frequently asked me about. If you have any more questions / anything to add, please do leave a comment, I'll update the gist accordingly. I am studying Master's in Computer Science at Georgia Tech, so I will share specific details about that program / institute.

Expenses

Tution

It varies heavily with the institute. On a general note, public universities are cheaper than their private counterparts, quite obvious, although exceptions might be there. The most cost effective university I know is that of UT Austin (< 10,000$ / semester). The highest can go a bit out of hand. CMU, for example has it around $20K - Tution Fee Details. The tution for Georgia Tech - (

@khare-ashwini
khare-ashwini / glass.html
Created March 6, 2015 00:01
[wearscript] gToDo
<html style="width:100%; height:100%; overflow:hidden">
<head>
<!-- You can include external scripts here like so... -->
<!--<script src="https://cdnjs.cloudflare.com/ajax/libs/zepto/1.0/zepto.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.2/underscore-min.js"></script>-->
</head>
<body style="width:100%; height:100%; overflow:hidden; margin:0" bgcolor="#000">
<canvas id="canvas" width="640" height="360" style="display:block"></canvas>
<script>
function server() {
@khare-ashwini
khare-ashwini / glass.html
Last active August 29, 2015 14:16
[wearscript] gToDo
<html style="width:100%; height:100%; overflow:hidden">
<head>
<!-- You can include external scripts here like so... -->
<!--<script src="https://cdnjs.cloudflare.com/ajax/libs/zepto/1.0/zepto.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.2/underscore-min.js"></script>-->
</head>
<body style="width:100%; height:100%; overflow:hidden; margin:0" bgcolor="#000">
<canvas id="canvas" width="640" height="360" style="display:block"></canvas>
<script>
function server() {
@khare-ashwini
khare-ashwini / glass.html
Created March 5, 2015 23:40
[wearscript] gToDo
<html style="width:100%; height:100%; overflow:hidden">
<head>
<!-- You can include external scripts here like so... -->
<!--<script src="https://cdnjs.cloudflare.com/ajax/libs/zepto/1.0/zepto.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.2/underscore-min.js"></script>-->
</head>
<body style="width:100%; height:100%; overflow:hidden; margin:0" bgcolor="#000">
<canvas id="canvas" width="640" height="360" style="display:block"></canvas>
<script>
function server() {
@khare-ashwini
khare-ashwini / form.js
Created April 16, 2014 15:39
Channeli Response Form Filler
// Eases the monotonous task of filling response forms on Channeli, IITR
// Copy paste the following code in console
var score = 5 // can be 5,4,3,2,1 ; would be selected for all questions
$('input[type=radio]').each(function(){
if($(this).val() == score)
$(this).prop('checked',true);
});
@khare-ashwini
khare-ashwini / graph.js
Last active December 17, 2015 12:59
Firefox memory Consumption Donut
// Generated by CoffeeScript 1.6.1
(function() {
//D3 template
var width = 1200,
height = 800,
radius = 300;
var color = d3.scale.ordinal()
.range(["rgb(247, 155, 19)", "rgb(231, 138, 0)", "rgb(240, 191, 67)", "rgb(218, 122, 85)", "rgb(128, 200, 223)", "rgb(91, 172, 197)", "rgb(5, 146, 190)"]);
@khare-ashwini
khare-ashwini / index.html
Last active December 11, 2015 13:58
A sample histogram using d3
<!doctype html>
<head>
<link rel="stylesheet" href="vis.css"></link>
</head>
<body>
<div class = "chart">
</div>
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="vis.js"></script>