This is a test
The following document outlines a reasonable style guide for Front-end development within VI Company. It is not meant to be prescriptive and I do not wish to impose my style preferences on other people's code. However, these guidelines do strongly encourage the use of existing, common, sensible patterns.
This is a living document and new ideas are always welcome. Please contribute.
Daniel Louwe Kooijmans - VI Company
Een versnelde groei van entry level naar junior front-end developer om uiteindelijk VI Company aan te kunnen vullen als een op zichzelf opererende front-end developer met de benodigde vaardigheden.
Veel vaardigheden worden op de werkvloer aangeleerd maar specifieke skills vergen dieper onderzoek/testen dan een reguliere klant-opdracht toelaat. Om dit tegemoet te komen zal ik door middel van zelfstudie mijn skillset uitbreiden.
# Sublime Text 2 Resource guide | |
Prettier icon: https://github.com/dmatarazzo/Sublime-Text-2-Icon | |
## Shortcuts | |
Command Palette: Shift + CMD + P | |
File switching: CMD + P (met ":" direct naar line number) |
# To-play | |
- Portal 2 | |
- The Elder Scrolls V: Skyrim (w/ graphics mods) | |
- Minecraft | |
- Team Fortress 2 | |
- Fez | |
- Mark of the Ninja | |
- Deus Ex GOTY | |
- Deus Ex: Human Revolution - Director's Cut |
# Dag 1 (low carb) | |
4 Circuits 12 reps | |
15s rust per oefening, 90s rust per circuit | |
- Reverse hyper (2s) | |
- Band pulldown | |
- Single leg bridge (2s) | |
- Standing DB shoulder press | |
- Reverse crunch | |
- 30 minuten hardlopen |
func testDismissal() { | |
let imageController = ImagePickerSheetController() | |
imageController.addAction(ImageAction(title: “Cancel”)) | |
rootViewController.presentViewController(imageController, animated: true, completion: nil) | |
tester().tapViewWithAccessibilityLabel(“Cancel”) | |
tester().waitForAbsenceOfViewWithAccessibilityIdentifier(ID) | |
} |
/*! The raw value attribute of the element. Depending on the element, the actual type can vary. */ | |
var value: AnyObject? { get } |
class AccentView: UIView { | |
var selectedLetter: String { | |
didSet { | |
accessibilityValue = selectedLetter | |
} | |
} | |
} |
class UITests: XCTestCase { | |
private var launched = false | |
let app = XCUIApplication() | |
override func setUp() { | |
super.setUp() | |
continueAfterFailure = false | |
launchIfNecessary() | |
} | |
private func launchIfNecessary() { | |
if !launched { |