Skip to content

Instantly share code, notes, and snippets.

View philipphager's full-sized avatar

Philipp Hager philipphager

View GitHub Profile
We can't make this file beautiful and searchable because it's too large.
-0.2565920948982239 -0.23162657022476196 -0.32010871171951294 -0.044813934713602066 -0.17666055262088776 -0.46567362546920776 -0.10305771231651306 -0.283006489276886 0.18145105242729187 -0.20418845117092133 -0.39315247535705566 0.17549411952495575 -0.299421489238739 0.25821229815483093 0.08510322123765945 -0.4288938641548157 0.17732606828212738 -0.08473576605319977 0.07192555069923401 0.2844376266002655 -0.33953890204429626 0.13467112183570862 0.15844862163066864 0.5566718578338623 0.14930282533168793 -0.08448687195777893 -0.3237502872943878 -0.05345028638839722 0.09889501333236694 -0.4275214374065399 0.060086462646722794 0.1460605412721634 -0.18268966674804688 -0.6222821474075317 0.260347455739975 -0.14236381649971008 0.3405199646949768 0.2262057214975357 -0.056046318262815475 -0.03913075104355812 0.1489534080028534 -0.3680129945278168 -0.08402061462402344 -0.42124366760253906 -0.11526351422071457 0.06546539068222046 -0.21604260802268982 0.40399619936943054 0.18332044780254364 0.27995696663856506 0.134080365
<!DOCTYPE html>
<html>
<head>
<title>Terms & Conditions</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
Für die Erstellung Ihrer individuellen Datenschutzerklärung benötigen wir noch Ihre Elemente auf der Webseite<strong>Die Kontaktdaten des Unternehmens: </strong><p class="cf-configurator-username">Name: Philipp Hager</p><p class="cf-configurator-phone">Telefonnummer (optional): +4917643428801</p><p class="cf-configurator-mail">E-Mail Adresse: [email protected]</p><p class="cf-configurator-company">Unternehmensbezeichnung: </p><strong>Die Kontaktdaten des Datenschutzbeauftragten: </strong><p class="cf-configurator-username">Name: Philipp Hager</p><p class="cf-configurator-phone">Telefonnummer (optional): </p><p class="cf-configurator-mail">E-Mail Adresse: [email protected]</p><p class="cf-configurator-company">Unternehmensbezeichnung: </p><strong>Datenschutzerklärung</strong>
<p>
Sie erhalten als Nutzer unserer Internetse
@philipphager
philipphager / A.java
Last active May 2, 2017 21:21
Delighting Leandro
@AutoValue public abstract class A implements AModel {
/**
* SQLDelight Factories contain all SQL statement that were defined in the
* corresponding A.sq file in form of a SQLDelightStatement.
+ They are a sort of prepared statement,
* that contain the actual SQL string and provide type safe mappings.
* A usage of the SQLDelightStatement is demonstrated in Repository.java.
* The Factory also provides mapper, that map a row inside a cursor result
* to a Java model.
* Therefore the Factory's constructor takes a creator, that knows how to build
@AutoValue public abstract class LibraryInfo implements Library.SelectByWithAppCountModel {
public static final RowMapper<LibraryInfo> MAPPER =
new LibraryModel.SelectWithAppCountMapper<>(LibraryInfo::create);
public static LibraryInfo create(String id, String title, long appCount) {
return new AutoValue_LibraryInfo(id, title, appCount);
}
}
@philipphager
philipphager / plant-a-lot demo peripheral
Created December 23, 2016 11:07
Demo implementation of a plant-a-lot peripheral according to the peripheral sepcs using Arduino CurieBLE
/**
Exemplary implementation of a plant-a-lot peripheral according to the
plant-a-lot peripheral sepcification using Arduino CurieBLE.
Peripheral specification: https://github.com/philipphager/plant-a-lot-peripheral
Official Genuino 101 docs: https://www.arduino.cc/en/Guide/Arduino101
Official CurieBLE docs: https://www.arduino.cc/en/Reference/CurieBLE
*/
#include <CurieBLE.h>