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
final case class Person(name: String, age: Int, email: String) | |
final case class PersonBuilder[Name[_], Age[_], Email[_]] private ( | |
private val name: Name[String], | |
private val age: Age[Int], | |
private val email: Email[String] | |
) | |
object PersonBuilder { | |
type Initial[A] = Option[A] |
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
{ | |
"openapi": "3.0.2", | |
"info": { | |
"title": "Sample ApPI", | |
"version": "0.1.0" | |
}, | |
"paths": { | |
"/entities/": { | |
"get": { | |
"responses": { |
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
var talks = $("li.talk").filter(function() { | |
return $(this).css('background-image').indexOf('en.svg') != -1; | |
}); | |
var summary = ""; | |
$.each(talks, function(idx, talk) { | |
summary += '[' + idx + '] ' + $(talk).find('a.talk-title').text(); | |
summary += '\n\tDescription: ' + $(talk).find('> div').text(); | |
summary += '\n\n'; |