- Andre/Dave - Opening Remarks
- Matt Kelly - Mobile Web Landscape
- Fil Maj - Whats new in PhoneGap 2.0
- Gord Tanner - CordovaJS
- Pamela Fox - PhoneGap Pain Points
- James Burke - RequireJS and PhoneGap
- Patrick Mueller - debugging cordova apps
- Simon MacDonald - Corinthian and code
- Don Coleman - PhoneGap Plugins
- Andrew Lunny - PhoneGap/Build
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
$ brew install lighttpd | |
$ git config --global instaweb.browser ch | |
$ git config --global browser.ch.cmd "open -a \"/Applications/Google Chrome.app\"" |
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
set theFile to (path to desktop as text) & "todo.txt" | |
tell application "Finder" | |
open file theFile | |
end tell |
####Issue Classifications
- Defect: These are known bugs. The issue should also contain steps to reproduce. Feel free to fix these and submit a pull request.
- Enhancement: These are planned enhancements that have not been picked up yet. If you would like to work on one, please add a comment that you are doing so.
- Discussion: These are issues that can be non-issues, and encompass best practices, or plans for the future.
- Quick: These are small issues, that should be able to be fixed quickly. Normally these issues don't stay around for very long.
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
protocol A {} | |
protocol B: A {} | |
protocol C { | |
var something: A { get set } | |
} | |
struct BB: B {} |
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
protocol SomeProtocol { | |
typealias SomeFunc = () -> Void | |
} | |
extension SomeProtocol { | |
func doSomething(someFunc: SomeFunc) { | |
someFunc() // Invalid use of '()' to call a value of non-function type 'Self.SomeFunc' | |
} | |
} |
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 BaseClass { | |
class func entityName() -> String { | |
return "" | |
} | |
} | |
class FirstClass: BaseClass { | |
override class func entityName() -> String { | |
return "FirstClass" | |
} |