Skip to content

Instantly share code, notes, and snippets.

El #SOSZ20 se cancela 😔

Logo de Startup Open Space 2020

Hola. Como recordarás, hace unas semanas anunciábamos oficialmente que el evento quedaba pospuesto a junio. Ya casi estamos y ya te imaginarás lo que viene ahora: el Startup Open Space ha sido cancelado definitivamente. 😔

El COVID-19 sigue acechando, limitando la movilidad e impactando en las situaciones personales de muchos. La situación actual no permite celebrar un evento con garantías.

La organización del SOSZ nos hemos reunido, hemos evaluado las opción de volver a posponerlo a septiembre o cancelarlo definitivamente en 2020 y hemos decidido que lo más coherente y responsable es cancelar el evento este año. La salud de todos es lo más importante.

El SOSZ20 se pospone al 13 de junio

Logo de Startup Open Space 2020

Hola,

Como sabrás estos días están siendo atípicos por la expansión del COVID-19 y las medidas que se están tomando.

{
"consumer": {
"name": "frontend"
},
"provider": {
"name": "api"
},
"interactions": [
{
"description": "get all the employees",
taxid name surname_1 surname_2 mobile_phone email iban net_salary_in_period
28813597W Olivia Rentería Matías 666555444 olivia@email.com ES2420465451579367090415 76300
37403229P Gabriel Granado Vásquez 666555443 gabrielvia@email.com ES2420465451579367090415 74514

Patrocinadores:

  • 10labs
  • centraldereservas.com
  • Cuéntica
  • Deiser
  • Localistico
  • Runroom
  • Semmantica
  • STR Sistemas
  • Telsome
// Al entrar a ver un concierto a través de su id
.controller('GigController', function($scope, $stateParams, $ionicLoading) {
gigService.retrieveAGig($stateParams.gig_id).then((gig) => {
$scope.gig = gig;
});
// Al realizar una búsqueda en el listado
$scope.search = function(){
if ($scope.searchTerm !== undefined) {
gigService.searchGigsGroupedByDay($scope.searchTerm).then(function(gigsByDay){
var gigService;
angular.module('mosica', ['ionic', 'mosica.controllers'])
.run(function($ionicPlatform, $rootScope, $http) {
$ionicPlatform.ready(function() {
//...
var httpClient = AngularHttpClient($http);
var matcher = new Matcher();
gigService = new GigService(httpClient, matcher);
//...
var AngularHttpClient = function($http){
var httpClient = new HttpClient();
httpClient.get = function (url) {
return new Promise(function (resolve, reject) {
$http.jsonp(url +'?callback=JSON_CALLBACK')
.success(function(data){
resolve({body: data});
})
.error(function(data){
reject({body: data});
beforeEach(()=> {
httpClient = new mosica.HttpClient();
matcher = new mosica.Matcher();
gigService = new mosica.GigService(httpClient, matcher);
httpClientStub = sinon.stub(httpClient, 'get').returns({
then: function(resp){
return resp({body: {response: someGigsByDay}});
}
});
class Matcher {
constructor(){
this.FROM = "ÃÀÁÄÂÈÉËÊÌÍÏÎÒÓÖÔÙÚÜÛ";
this.TO = "AAAAAEEEEIIIIOOOOUUUU";
}
hasTheTerm(text, term) {
if(text){
text = this.normalize(text.toUpperCase());
term = this.normalize(term.toUpperCase());