전체 글 (21) 썸네일형 리스트형 Structured Handling of HTTP Requests Routing is a feature that is installed into an Application to simplify and structure page request handling. application.install(Routing) { get("/") { call.respondText("Hello, World!") } get("/bye") { call.respondText("Good bye, World!") } } get, post, put, delete, head and options functions are convenience shortcuts to a flexible and powerful routing system. In particular, get is an alias to rou.. How to automatically paste today's date with keyboard shortcut? (ex: 2018_05_19 23:15:05) Create new: ServicesServices receives no input in any applicationUse the search to find and add action: Run ApplescriptCopy and paste the following to the field on the right:tell application "System Events" set _Date to (current date) keystroke ¬ (year of _Date as text) & "_" & ¬ text -2 thru -1 of ("00" & ((month of _Date) as integer)) & "_" & ¬ (day of _Date as text) & " " & ¬ text -2 thru -1 .. Softwares on my macOS v0.2 Functional Reactive Programming v0.1 Making a cup of White Chocolate Latte in Kotlin language val whiteChocolateLatte = with(EspressoMachine()) { append("some white chocolate").append("some milk") } 이전 1 2 3 다음