Skip to content

Instantly share code, notes, and snippets.

@h5y1m141
h5y1m141 / style.css
Created July 14, 2012 06:53
css for chrome extention
body {
width:400px;
overflow-x:hidden;
}
img {
float:left;
}
@h5y1m141
h5y1m141 / app.rb
Created August 9, 2012 22:28
Sinatra sample
require 'sinatra'
require 'open-uri'
require 'json'
require 'haml'
get '/hello' do
'hello'
end
@h5y1m141
h5y1m141 / crawl_coffee_meeting.rb
Created August 20, 2012 05:40
parse coffee meeting data
require 'rubygems'
require 'nokogiri'
require 'open-uri'
class Crawler
def run()
base_url = 'http://coffeemeeting.jp/hours/'
0.upto(10).each {|i|
count = (i*10)+1
@h5y1m141
h5y1m141 / create_place_use_acs_rest.rb
Created August 21, 2012 22:15
Appcelerator Cloud Services: create place via REST API
require 'rest_client'
require 'json'
ACS_REST_ENTRY = 'https://api.cloud.appcelerator.com/v1/places/'
API_KEY = 'xxxxxxxx'
LOGIN_URL = 'https://api.cloud.appcelerator.com/v1/users/login.json?key='
res = RestClient.post(LOGIN_URL + API_KEY ,
:login => '[email protected]',
:password => 'password')
@h5y1m141
h5y1m141 / app.coffee
Created September 18, 2012 23:18
titanium sample use CoffeeScript
User = require('user')
u = new User('太郎')
name = u.getName()
name1 = u.changeName('花子')
Ti.API.info name
Ti.API.info name1
win1 = Ti.UI.createWindow
title:'tab1'
backgroundColor:'#fff'
@h5y1m141
h5y1m141 / crawl.coffee
Created October 3, 2012 22:24
CoffeeScriptで書きなおしたnode.jsの標準モジュールを使ったサンプルクローラー
class Crawler
fs = require 'fs'
sys = require 'sys'
http = require 'http'
url = require 'url'
constructor: ->
crawl:(list) ->
self = this
self.fetch u for u in list
@h5y1m141
h5y1m141 / app.coffee
Created October 15, 2012 00:44
QiitaのiPhoneアプリをTitaniumMobile+CoffeeScript
Qiita = require('qiita')
tableView = require('tableView')
moment = require('lib/moment.min')
momentja = require('lib/momentja')
t = new tableView()
q = new Qiita()
token = Ti.App.Properties.getString('QiitaToken')
@h5y1m141
h5y1m141 / Gemfile
Created October 18, 2012 00:14
SinatraとOmniAuthでFacebookアカウント利用したログイン&ログアウトのサンプル
source :rubyforge
gem 'sinatra'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'haml'
@h5y1m141
h5y1m141 / Rakefile
Created October 22, 2012 22:55
QiitaのiPhoneアプリをRubyMotionで書いてみる
# -*- coding: utf-8 -*-
$:.unshift("/Library/RubyMotion/lib")
require 'motion/project'
require 'bubble-wrap'
Motion::Project::App.setup do |app|
# Use `rake config' to see complete project settings.
app.name = 'Qiita'
end
@h5y1m141
h5y1m141 / app.coffee
Created November 4, 2012 22:43
Titanium mobile “early” Advent Calendar 2012で紹介したMoment.jsのサンプル
# 最近、CoffeeScript使って書いてるので、元のcoffeeも載せておきます
moment = require('lib/moment.min')
momentja = require('lib/momentja')
mainWindow = Ti.UI.createWindow
title:'Moment.js Sample'
barColor:'#59BB0C'