Skip to content

Instantly share code, notes, and snippets.

@voluntas
voluntas / open_momo.rst
Last active August 17, 2024 07:04
OpenMomo プロジェクト
@voluntas
voluntas / webrtc.rst
Last active March 28, 2025 06:01
WebRTC コトハジメ
require "datamapper"
require "mechanize"
require "uri"
DataMapper.setup(:default, "sqlite:///テキトウなディレクトリとファイル名(DataMapper のドキュメント読め)")
class Torrent
include DataMapper::Resource
property :url, Text, :key => true
property :title, Text
end
@fuba
fuba / download_ustream_live.pl
Created October 19, 2010 16:07
download live video from ustream using rtmpdump.
#!/usr/bin/perl
# this script is an implementation of http://textt.net/mapi/20101018201937
use strict;
use warnings;
use LWP::Simple;
my ($ustream_url, $file, $stop) = @ARGV;