a list of slides from nodeconf
you may want to take a look at the jsconf-gist too!
| // | |
| // first OpenVG program | |
| // Anthony Starks (ajstarks@gmail.com) | |
| // | |
| // | |
| package main | |
| import ( | |
| "fmt" | |
| "github.com/ajstarks/openvg" |
| #!/usr/bin/env perl | |
| # rssfs.pl | |
| use strict; | |
| use warnings; | |
| use Date::Parse; | |
| use Fuse; | |
| use HTML::FormatText::WithLinks; |
| #!/usr/bin/perl | |
| use warnings; | |
| use strict; | |
| my $create_table = 0; | |
| sub key { | |
| my ($unique,$key,$name,$cols) = @_; | |
| $name = "`$name`" if defined $name; | |
| return " $unique$key $name (" . join(',', map { |
| use Audio::Beep; Audio::Beep->new->play(join ' ', <DATA>); | |
| __DATA__ | |
| \bpm240 | |
| f2 a, d2. f4 e2 b2 d2. | |
| e4 f2 bes cis2. | |
| f4 e d8 f4 f6 e d a1 | |
| f'2 a,2 b d c4 e2 | |
| r4 e d c c4 bes2 | |
| r4 f e d d cis e c bes2. r4 |
| /* | |
| soziframes.js : transforming sozi SVG animations | |
| to a sequence of PNG images, so you can make | |
| a proper video without capturing the screen. | |
| author: Carles F. Julià < chaos.ct _AT_ gmail com > | |
| You need phantomjs to run it! | |
| */ | |
| var page = require('webpage').create(), |
| #include <stdio.h> | |
| #include <stdint.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <signal.h> | |
| static const char* led_file = "/sys/devices/platform/leds-gpio/leds/tp-link:blue:system/brightness"; | |
| FILE *led_fh; | |
| void cleanup(int); |
| ## Copyright (c) 2011 Jiang Yio, http://inportb.com/ | |
| ## | |
| ## Permission is hereby granted, free of charge, to any person obtaining | |
| ## a copy of this software and associated documentation files (the | |
| ## "Software"), to deal in the Software without restriction, including | |
| ## without limitation the rights to use, copy, modify, merge, publish, | |
| ## distribute, sublicense, and/or sell copies of the Software, and to | |
| ## permit persons to whom the Software is furnished to do so, subject to | |
| ## the following conditions: | |
| ## |
| # file: /etc/ppp/peers/3g | |
| # usage: pppd call 3g | |
| connect '/etc/ppp/peers/dial -V -Upublicinternet -T*99***1#' | |
| user internet | |
| password internet | |
| noauth | |
| usepeerdns |
a list of slides from nodeconf
you may want to take a look at the jsconf-gist too!