Skip to content

Instantly share code, notes, and snippets.

#!/bin/sh
# Sublime Text 3 install with Package Control (last update: 25 August 2016)
#
# No need to download this script, just run it on your terminal:
#
# $ curl -L git.io/sublimetext | sh
#
# When you need to update Sublime Text, run this script again.

Keybase proof

I hereby claim:

  • I am aeonblue3 on github.
  • I am cneitzer (https://keybase.io/cneitzer) on keybase.
  • I have a public key ASDGeRYUjjS_av_l_eujF_LlPNP2m6an6asyjYaM6xWPXAo

To claim this, I am signing this object:

#include "stdio.h"
/**
* The purpose of this program is to create two integer variables and assign
* each a value. Then the values are passed to a function that alter their
* values without needint to reference a global variable or returning any
* values.
*
* @author Chris Neitzer
* Discussion Forum 3
@aeonblue3
aeonblue3 / bootstrap-grid.html
Created July 2, 2012 15:42
Bootstrap Grid classes example
<!--
Bootstrap's grid uses an outer div with a container class. Inside this is a row class
that contains the div or divs that will hold the content. To divide up the space in a row
use the span classes and offset classes. The numbers used after the offsets and the spans must
equal 12 for the 12 column grid system.
-->
<div class="container">
<div class="row">
<div class="offset4 span8"></div>
@aeonblue3
aeonblue3 / Bgrid.html
Created June 1, 2012 14:45
Bootstrap Example
<div class="container">
<div class="row">
<div class="span2"></div>
<div class="span8"></div>
</div>
</div>
<!-- OR -->
<div class="container">
@aeonblue3
aeonblue3 / Fgrid.html
Created June 1, 2012 14:43
Foundation Example
<div class="container">
<div class="row">
<div class="eight columns centered">My Stuff</div>
</div>
</div>
@aeonblue3
aeonblue3 / scheduler.c
Created February 14, 2012 00:48
Scheduler
//
// scheduler.c
//
//
// Created by Chris Neitzer on 2/9/12.
// Copyright (c) 2012 All rights reserved.
//
#include <stdio.h>
#include <stdlib.h>