writing the next great kotlin novel
play

WRITING the NEXT GREAT KOTLIN NOVEL or , Kotlin Beyond the Style - PowerPoint PPT Presentation

WRITING the NEXT GREAT KOTLIN NOVEL or , Kotlin Beyond the Style Guide Lisa Wray @lisawrayz WRITING the NEXT GREAT KOTLIN NOVEL or , Kotlin Beyond the Style Guide Lisa Wray @lisawrayz My vision: Ill read books about writing On Writing ,


  1. WRITING the NEXT GREAT KOTLIN NOVEL or , Kotlin Beyond the Style Guide Lisa Wray @lisawrayz

  2. WRITING the NEXT GREAT KOTLIN NOVEL or , Kotlin Beyond the Style Guide Lisa Wray @lisawrayz

  3. My vision: I’ll read books about writing On Writing , Steven King On Writing Well , William Zinsser Bird by Bird , Annie Lamar What I Talk About When I Talk About Running , Haruki Murakami

  4. Reality: Let’s go back to basics. The Elements of Style , Strunk & White Politics & The English Language , George Orwell

  5. natural language noun a language that has developed naturally in use (as contrasted with an artificial language or computer code).

  6. Natural language depends on context

  7. Natural language is ambiguous “Take a bow.”

  8. “Take a bow.”

  9. “Take a bow.”

  10. “Take a bow.”

  11. “[English] becomes ugly and inaccurate because our thoughts are foolish, but the slovenliness of our language makes it easier for us to have foolish thoughts.” George Orwell

  12. formal language noun a language designed for use in situations in which natural language is unsuitable, as for example in mathematics, logic, or computer programming

  13. If it compiles, then it’s clear to the computer .

  14. If it compiles, then it’s clear to the computer . Only clear to the computer ++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>—.+++++++..++ +.>>.<-.<.+++.———.--------.>>+.>++. Brainfuck: “Hello World”

  15. If it compiles, then it’s clear to the computer . Only clear to the computer ++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>—.+++++++..++ +.>>.<-.<.+++.———.--------.>>+.>++. Brainfuck: “Hello World” Only clear to the author "^\(*\d{3}\)*( |-)*\d{3}( |-)*\d{4}$” Regex: ‘Validate’ a phone number in regex

  16. Clear to anyone Stage is a room. The old lady is a woman in the Stage. Understand "mother" or "stepmother" as the old lady. The old lady is active. […] The Prince is a man in the Stage. […] The prince carries a glass slipper. The glass slipper is wearable. Understand "shoe" or "heel" or "toe" or “foot" as the slipper. The description of the slipper is "It is very small for an adult woman's foot." Inform 7: “Glass”, by Emily Short

  17. Clear to anyone … but is this really better? Stage is a room. The old lady is a woman in the Stage. Understand "mother" or "stepmother" as the old lady. The old lady is active. […] The Prince is a man in the Stage. […] The prince carries a glass slipper. The glass slipper is wearable. Understand "shoe" or "heel" or "toe" or “foot" as the slipper. The description of the slipper is "It is very small for an adult woman's foot." Inform 7: “Glass”, by Emily Short

  18. Kotlin falls in the middle Takes its source vocabulary from English define terms more narrowly (ex: open, return, if / else ) modify (ex: fun(ction), foreach) some is just added ( -> )

  19. This is not a programming talk If your code compiles, you can communicate with your computer. This talk is about communicating with people.

  20. The official Kotlin style guide Mechanics : Whitespace, capitalization, punctuation, ordering Naming Idiomatic usage : immutability, when, defaults vs overloads, var vs function, scope functions

  21. Naming An object is a noun “The name of a class is usually a noun or a noun phrase explaining what the class is: List, PersonReader.” A method is a verb “The name of a method is usually a verb or a verb phrase saying what the method does: close, readPersons.”

  22. Choosing good names What are bad names? “The names should make it clear what the purpose of the entity is, so it's best to avoid using meaningless words ( Manager , Wrapper , etc.) in names.”

  23. Choosing good names What are bad names? “The names should make it clear what the purpose of the entity is, so it's best to avoid using meaningless words ( Manager , Wrapper , etc.) in names.” Translation : #$@&%*! Java

  24. The optional feature In general, if a certain syntactic construction in Kotlin is optional […], you should omit it in your code . Do not leave unnecessary syntactic elements in code just "for clarity”. Kotlin style guide

  25. Orwell: “If it is possible to cut a word out, always cut it out.” Strunk: “Omit needless words.”

  26. Android Studio is less opinionated … fun function(): Boolean = true fun function() = true

  27. 
 Infix functions class function or extension function with one parameter a and b “Hello, World" matches “^Hello".toRegex()

  28. Infix: custom “Lisa likes food.” enum Interest ( Food, Wine, Hiking, Yoga ) data class Person(val interests: List<Interest>) val lisa = Person(listOf(Food, Wine)) fun Person.likes(interest: Interest) = person.interests.contains(interest) lisa.likes(Food)

  29. “Lisa likes food.” infix fun Person.likes(interest: Interest) {} lisa likes Food // true lisa likes Hiking // false

  30. infix Interest.and(other: Interest) = listOf(this, other) infix fun Person.likes(interests: List<Interest>) = … lisa likes (Food and Wine)

  31. Why not infix everywhere? All custom infix functions have the same precedence (Lisa likes (Food and Wine)) and (Bob likes (Yoga and Hiking))

  32. Why not infix everywhere? All custom infix functions have the same precedence (Lisa likes (Food and Wine)) and (Bob likes (Yoga and Hiking)) Kotlin does not have verb conjugation Most functions are written in the imperative case. val trash = TrashBag() if (trash.isFull) Lisa.takeOut(trash) Lisa takeOut trash Lisa takesOut trash

  33. Great use: testing infix fun Person.likes(interest: Interest) {…} infix fun Person.dislikes(interest: Interest) {…} assert(lisa likes Food) assert(lisa dislikes Hiking)

  34. The passive voice Active : Bob throws the ball. Passive : The ball was thrown by Bob.

  35. The passive voice King: “You should avoid the passive tense.” Strunk: “Use the active voice.” Orwell: “Never use the passive where you can use the active.”

  36. The passive voice Can omit the subject Active : I performed the experiment. Passive : The experiment was performed. “I would have done my homework, but my data was deleted.”

  37. The “evasive voice” “Darth Vader Dies On Death Star” enum State { Alive, Dead } class Person (var state: State = Alive) val vader = Person() vader.state = Dead

  38. Original : Darth Vader dies on Death Star Passive : Darth Vader killed by Emperor Palpatine Active : Emperor Palpatine kills Darth Vader

  39. Original : Vader dies Passive : Vader killed by Palpatine Active : Palpatine kills Vader

  40. Transitive : Palpatine kills Vader Intransitive : Vader dies Can’t do : Palpatine dies Vader

  41. Bad headline : Vader dies. Good headline : Palpatine kills Vader. ( Implied : Vader dies.)

  42. enum State { Alive, Dead } class Person(var state: State = Alive)

  43. sealed class State 
 object Alive: State() 
 class Dead(val cause: Cause): State() class Person(var state: State = Alive)

  44. 
 
 sealed class State 
 object Alive: State() 
 class Dead(val cause: Cause): State() class Person(var state: State = Alive) 
 sealed class Cause 
 class NaturalDeath(val reason: String): Cause() 
 class Accident(val reason: String): Cause() 
 class Killed(val by: Person): Cause() 
 val PeacefullyDead = Dead(NaturalDeath("old age"))

  45. This is still an exhaustive when. when (state) { 
 is Alive -> { } // do something 
 else -> { } 
 }

  46. “Vader dies” vader.state = Dead() No value passed for parameter “cause”

  47. “Palpatine kills Vader” val palpatine = Person() vader.state = Dead(Killed(by = palpatine))

  48. Scope functions The conjunctions of Kotlin “A common way to fall into wordiness is to present a single complex idea, step by step, in a series of sentences that might to advantage be combined into one.” Strunk, The Elements of Style

  49. Scope functions … in English? “I’m going to the store now. The store gets busy after work.” vs: “I’m going to the store because it gets busy after work."

  50. “I’m going to the store. The store is probably busy right now. But I’m out of ice cream." vs: “I’m going to the store, which is probably busy now, but I’m out of ice cream.”

  51. “I’ll have an ice cream with sprinkles." return IceCream().apply { add(sprinkles) } “I’ll have an ice cream, and I need a receipt.” return IceCream().also { printReceipt(it) }

  52. “I’ll have an ice cream with sprinkles, and I need a receipt.” return IceCream().apply { 
 add(sprinkles); 
 printReceipt(this) 
 }

  53. “I’ll have an ice cream with sprinkles, and I need a receipt.” return IceCream().apply { 
 add(sprinkles); 
 printReceipt(this) 
 } return IceCream().apply { add(sprinkles) }.also { printReceipt(it) } 


  54. “If they still have ice cream, get me one with sprinkles and a receipt.” iceCream?.apply { add(sprinkles) }.also { printReceipt(it) } 🍧 Receipt for “null”

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend