- この本の位置づけ
- 想定読者
- この本では取り上げない内容
- JavaScript(CoffeeScript)の基礎知識
- カメラ連携アプリ
- ネイティブモジュールの作り方
- アプリのデザインに関すること(例:アイコンデザイン、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
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() } |
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
(function() { | |
var NHKProgram; | |
NHKProgram = (function() { | |
function NHKProgram(config) { | |
this.apikey = config.apikey; | |
this.Genre = [ | |
{ | |
"id": "0000", | |
"name": "ニュース/報道(定時・総合)" |
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 TiToDo | |
* @constructor | |
**/ | |
function TiToDo(){ | |
this.taskList = Ti.UI.createTableView({ | |
width:Ti.UI.FULL, | |
height:'auto', |
Web業界で働いている人にとって必要となりそうな「心構え」について共有し語れる場作りとして、2ヶ月に1回の頻度で、トークイベントを実施しています。
前回はWebディレクターの人を想定したトークイベントを実施しましたが今回はシリコンバレーで働く方などをお招きして「スタートアップ企業のリアルという」コンセプトで、トークイベントを実施しました。
これまで同様に、気軽な雰囲気のイベントにしたいので、今回はこんな食事を提供しました
Web系企業に勤めてる人の中で 良い所があったら仕事を変えてもいい という人が一定数いるのですが、そういう人にとって 魅力的 と思えるような仕事というのは現在の状況だと、かなり限られてくるかと思ってます。
そういう人に向けてスタートアップ系の会社のリアルな姿を知ってもらうことで、今後のキャリアを考える上でのヒントになるようなことを想定して、今回スタートアップ企業のリアルというコンセプトにてトークイベントを実施したいと思ってます。
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 xhr = WScript.CreateObject("MSXML2.XMLHTTP"),urlList,length; | |
urlList = ["http://www.atmarkit.co.jp/","http://www.atmarkit.co.jp/ait/articles/1307/17/news061.html"]; | |
length = urlList.length; | |
while( true ){ | |
for(var i=0;i < length;i++){ | |
xhr.open("GET", urlList[i]); | |
xhr.send(); | |
WScript.Sleep(3000); | |
if( xhr.readystate === 4 ){ | |
WScript.Echo("url:" + urlList[i] + "status:" + xhr.status ); |
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 casper,fs,url,list,i,j,table,count,links,index,result,howMany,__iterator,iter,__next,__hasNext; | |
casper = require('casper').create({ | |
clientScripts: ["js/jquery.min.js"] | |
}); | |
fs = require('fs'); | |
url = "http://www.coedobrewery.com/blog/shoplist/"; | |
casper.start(url,function(){ | |
console.log(this.getTitle()); |
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, baseState, controller, rowLabels, state, tab, tab1, tab2, tab3, tabGroup, table, win; | |
Controller = require("controller"); | |
baseState = require("baseState"); | |
state = { | |
"default": 1, | |
slide: 2, | |
end: 3 |
NewerOlder