Skip to content

Instantly share code, notes, and snippets.

View aereal's full-sized avatar

aereal aereal

View GitHub Profile
@aereal
aereal / generator_quiz.js
Last active October 19, 2018 13:11 — forked from hakobe/generator_quiz.js
oopsを表示させずにhelloのみを表示させる方法を答えよ
function* hello() {
try {
while(true) {
yield 9
yield 3
yield 2
}
} catch(e) {
console.log('oops')
} finally {
@aereal
aereal / 0_reuse_code.js
Created October 14, 2013 15:01
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@aereal
aereal / sokuho.rb
Created September 16, 2010 12:28 — forked from shenqi/sokuho.rb
#! /usr/bin/ruby -Ku
require 'net/http'
require 'rubygems'
require 'nokogiri'
require 'meow'
TOPURL = 'http://baseball.yahoo.co.jp/npb/schedule/'