- Code retreat structure  to follow:
- 6 sessions
- 45 mins coding + 5 min retro
- Final retro at the end
 
- Introduction:
- Open question: "What is good code? " -> quick discussion, people will end up mentioning 4 rules of sinle design
- mention 4 rules of simple design
 
  
    
      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
    
  
  
    
  | alias gs='git status ' | |
| alias ga='git add ' | |
| alias gb='git branch ' | |
| alias gc='git commit' | |
| alias gd='git diff' | |
| alias go='git checkout ' | |
| alias gk='gitk --all&' | |
| alias gx='gitx --all' | |
| alias got='git ' | 
  
    
      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
    
  
  
    
  | namespace :namespace1 do | |
| desc "task1" | |
| task :task1 do | |
| puts "task1 in namespace1" | |
| end | |
| desc "task2" | |
| task :task2 do | |
| puts "task2 in namespace1" | |
| end | 
  
    
      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
    
  
  
    
  | name := "Name goes here" | |
| version := "0.0.1" | |
| libraryDependencies += "org.scalatest" % "scalatest_2.10" % "2.0" % "test" | 
  
    
      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
    
  
  
    
  | # START http://boxstarter.org/package/nr/url? | |
| Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
| Enable-RemoteDesktop | |
| cinst GoogleChrome | |
| cinst sublimetext2 | |
| cinst spotify | |
| cinst skype | |
| cinst NugetPackageExplorer | 
  
    
      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
    
  
  
    
  | alias gs='git status ' | |
| alias ga='git add ' | |
| alias gb='git branch ' | |
| alias gc='git commit' | |
| alias gd='git diff' | |
| alias go='git checkout ' | |
| alias gk='gitk --all&' | |
| alias gx='gitx --all' | |
| alias gitext='gitextensions &' | 
  
    
      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
    
  
  
    
  | using Moq; | |
| using Ploeh.AutoFixture; | |
| using Ploeh.AutoFixture.AutoMoq; | |
| using Xunit; | |
| namespace Autofixture | |
| { | |
| public class Tests | |
| { | 
  
    
      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
    
  
  
    
  | class Program | |
| { | |
| public static void Main(string[] args) | |
| { | |
| Console.WriteLine("What's your name?"); | |
| var name = Console.ReadLine(); | |
| Console.WriteLine(string.Format("Hello {0}!!", name)); | |
| } | |
| [Test] | 
  
    
      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
    
  
  
    
  | Mentoring [Find mentors] | |
| ========= | |
| Format | |
| ------- | |
| - Set goal - define successful mentorship | |
| - Set frenquency and duration | |
| - Set Clear deadline? | |
| - Set Milestones | |
| - Mentee to set agenda before each meeting | 
  
    
      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
    
  
  
    
  | fibo 0 = 0 | |
| fibo 1 = 1 | |
| fibo x = fibo(x-1) + fibo(x-2) | |
| allFibos 0 = [fibo 0] | |
| allFibos x = allFibos(x-1) ++ [fibo x] | |
| fibo :: Int -> Int | 
OlderNewer