Skip to content

Instantly share code, notes, and snippets.

View tene's full-sized avatar

Stephen Weeks tene

  • Sunnyvale, CA
View GitHub Profile
@tene
tene / mc
Created February 19, 2012 00:34
#!/bin/bash
if [ ! -f ~/minecraft.jar ] ; then
wget https://s3.amazonaws.com/MinecraftDownload/launcher/minecraft.jar -O ~/minecraft.jar
fi
BASE="$HOME/mc-installs"
mkdir -p "$BASE"
@tene
tene / gist:1215356
Created September 13, 2011 22:27
perf events on dell latitude E6510
List of pre-defined events (to be used in -e):
cpu-cycles OR cycles [Hardware event]
stalled-cycles-frontend OR idle-cycles-frontend [Hardware event]
stalled-cycles-backend OR idle-cycles-backend [Hardware event]
instructions [Hardware event]
cache-references [Hardware event]
cache-misses [Hardware event]
branch-instructions OR branches [Hardware event]
branch-misses [Hardware event]
@tene
tene / gist:1202930
Created September 8, 2011 08:31
perf stat output
[sweeks@sweeks-laptop ~]$ perf stat --repeat=20 perl6 -e 'say "hello world"'
hello world
hello world
hello world
hello world
hello world
hello world
hello world
hello world
hello world
@tene
tene / find-source.pl
Created September 7, 2011 23:29
find and print the source definition of a method
#!/usr/bin/env perl
use strict;
use warnings;
use B;
use IO::Socket;
use IO::Interface qw/:flags/;
use Data::Dumper;
sub find_sub_definition {
my ($sub) = @_;
@tene
tene / returnvalues.pl
Created July 18, 2011 02:53 — forked from djanatyn/returnvalues.pl
I can't believe this worked.
#!/usr/bin/perl
use v5.10;
use IO::File qw//;
sub countItems {
(my $target) = @_;
my $fh = IO::File->new('.ptd', 'r') or die 'no .ptd file found';
return map { /^$target:(.*)/ } <$fh>;
}
sub printTodo {
@tene
tene / curses.pl
Created July 17, 2011 00:08 — forked from djanatyn/curses.pl
roguelike
#!/usr/bin/perl -w
# Use Moose for the Player class, and other slight improvements.
package Player;
use v5.10;
use strict;
use Moose;
has 'health' => (is => 'rw', isa => 'Int', default => 100);
has 'x' => (is => 'rw', isa => 'Int');
has 'y' => (is => 'rw', isa => 'Int');
@tene
tene / pp.c
Created July 16, 2011 22:53
arrays aren't pointers
#include <stdio.h>
void main() {
int a[10];
int *b = a;
printf("%d %d\n", sizeof(a), sizeof(b));
}
@tene
tene / Player.pm
Created July 15, 2011 18:09
Tiny moose example
package Player;
use Moose;
has 'x' => (is => 'rw', isa => 'Int');
has 'y' => (is => 'rw', isa => 'Int');
sub position {
my ($self, $x, $y) = @_;
if ( defined($x) and defined($y) ) {
$self->x($x); $self->y($y);
@tene
tene / all-platform-workers
Created May 17, 2011 22:13
instance-based upstart configuration
task
script
for port in $(seq 8080 8087) ; do
start platform-worker PORT=$port
done
end script
@tene
tene / .gitignore
Created May 15, 2011 06:39
basic psgi worker running on nginx
logs