Skip to content

Instantly share code, notes, and snippets.

@h5y1m141
h5y1m141 / app.js
Created February 20, 2014 06:25
プロジェクト設定時に出来上がるひな形のアプリを維持しつつ、一部処理をメソッドとして切り出したサンプルToDoアプリ
/**
* クラスの説明文。
* @class TiToDo
* @constructor
**/
function TiToDo(){
this.taskList = Ti.UI.createTableView({
width:Ti.UI.FULL,
height:'auto',
@h5y1m141
h5y1m141 / nhk.js
Created April 18, 2014 22:53
NHK番組表APIをいじれるCommonJSなライブラリ
(function() {
var NHKProgram;
NHKProgram = (function() {
function NHKProgram(config) {
this.apikey = config.apikey;
this.Genre = [
{
"id": "0000",
"name": "ニュース/報道(定時・総合)"
@h5y1m141
h5y1m141 / fetch_url.rb
Last active August 29, 2015 14:19
ちょっと気分が上がるクラブ系ミュージック(http://alfalfalfa.com/articles/114549.html)のYouTubeのURL一覧
require "open-uri"
require "rubygems"
require "nokogiri"
url = "http://alfalfalfa.com/articles/114549.html"
page_source = open(url)
doc = Nokogiri::HTML.parse(page_source)
list = doc.xpath('//object/embed/@src').map {|node| node.text() }