Skip to content

Instantly share code, notes, and snippets.

@notbenh
notbenh / ascii_chart2.pl
Created May 30, 2013 18:50
Working thru a solution with a student
#!/usr/bin/perl
use strict;
use warnings;
foreach my $x (32..126) {
printf "$x =%3d, \n", $x;
}
@notbenh
notbenh / fab4.pl
Created May 29, 2013 14:45
an example of using print as a debugging tool
#!/usr/bin/perl
use strict;
use warnings;
my @Beatles = qw (John Paul George Ringo);
print "AT THE START Beatles are [@Beatles]\n";
my ($drummer, @vocals);
$drummer = pop @Beatles;
print "Drummer is $drummer and Beatles are [@Beatles] \n";
push @vocals, shift @Beatles;
@notbenh
notbenh / hash_from_arrays.pl
Created May 18, 2013 22:50
If I had a list of arrays, and I wanted each element of these arrays to be keys with the array as the value. I can do this in perl but how do I do that in ruby? Seems that this is a syntax error: {[%w[a b c],%w[x y z]].each{|a| a.each{|v| v=>a}}}
use strict;
use warnings;
use Data::Dumper;
=head1 GOAL
two arrays ['a','b','c'] and ['x','y','z']
become a hash:
{ a => ['a','b','c']
@notbenh
notbenh / number_padding.pl
Created February 13, 2013 18:48
an example of how to padd out a string using x
#!/usr/bin/perl
use strict;
use warnings;
my $column_width = 7;
my $number = 15;
my $padded_number = '0' x ($column_width - length($number)) . $number;
print "|$padded_number|\n";
@notbenh
notbenh / name_overflow
Last active December 12, 2015 06:59
How to decide on how to overflow with in a column.
#!/usr/bin/perl
use strict;
use warnings;
my $boss = 10;
my $butler = 20;
if( length($boss_first . ' ' . $boss_last) > 15 ) {
if( $butler > 15) {
my $padded_boss_first = ?????;
@notbenh
notbenh / linecachefailure
Created October 28, 2012 03:25
appfog fails to install linecache?
[benh@nia Smallest-Federated-Wiki]$ af --runtime ruby193 push fed-notbenh
Would you like to deploy from the current directory? [Yn]:
Detected a Rack Application, is this correct? [Yn]:
1: AWS US East - Virginia
2: AWS EU West - Ireland
3: AWS Asia SE - Singapore
4: Rackspace AZ 1 - Dallas
5: HP AZ 2 - Las Vegas
Select Infrastructure: 5
Application Deployed URL [fed-notbenh.hp.af.cm]:
@notbenh
notbenh / .xinitrc
Created August 29, 2012 22:00
xinitrc
#!/bin/bash
export BROWSER=firefox
xrdb -merge .Xresources
trayer --edge top --align right --SetDockType true --SetPartialStrut true --expand true --width 10 --height 10 --transparent true --tint 0x000000 &
gnome-settings-daemon
if [ -x /usr/bin/gnome-power-manager ] ; then
@notbenh
notbenh / 99.pl
Created August 10, 2012 04:18 — forked from igal/99.pl
ben goofs off with 99 bottles ... now with moar minimalism.
#!/usr/bin/env perl
use strict;
use warnings;
sub bottles() { sprintf qq{%s bottle%s of beer}
, $_ || 'No'
, $_==1 ? '' : 's';
}
sub store() { $_=99; qq{Go to the store, buy some more...\n}; }
sub wall() { qq{ on the wall\n} }
@notbenh
notbenh / 99.pl
Created August 10, 2012 03:31
ben goofs off with 99 bottles
#!/usr/bin/env perl
use strict;
use warnings;
use feature qw{say};
sub bottles($) { sprintf qq{%s bottle%s of beer}
, $_ || 'No'
, $_==1 ? '' : 's';
}
sub store() { $_=99; qq{Go to the store, buy some more...\n}; }
@notbenh
notbenh / Thing.user.js
Created December 23, 2011 20:29
Attempting to use ajax return object to modify current object
Thing.user = new Object;
Thing.user.new = function(user){this.user = user; return this};
Thing.user._fetch_user_data = function(){
$.ajax({ url: '/api/' + this.user
, dataType: 'json'
, async:false
, success: function(data){ console.info(data); for(key in data) this.$key = data[key]; }
});
};