Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 KB | None | 0 0
  1. ## Generic Comments
  2. * Starting from scratch, draw on paper, think outside the syntax
  3. * Red, Green, Refactor <= is very important
  4. * Tania's presentation
  5. * Naming conventions, Naming Conventions, Naming Conventions!!!!!!!
  6. * Explicitness VS Smartness (Too Much Dry makes the skin burns)
  7. * Why the else
  8. ```
  9. def test():
  10. if 1 < 2:
  11. print('first here')
  12. return
  13.  
  14. print("here")
  15.  
  16. test()
  17. ```
  18.  
  19. ## Tibor Kocsis
  20. * Title is smart
  21. * Catchy introduction and so on
  22. * Highlights is a great thing
  23. * Split:
  24. Further refactoring into smaller functions
  25. What is otos?
  26. Parts is a bad naming convention
  27.  
  28.  
  29.  
  30. ## Attila Kezer
  31. * What is a tkinter library? whn you mention a library explain it
  32. * Where does the label and entry functions come from?
  33. * l1, t1 definitely not good naming conventions to show on a demo
  34. * b1
  35.  
  36. ## Peter Keler
  37. * ++ For speaking about fractals and recursion
  38. * Very Big code example and you should have tried to refactor it further
  39. * why do you need the else on the recursion,
  40. * The rectangle line of code does so many responsibilities
  41. * Very cheerful, good voice tune it was really good
  42.  
  43. ## Barni Balazs
  44. * The definition slide had so much text and looked scary:D
  45. * Why do you need the else in this `draw_fractal`
  46. * Code repition
  47.  
  48. ## Zsuzsa Fulop
  49. * To speak about the "drawings"?
  50. * Code repetition, why else?
  51. * Monotune
  52.  
  53. ## Zagon Kristof
  54. * + for talking about challenges
  55. * Interactive asking questions
  56. * joking, great way of explaining the thought process
  57. * good mentioning what's a horrible code, good explaining what is a variable
  58. * start with blacks?
  59.  
  60. ## Tania Faklijer
  61. * Usual girls problem? (SW engineers prefers pc)
  62. * Starting from scratch, draw on paper, think outside the syntax
  63.  
  64.  
  65. ## Andras Krausz:
  66. * Presentation Fluency, You stop and waste so much with details.
  67. I told you last time, live demoing is not easy
  68. * first level, second level are definitely not descriptive names
  69. * Demo was not so readable, terminal was black and small
  70.  
  71. ## Istvan:
  72. * line_play? line_play_double?
  73. * it was good story to share your learning
  74. * I don't know if in python this mass assignment is a neat way
  75. * It was smart but not sure about readability
  76.  
  77. ## Zoltan Makadi:
  78. * Low voice tune and lack of confidence
  79. * The code format looked weird
  80. * You kept the dark background
  81. * Why the else?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement