목록conference (2)
쿵쿵일지
스칼라와 함수형 프로그래밍 기초 모든 것이 객체 scala> 1 res0: Int = 1 scala> true res1: Boolean = true scala> 1.1 res2: Double = 1.1 scala> 1.23F res3: Float = 1.23 scala> 123L res4: Long = 123 간단한 람다식 scala> List(1,2,3).sum res3: Int = 6 scala> List(1,2,3).map(x => x * x).sum res4: Int = 14 scala> List(1,2,3).map(x => x * x).filter(_ > 5).sum res5: Int = 9 함수형 프로그래밍 특징 Machin intelligence at Google scale Cloud vis..
이번 summit에서는 크게 web과 app 두 세션으로 나누어 진행되었다. Web 트랙- Introduction to Progressive Web App (Robert Nyman, Google)- Instant and Offline Apps with Service Worker (도창욱, GDE)- Making it Installable (문현경, GDE)- Deeper engagement with Push Notification (고재도, GDE)- Putting the Progressive in Progressive Web Apps (Sam Thorogood, Google)- The Future of the Web (Paul Kinlan, Google) Android 트랙- What's New in ..