- Kenneth Geisshirt - Unleashing your inner Console Cowboy - Slides
- Hack Day - Hacking Cloud Kit and iOS 8 extensions - Slides
- Mike Ash - Swift and C - Playground
| // | |
| // SkiResortTableRowController.swift | |
| // XebiaSki | |
| // | |
| // Created by Simone Civetta on 28/11/14. | |
| // Copyright (c) 2014 Xebia IT Architechts. All rights reserved. | |
| // | |
| import WatchKit | |
| import XebiaSkiFramework |
| // | |
| // PhotoDownloadManager.swift | |
| // XebiaSki | |
| // | |
| // Created by Simone Civetta on 11/11/14. | |
| // Copyright (c) 2014 Xebia IT Architechts. All rights reserved. | |
| // | |
| import UIKit |
| #!/bin/sh | |
| # Kill simulator if running | |
| killall -s "iPhone Simulator" &> /dev/null | |
| if [ $? -eq 0 ]; then | |
| killall -m -KILL "iPhone Simulator" | |
| fi | |
| # Remove Springboard daemon which may be pending | |
| launchctl remove 'com.apple.iPhoneSimulator:com.apple.SpringBoard' &> /dev/null |
| // | |
| // XBImageGalleryLayout.m | |
| // | |
| // Created by Simone Civetta on 4/24/13. | |
| // Copyright (c) 2013 Xebia IT Architects. All rights reserved. | |
| // | |
| #import "XBImageGalleryLayout.h" | |
| #import <UICollectionView/UICollectionView.h> |
| App.recentUsersController = Em.ArrayController.create({ | |
| content: [], | |
| addUser: function(name) { | |
| if ( this.contains(name) ) { | |
| this.removeObject(name); | |
| } | |
| this.pushObject(name); | |
| }, | |
| removeUser: function(event){ | |
| this.removeObject(event.context); |