Skip to content

Instantly share code, notes, and snippets.

@yamaimo
yamaimo / ruby-nicovideo-dl.rb
Last active August 29, 2015 14:20
NicovideoDownloader with Ruby
#!/usr/bin/env ruby
#----
# ruby-nicovideo-dl.rb
#----
# [Set up]
# 1. Install Netrc gem
# Use gem command.
#
# $ gem install netrc
@yamaimo
yamaimo / attr_sample.rb
Last active June 23, 2021 01:44
Curses for Ruby
#!/usr/bin/env ruby
# coding: utf-8
require 'curses'
Curses.init_screen
text = "TEXT"
attrs = {
normal: Curses::A_NORMAL,
@yamaimo
yamaimo / solver.rb
Created May 20, 2014 10:48
ticketgobble
#!/usr/bin/env ruby
# coding: utf-8
class SimpleDate
include Comparable
# フォーマットは"mm/dd"
def initialize(format)
month, day = format.split('/').map(&:to_i)
@month = month