- Opening - Laser Intro 1 Laster Intro 2
- Robert Lemke - Keynote
- Christian Müller - Neos 101
- Sebastian Kurfürst - A Head Start Into TypoScript 2.0
- Martin Helmich - Bringing the Elephant up to speed - Running TYPO3 Flow on HipHop VM
- Tim Numan/Jesper Paardekooper - How Flow helps us save the world
- Henrik Møller Rasmussen - Domain Event - the hidden gem of DDD
- Karsten Dambekalns - [Migrating from TYPO3
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
angular.module('app', []) | |
.factory('FakeAmazonService', function($http, $q) { | |
return { | |
validateShippingAdddress: function(address) { | |
var deferred = $q.defer(); | |
$http.post('/api/address/validate', address) | |
.then(function(resp) { | |
deferred.resolve({ success: true, data: resp}); | |
}), | |
function(error) { |
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
sudo apt-get update | |
sudo apt-get install -y libssl1.0.0 openssl | |
# Confirm Build Date is at least Aril 7th 2014 | |
openssl version -a | |
# Restart all services listed by this command: | |
sudo lsof -n | grep ssl | grep DEL |