Skip to content

Instantly share code, notes, and snippets.

@tsurumau
tsurumau / bgm_advent_calendar_2015.md
Last active December 6, 2015 08:44
耳かきしてもらいながら作業してる気分になれるBGM
int srcX, srcY, dstX, dstY;
void setup()
{
srcX = srcY = dstX = dstY = 0;
size(640, 480);
}
void draw()
{
@tsurumau
tsurumau / chkseq.pl
Created September 15, 2013 13:10
数理論理学ゼミ合宿 演習問題での検算
#!/usr/bin/perl
use strict;
use warnings;
use bigint;
my $s = 37038733764462037052->as_bin;
$s =~ s/^0b//;
print "$s\n";
while ($s =~ s/1(?!,)(0*)/(length $1).','/e) {};
$s =~ s/,$//;

ぐんまRuby会議01旅のしおり添削用

ぐんまRuby会議01参加者のためのしおりです。

ぐんまRuby会議01会場アクセス

ぐんまRuby会議01は高崎市総合福祉センターで開催されます。

クルマでお越しの方

  • 会場の駐車場をご利用ください。
  • 会場利用者は無料となっています。
  • 駐車場入り口で駐車券を受け取り、センター受付で処理を行ってください。
#!/usr/bin/perl
use strict;
use warnings;
use Carp;
use LWP::UserAgent;
my $ua = LWP::UserAgent->new;
my @keys;