Skip to content

Instantly share code, notes, and snippets.

@ayyar
ayyar / reload.scpt
Last active December 29, 2015 02:49 — forked from mayoff/gist:1138816
on run argv
set inUrl to item 1 of argv
set editor to item 2 of argv
tell application "Google Chrome"
activate
set theUrl to inUrl
if (count every window) = 0 then
make new window
@ayyar
ayyar / gist:4387840
Created December 27, 2012 12:11
Simple C gist.
include <stdio.h>
int main(int argc, char **argv)
{
printf("Hello world!");
return 0;
}