- Kenneth Geisshirt - Unleashing your inner Console Cowboy - Slides
- Hack Day - Hacking Cloud Kit and iOS 8 extensions - Slides
- Mike Ash - Swift and C - Playground
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); |
// | |
// 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> |
#!/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 |
// | |
// PhotoDownloadManager.swift | |
// XebiaSki | |
// | |
// Created by Simone Civetta on 11/11/14. | |
// Copyright (c) 2014 Xebia IT Architechts. All rights reserved. | |
// | |
import UIKit |
// | |
// SkiResortTableRowController.swift | |
// XebiaSki | |
// | |
// Created by Simone Civetta on 28/11/14. | |
// Copyright (c) 2014 Xebia IT Architechts. All rights reserved. | |
// | |
import WatchKit | |
import XebiaSkiFramework |
// | |
// InterfaceController.swift | |
// XebiaSki WatchKit Extension | |
// | |
// Created by Simone Civetta on 03/12/14. | |
// Copyright (c) 2014 Xebia IT Architechts. All rights reserved. | |
// | |
import WatchKit | |
import Foundation |
// | |
// DetailInterfaceController.swift | |
// XebiaSki | |
// | |
// Created by Simone Civetta on 02/12/14. | |
// Copyright (c) 2014 Xebia IT Architechts. All rights reserved. | |
// | |
import WatchKit | |
import XebiaSkiFramework |
// | |
// DetailInterfaceController.swift | |
// XebiaSki | |
// | |
// Created by Simone Civetta on 02/12/14. | |
// Copyright (c) 2014 Xebia IT Architechts. All rights reserved. | |
// | |
import WatchKit | |
import XebiaSkiFramework |
# Definit le bundle identifier | |
app_identifier "fr.xebia.monAppli" | |
# Definit l'Apple ID du compte associé au compte de l'appli | |
apple_id "[email protected]" |