This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
width:400px; | |
overflow-x:hidden; | |
} | |
img { | |
float:left; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'sinatra' | |
require 'open-uri' | |
require 'json' | |
require 'haml' | |
get '/hello' do | |
'hello' | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source :rubyforge | |
gem 'sinatra' | |
gem 'omniauth' | |
gem 'omniauth-facebook' | |
gem 'haml' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 最近、CoffeeScript使って書いてるので、元のcoffeeも載せておきます | |
moment = require('lib/moment.min') | |
momentja = require('lib/momentja') | |
mainWindow = Ti.UI.createWindow | |
title:'Moment.js Sample' | |
barColor:'#59BB0C' | |