A data-package is a dcat:dataset
.
Aligned with DCAT-AP.
{
"@type": "dcat:dataset",
"name": {
},
"id": {
A data-package is a dcat:dataset
.
Aligned with DCAT-AP.
{
"@type": "dcat:dataset",
"name": {
},
"id": {
Install and setup Ubuntu at a new Lenovo ThinkPad P14s Gen 3 with NVIDIA T550.
Lenovo is certified for Ubuntu
Lenovo provides a short document how to install Ubuntu 20.04
Update firmware
Schritt 1: Finden des Normdatensatz der Proceedings-Reihe z.B. PPN 669696374 für CEUR-WS.
Die Verknüpften Publikationen sind im OPAC unter related publications aufrufbar.
Schritt 2: SRU-Abfrage der verknüpften Publikationen
Wie in der K10plus-SRU-Dokumentation beschrieben setzt sich die entsprechende CQL-Query aus drei Teilen zusammen:
Most important conflicting difference between JSONPath and SQL/JSON path is $.["name"]
vs $."name"
and $[? filter ]
vs $?(filter)
.
Other JSON query languages
Two years ago a experimented with a data language for Wikibase. Maybe using KDL as syntax is a better approach.
# simple statement
Q4115189 P31=Q1 # KDL property
Q4115189 P31 Q1 # two KDL arguments
# multiple stataments on same item
This is a quick draft of a data format specification to encode annotated character data to support overlapping markup, also known as standoff markup.
Everything is subject to discussion
#/bin/bash | |
# Directly install Raspberry OS to SD card | |
IMAGE=https://downloads.raspberrypi.org/raspios_full_armhf/images/raspios_full_armhf-2020-12-04/2020-12-02-raspios-buster-armhf-full.zip | |
DEV=/dev/sdd | |
curl -o - $IMAGE | zcat | sudo dd bs=4M of=$DEV conv=fsync | |
# as one-liner | |
IMAGE=... DEV=/dev/sdd bash -c 'curl -o - $IMAGE | zcat | sudo dd bs=4M of=$DEV conv=fsync' |
Minecraft Pi Edition (mcpi) ist eine kostenlose Version von Minecraft, die speziell für den Raspberry Pi herausgegeben wurde. Sie basiert auf der Bedrock Version 0.6.0 aus dem Januar 2013, ist also schon etwas älter. Das Spiel bietet standardmäßig nur den Kreativmodus mit einer eingeschränkten Karte, kann allerdings programmiert werden.
Es gibt einige Anleitungen und Beispiele, die meisten davon allerdings schon etwas älter.
An external webcam is a video (and possibly audio) source that isn't build into the local computer or connected to it via USB.
On Android Start DroidCam and get the webcam URL.
/* PICA Plain parser in JavaScript */ | |
const pp=s=>s.split(/\n/) | |
.map(l=>l.match(/^([012][0-9][0-9][A-Z@])(\/([0-9]{2,3}))?\s*(\$([A-Za-z0-9]).+)+/) | |
.filter(m=>m) | |
.map(m=>[m[0],m[2],...m[3].split(/\$([A-Za-z0-9])/).slice(1).map(s=>s.replace(/\$\$/g,'$'))]) |