- 13:30-13:45 Opening
- 13:45-14:15 Sponsor session 1 Ayumu AIZAWA "Heroku"
- 14:30-15:00 Sponsor session 2 Kazunori Hirano "Microsoft's Openness Vision and Strategy. MS <3 (Loves) Ruby and Linux!"
- 15:00-15:30 Sponsor session 3 Kenichi TAKAHASHI "Social Coding, It's Not Unusual in ESM"
- 15:45-16:15 Sponsor session 4 Masahiro Ihara "How to create COOKPAD"
- 16:30-17:00 Yuichi Tateno (@hotchpotch / id:secondlife) "Technology that drives fun cooking 2012" Gosuke Miyashita
This file contains hidden or 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
--- Day changed Sun Aug 19 2012 | |
00:01 -!- Alisha [72262a5c@gateway/web/freenode/ip.114.38.42.92] has quit [Quit: Page closed] | |
00:02 -!- orinx|bof is now known as orinx|sleep | |
00:02 -!- play [[email protected]] has joined #coscup | |
00:02 -!- bobchao [[email protected]] has joined #coscup | |
00:02 -!- mode/#coscup [+o bobchao] by ChanServ | |
00:03 -!- play [[email protected]] has quit [Client Quit] | |
00:03 -!- nemu [72180666@gateway/web/freenode/ip.114.24.6.102] has joined #coscup | |
00:04 -!- kevin6861 [3d46d92d@gateway/web/freenode/ip.61.70.217.45] has quit [] | |
00:06 -!- kengyu [[email protected]] has joined #coscup |
This file contains hidden or 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
--- Log opened Fri Aug 17 01:22:02 2012 | |
01:22 -!- chph_ [[email protected]] has joined #coscup | |
01:22 -!- Irssi: #coscup: Total of 44 nicks [0 ops, 0 halfops, 0 voices, 44 normal] | |
01:22 -!- Irssi: Join to #coscup was synced in 2 secs | |
01:22 -!- You're now known as chph | |
01:24 -!- test [3b7fcc66@gateway/web/freenode/ip.59.127.204.102] has quit [Quit: Page closed] | |
01:27 -!- Yuhsien [[email protected]] has quit [Quit: Lost terminal] | |
01:29 -!- FourDollars [[email protected]] has quit [Quit: leaving] | |
01:29 -!- webbertsai_ [722fde03@gateway/web/freenode/ip.114.47.222.3] has joined #coscup | |
01:31 -!- webbertsai [722fde03@gateway/web/freenode/ip.114.47.222.3] has quit [Ping timeout: 245 seconds] |
This file contains hidden or 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
i386 : iPhone Simulator | |
x86_64 : iPhone Simulator | |
arm64 : iPhone Simulator | |
iPhone1,1 : iPhone | |
iPhone1,2 : iPhone 3G | |
iPhone2,1 : iPhone 3GS | |
iPhone3,1 : iPhone 4 | |
iPhone3,2 : iPhone 4 GSM Rev A | |
iPhone3,3 : iPhone 4 CDMA | |
iPhone4,1 : iPhone 4S |
This file contains hidden or 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
--- Day changed 六 5月 19 2012 | |
01:23 Robin is now known as Guest3202 | |
01:24 Guest3202 is now known as Pymaster | |
01:25 Pymaster is now known as pc035860 | |
08:40 JSDC-Kay_ is now known as JSDC-Kay | |
08:49 < JSDC-Kay> 大家好!我是今天負責為各位進行實況轉播的 Kay! | |
08:50 < JSDC-df1> 大家好!我是今天負責為各位進行實況轉播的 df1! | |
08:51 < Kande_> 真是太好了^^ | |
08:51 salagadool is now known as salagadoola_ | |
08:55 < ericsk> Good morning~ |
This file contains hidden or 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
// preserve Twitter's style of JSON string encoding... | |
// escape higher value unicode (lowercase hex) | |
// escape < and > (uppercase hex) | |
// escape / in strings (\/) | |
// hugs! https://gist.github.com/1306986 | |
// http://stackoverflow.com/questions/4901133/json-and-escaping-characters | |
function escapedStringify(s, emit_unicode) { | |
var json = JSON.stringify(s); | |
return emit_unicode ? json : json.replace(/\//g, | |
function(c) { |
This file contains hidden or 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
{ | |
"AL": "Alabama", | |
"AK": "Alaska", | |
"AS": "American Samoa", | |
"AZ": "Arizona", | |
"AR": "Arkansas", | |
"CA": "California", | |
"CO": "Colorado", | |
"CT": "Connecticut", | |
"DE": "Delaware", |
Original transcript: http://allisonrandal.com/2012/04/15/open-source-enlightenment/
這幾年來,我慢慢覺得,我們參與開源社群,就像是在一條道路上並肩而行:這不僅讓我們成為更好的程式設計者,也讓我們通過與人合作,而成為更好的人。
您可以將它想成一條修行之道,讓身而為人的我們能夠不斷成長。接下來,我想談談我對開源世界的個人觀點,希望能與您分享。
首先,人是一切開源專案的核心。程式碼是很重要,但最核心的永遠是人。
This file contains hidden or 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
<!doctype html> | |
<!-- http://taylor.fausak.me/2015/01/27/ios-8-web-apps/ --> | |
<html> | |
<head> | |
<title>iOS 8 web app</title> | |
<!-- CONFIGURATION --> |