- What have you done differently this week? (descriptive)
- What did you learn? (reflective)
- What has gone wrong? (we don’t take “nothing” for an answer, something always goes wrong.)
This file contains 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
#!/bin/bash | |
while true; do | |
clear | |
date | |
$* | |
sleep 2 | |
done |
This file contains 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
package bowls; | |
import java.util.List; | |
import java.util.function.Predicate; | |
import java.util.stream.Collectors; | |
import java.util.stream.IntStream; | |
import java.util.stream.Stream; | |
public class BowlingStreams { |
This file contains 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
================================================================================ | |
["1871-72", "1872-73", "1873-74"] Wanderers 4 | |
["1872-73", "1873-74", "1874-75"] Wanderers 2 | |
["1873-74", "1874-75", "1875-76"] Oxford University 2 | |
["1874-75", "1875-76", "1876-77"] Wanderers 4 | |
["1875-76", "1876-77", "1877-78"] Wanderers 6 | |
["1876-77", "1877-78", "1878-79"] Wanderers 4 | |
["1877-78", "1878-79", "1879-80"] Wanderers 2 | |
["1878-79", "1879-80", "1880-81"] Old Etonians 2 | |
["1879-80", "1880-81", "1881-82"] Clapham Rovers 2 |
This file contains 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
European cup: 5 | |
league: 4 | |
other euro (uefa/cup winners cup): 3 | |
fa cup: 2 | |
league cup: 1 | |
other win (uefa super cup/club world cup): 1 | |
european cup runner up: 2 | |
league runner up: 1 |
This file contains 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
function urnfield { | |
Param([Parameter(Mandatory = $True)] $amount) | |
$ones = $amount % 5 | |
$fives = [math]::floor($amount / 5) | |
'/' * $ones + '\' * $fives | |
} | |
It 'handles numbers less than 5' { | |
urnfield 1 | Should -Be '/' | |
urnfield 2 | Should -Be '//' |
This file contains 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
Video: https://www.youtube.com/watch?v=1Yq_yehKReo | |
https://www.nhs.uk/live-well/exercise/lower-back-pain-exercises/ | |
https://www.youtube.com/watch?v=20zybMbnVoU | |
Bottom to heels stretch: | |
https://www.youtube.com/watch?v=20VUKqEyRiA | |
Knee Rolling: |
It's a team game
Flow is the only important thing
Context matters
TDD and CI are hygiene matters
Ignore everything from the valley
This file contains 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
DECLARE SUB GOTO_60() | |
DECLARE SUB GOTO_240() | |
DECLARE SUB GOTO_350() | |
DECLARE SUB GOTO_360() | |
DECLARE SUB GOTO_380() | |
DECLARE SUB GOTO_400() | |
DECLARE SUB GOTO_420() | |
DECLARE SUB GOTO_470() | |
DECLARE SUB GOTO_520() |
Bias: https://hbr.org/2017/06/7-practical-ways-to-reduce-bias-in-your-hiring-process
Make the tech test relevant to your biz: https://geektastic.com/coding-tests-for-interviews example: https://github.com/justeat/JustEat.RecruitmentTest
Code tests should all fulfil the following:
- Open for creative interpretation,
- Marked by a human