This file has been truncated, but you can view the full file.
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
curl --location --request POST 'https://hrv.healyworld.net' \ | |
--header 'x-api-key: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiJ9.eyJkcml2ZUlkIjoxMDA0ODQsInVybCI6Ind3dy50ZXJyYWRyaXZlOC5kZS9hcGkyMCIsImtleSI6ImM1ZGIzNGUwYjk3Y2ViNWM5NjU0NDlhMzU0MzE4OTAyIiwiZXhwIjoxNjQ3MTAzNjc1fQ.vd8QJmUOafNWgPKR1o-eiHP8TralIaxcZ1hiBRIX3YYoSq4wRySAu4ApLh5LxlfH9dmiTVCVtsSAzQG6IiVnUw' \ | |
--header 'Content-Type: application/json' \ | |
--data-raw '{ | |
"ecg": [ | |
2531, | |
2387, | |
2278, | |
2187, | |
2051, |
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
import 'package:flutter/cupertino.dart'; | |
import 'package:flutter/material.dart'; | |
final GlobalKey<NavigatorState> overviewTabKey = GlobalKey<NavigatorState>(); | |
final GlobalKey<NavigatorState> searchTabKey = GlobalKey<NavigatorState>(); | |
final GlobalKey<NavigatorState> favoriteTabKey = GlobalKey<NavigatorState>(); | |
final GlobalKey<NavigatorState> profileTabKey = GlobalKey<NavigatorState>(); | |
void main() { | |
runApp(MyApp()); |
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
import 'package:flutter/cupertino.dart'; | |
import 'package:flutter/material.dart'; | |
final GlobalKey<NavigatorState> overviewTabKey = GlobalKey<NavigatorState>(); | |
final GlobalKey<NavigatorState> searchTabKey = GlobalKey<NavigatorState>(); | |
final GlobalKey<NavigatorState> favoriteTabKey = GlobalKey<NavigatorState>(); | |
final GlobalKey<NavigatorState> profileTabKey = GlobalKey<NavigatorState>(); | |
void main() { | |
runApp(MyApp()); |
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
class Plan { | |
final String objectId; | |
final String name; | |
final String text; | |
final DateTime startedAt; | |
final DateTime endedAt; | |
final String createdAt; | |
Plan( | |
{this.objectId, |
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
// Cloud Function to delete one ore more User object | |
// | |
// { | |
// "objectIds": ["mmspeGP9Ke"] | |
// } | |
// | |
// | |
Parse.Cloud.define('deleteUser', function(request, response) { | |
request.log.info('CloudFunction deleteUser : called params - ' + JSON.stringify(request.params)); | |
request.log.info('CloudFunction deleteUser : called user - ' + JSON.stringify(request.user)); |
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
class AdvertisementType(models.Model): | |
name = models.CharField(max_length=255, blank=False, null=False, verbose_name='Name') # name of feature | |
created = models.DateField(auto_now=True) # created date | |
def __unicode__(self): | |
return u'{0} - {1}'.format(self.id, self.name) | |
class Accommodation(models.Model): | |
name = models.CharField(max_length=255, blank=False, null=False, verbose_name='Name') # name of the accommodation | |
description = models.TextField(blank=True, null=True, verbose_name='Allgemeine Beschreibung') # classification of object like '3 Stars' |
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
/* | |
* Copyright (c) 2015 Alexander Buder . All Rights Reserved. | |
* | |
* Use of this source code is governed by a BSD-style license | |
* that can be found in the LICENSE file in the root of the source | |
* tree. | |
*/ | |
var wamp_session = null; | |
var peer_connection= null; |
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
type Exception report | |
message Servlet.init() for servlet estructor threw exception | |
description The server encountered an internal error that prevented it from fulfilling this request. | |
exception | |
javax.servlet.ServletException: Servlet.init() for servlet estructor threw exception | |
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:501) |
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
RestangularProvider.setBaseUrl("/web"); | |
RestangularProvider.setListTypeIsArray(false); | |
RestangularProvider.setResponseExtractor(function(response, operation, what, url) { | |
var rootScope = angular.element(document).injector().get('$rootScope'); | |
rootScope.$emit('UNLOAD'); | |
if (operation === "getList") { | |
console.log('RestAngular: getList'); |
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
Die Rest Api sollte 'todo' Objekte ausliefern, erzeugen und ändern. Ein 'todo' Objekt hat folgende Struktur.```` | |
{ | |
'id': int | long | text | |
'name': text, | |
'done': false | true, | |
'created' long | |
} | |
NewerOlder