I hereby claim:
- I am kirbyUK on github.
- I am kirbyuk (https://keybase.io/kirbyuk) on keybase.
- I have a public key whose fingerprint is F9DF 5D0F 1333 466B F826 4D38 7B61 92DE AA07 001A
To claim this, I am signing this object:
1 | |
00:00:00,000 --> 00:00:04,500 | |
Greece, 2080 AD | |
Computer Science has infiltrated every aspect of life | |
2 | |
00:01:39,860 --> 00:01:41,020 | |
Blessed be the rears of the lady, | |
3 |
[ | |
{ | |
"bytes" : "2", | |
"description" : "Add with Carry", | |
"name" : "ADC", | |
"opcode" : "$69", | |
"mode" : "Immediate" | |
}, | |
{ | |
"opcode" : "$65", |
I hereby claim:
To claim this, I am signing this object:
#include <stdio.h> | |
void f1() | |
{ | |
int a = 1, b = 2, c = 3; | |
} | |
void f2() | |
{ | |
int a, b, c; |
#!/usr/bin/perl -w | |
use Getopt::Long; | |
use MP3::Tag; | |
use strict; | |
my %tags; | |
GetOptions( | |
"artist=s" => \$tags{"artist"}, | |
"album=s" => \$tags{"album"}, | |
"comment=s" => \$tags{"comment"}, |
#!/usr/bin/perl -w | |
use File::Spec::Functions qw/catfile/; | |
use strict; | |
sub recurse | |
{ | |
my $root = shift; | |
opendir my $dir, $root or die "Cannot open directory: '$root': $!\n"; | |
for my $file(readdir $dir) | |
{ |
#!/usr/bin/perl -w | |
use strict; | |
while(<>) { print "$_" } |
/* | |
* sfUtil.h | |
* A simple, header only file (so you don't have to edit any Makefiles) used | |
* for common SFML debugging tasks. | |
*/ | |
#ifndef SF_UTIL_H | |
#define SF_UTIL_H | |
#include <SFML/Graphics.hpp> | |
#include <iostream> | |
#include <string> |