Skip to content

Instantly share code, notes, and snippets.

View chintanparikh's full-sized avatar
🎯
Focusing

Chintan Parikh chintanparikh

🎯
Focusing
View GitHub Profile
!************************************************************************!
! !
! general calling convention: !
! !
! (1) Register usage is as implied in the assembler names !
! !
! (2) Stack convention !
! !
! The stack grows towards higher addresses. The stack pointer !
! ($sp) points to the next available (empty) location. !
# Path to your oh-my-zsh configuration.
ZSH=$HOME/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
ZSH_THEME="prose"
# Example aliases
function collapse_pwd {
echo $(pwd | sed -e "s,^$HOME,~,")
}
function prompt_char {
git branch >/dev/null 2>/dev/null && echo '±' && return
hg root >/dev/null 2>/dev/null && echo '☿' && return
echo '○'
}
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<!--
======================================================================
Darkside
======================================================================
A Sublime Text 2 / Textmate theme.
Copyright (c) 2012 Dayle Rees.
Released under the MIT License <http://opensource.org/licenses/MIT>
======================================================================
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <time.h>
#include <unistd.h>
typedef struct _Matrix {
int rows;
int cols;
@chintanparikh
chintanparikh / prose.zsh-theme
Created June 5, 2014 00:53
prose.zsh-theme
function collapse_pwd {
echo $(pwd | sed -e "s,^$HOME,~,")
}
function prompt_char {
git branch >/dev/null 2>/dev/null && echo '±' && return
hg root >/dev/null 2>/dev/null && echo '☿' && return
echo '○'
}
{
"people": [
{
"name": "Greg_James",
"job": "Nextdoor, Engineering Manager"
},
{
"name": "James_Tamplin",
"job": "Firebase, CEO"
},
So sX (Startup Exchange) is a bunch of different things. One way to describe it is the hub for student entrepreneurship. But it's more than that - it's a movement of students who want more from their college education than what their classes provide. It's a movement of students who have passions, and who aren't okay with just letting them go to focus on their grades. And everything we do is kinda under the banner of entrepreneurship.
So to help people, we run a bunch of different programs. Startup Semester is our pre-incubator where we teach people with ideas how to go from idea -> startup. We teach them customer discovery, figuring out what to build, building the product, etc.
HackGT is going to be the biggest hackathon in the south. Check out http://hackgt.com for more info.
3 Day Startup was the first event we ever threw - it's basically an entrepreneurship based hackathon where you try and create some kind of startup in 3 days. They're rarely good, but it's awesome in teaching the basics of entrepreneu
{
"BBRY" => {
"Qtrly Rev Growth" => {
"datapoint" =>"Qtrly Rev Growth (yoy)",
"data" =>"-0.69"
},
"Revenue" => {
"datapoint" =>"Revenue (ttm)",
"data" =>"4.71B"
},
// Relies on jQuery
var Graph = function(options) {
var graph = {}
graph.data = options.data
graph.graphSelector = options.graphSelector;
graph.barPadding = options.barPadding;
graph.$graphElem = $(graph.graphSelector);