This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE movies ( | |
firstName VARCHAR(32) NOT NULL | |
, lastName VARCHAR(32) NOT NULL | |
, year INT NOT NULL | |
, title VARCHAR(256) NOT NULL | |
); | |
CREATE TABLE alphabet ( | |
letter char NOT NULL | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# prepareForArchive.sh | |
# ViewFinder | |
# | |
# Created by Aijaz Ansari on 10/13/13. | |
# Released under the MIT License | |
# This script should be run in a build phase that should occur | |
# before the 'Compile Sources' build phase for your target. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# uploadToHockey.sh | |
# | |
# Created by Aijaz Ansari | |
# Released under the MIT License | |
# Expected environment variables | |
# From XCode: | |
# * ARCHIVE_DSYMS_PATH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A friend's been asked to set up a computer camp at his son's school. | |
He doesn't know how to get one started. | |
Is this a good list of places to start? | |
These are excerpts of notes I took from your 2C talks. | |
He was thinking of iOS or python, but I was thinking maybe something like turtleacademy would be a better start. | |
Any advice will be greatly appreciated. | |
Thanks! | |
-- Aijaz. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1,11 +1,14 @@ | |
--- | |
layout: default | |
single: true | |
+sidebar: collapse | |
+no_header: true | |
+header: condensed | |
--- | |
<div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
layout: default | |
single: true | |
sidebar: collapse | |
no_header: true | |
header: condensed | |
--- | |
<div> | |
<article class="hentry" role="article"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
## WHAT IS THIS? | |
## | |
## PLEASE SEE http://aijazansari.com/2012/01/07/tag-clouds-with-octopress/ for more context. | |
## | |
use strict; | |
use warnings; | |
use File::Find; |
NewerOlder