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
# スライド状態を管理するクラス群を呼び出す | |
Controller = require("controller") | |
baseState = require("baseState") | |
state = | |
default:1 | |
slide:2 | |
end:3 | |
# メインのウィンドウとそこに配置するUIを準備 |
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
var Controller, controller, rowLabels, state, tab, tab1, tab1State, tab2, tab2State, tab3, tab3State, tabGroup, table, win; | |
Controller = require("controller"); | |
tab1State = require("tab1State"); | |
tab2State = require("tab2State"); | |
tab3State = require("tab3State"); | |
state = { | |
"default": 1, | |
slide: 2, |
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 "http://rubygems.org" | |
gem 'sinatra' | |
gem 'twitter' | |
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
# 最近、CoffeeScript使って書いてるので、元のcoffeeも載せておきます | |
moment = require('lib/moment.min') | |
momentja = require('lib/momentja') | |
mainWindow = Ti.UI.createWindow | |
title:'Moment.js Sample' | |
barColor:'#59BB0C' | |
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
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
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
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
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
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') |