title | tags | description |
---|---|---|
hslu 2020.3 |
presentations |
View with "Slide Mode". |
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
Liebe Nachbarinnen und Nachbarn | |
Gerne bieten wir Ihnen während der derzeitigen Coronavirus-Pandemie unsere Unterstützung an. | |
Wir sind nicht krank und gehören nicht zur Risikogruppe. Wir können Ihnen unter anderem folgende Hilfeleistungen anbieten: | |
- Einkauf (z.B. Migros, Coop, Apotheke) | |
- Autofahrten | |
- Post | |
- Unterstützung bei technischen Problemen (z.B. Internet) | |
Sie erreichen uns am Besten per Telefon unter den untenstehenden Telefonnummern. Da viele von uns ab sofort von zuhause aus arbeiten (Homeoffice), sind wir mehrheitlich auch tagsüber gut erreichbar. |
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
Datestamp | Length | |
---|---|---|
04/05/2020 02:34:37 | 8915 | |
04/05/2020 03:42:26 | 3203 | |
04/05/2020 04:31:17 | 1039 | |
04/05/2020 05:41:55 | 2865 | |
04/05/2020 06:17:17 | 2355 | |
04/05/2020 06:17:36 | 318 | |
04/05/2020 06:18:45 | 379 | |
04/05/2020 06:19:13 | 1896 | |
04/05/2020 06:20:26 | 2219 |
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 url(https://fonts.googleapis.com/css2?family=Lato); | |
body, p, div, span, h1, h2, h3, h4, h5, h6 { font-family:Lato } | |
/* Show event graphic, hiding detail info on event page */ | |
.jumbotron.event-info * { display:none } | |
.jumbotron.event-info { background:url(https://blog.datalets.ch/workshops/2020/ipdet/IPDET_Hackathon-C.jpg) no-repeat center; background-size: contain; height:240px; width: 100% } | |
/* Customize the top navigation */ | |
.navbar.navbar-light { background: #f7e94a; } |
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
from django.db import models | |
from wagtail.core.fields import RichTextField | |
from wagtail.admin.edit_handlers import FieldPanel, InlinePanel | |
from wagtail.core.models import Orderable | |
from modelcluster.fields import ParentalKey | |
from modelcluster.models import ClusterableModel | |
GENDER_CHOICES = ( |
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
// ==UserScript== | |
// @name Corona-Data.ch Light edition | |
// @description This adjusts the theme of the Swiss Covid-19 data visualization by Daniel Probst | |
// @version 0.0.1 | |
// @grant GM.xmlhttpRequest | |
// @grant GM.addStyle | |
// @include https://www.corona-data.ch/* | |
// @include https://corona-data.ch/* | |
// ==/UserScript== |
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
library(SPARQL) | |
endpoint <- "https://lindas.admin.ch/query" | |
rdf_query <- " | |
PREFIX : <http://voc.zazuko.com/zack#> | |
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
PREFIX wdt: <http://www.wikidata.org/prop/direct/> | |
PREFIX gont: <https://gont.ch/> | |
SELECT DISTINCT ?Haltestelle WHERE | |
{ GRAPH <https://linked.opendata.swiss/graph/FOT/didok> { |
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
// Just getting my hands dirty with Arduino! Please don't be upset ... | |
/* Sources: | |
* | |
* https://github.com/gand417/mz2020_audio/blob/main/mz2020_audio.ino | |
* https://github.com/make-zurich/makezurich-hardware-intro/blob/master/Arduino/Neno33BleSense_CoronaAppScanner/Neno33BleSense_CoronaAppScanner.ino | |
*/ | |
#include <Adafruit_NeoPixel.h> | |
#include <ArduinoBLE.h> |