- Sonic Pi - code-based music creation and performance tool
- Whimsical - online whiteboards
- Clothing:
- Registrering af droneoperatører
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
| S:\private\my-repo>pipenv install -e git+https://github.com/kivy-garden/garden.git@3c6a9374e397123a483e655d818f313c8f3ee640#egg=kivy-garden | |
| Installing -e git+https://github.com/kivy-garden/garden.git@3c6a9374e397123a483e655d818f313c8f3ee640#egg=kivy-garden… | |
| [== ]… Installing... | |
| Installation Succeeded | |
| Pipfile.lock (636acf) out of date, updating to (fcc6b3)… | |
| Locking [dev-packages] dependencies… | |
| Success! | |
| Locking [packages] dependencies… | |
| Success! | |
| RESULTS: |
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
| set nocompatible | |
| set expandtab | |
| set tabstop=4 | |
| set shiftwidth=4 | |
| set smarttab | |
| set nobackup | |
| set nu! | |
| set cursorline | |
| set visualbell |
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
| CREATE OR ALTER FUNCTION dbo.CharLookup (@C AS NVARCHAR(max)) | |
| RETURNS NVARCHAR(max) | |
| BEGIN | |
| RETURN CASE | |
| WHEN @C = '00' THEN NCHAR(0x0030) | |
| WHEN @C = '01' THEN NCHAR(0x0031) | |
| WHEN @C = '02' THEN NCHAR(0x0032) | |
| WHEN @C = '03' THEN NCHAR(0x0033) | |
| WHEN @C = '04' THEN NCHAR(0x0034) | |
| WHEN @C = '05' THEN NCHAR(0x0035) |
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
| -- Fix table with wonky 4D geometries and SRID=0 | |
| ALTER TABLE krth.dagi_kommune | |
| ALTER COLUMN geom TYPE geometry(MULTIPOLYGON, 25832) | |
| USING ST_Force2D(ST_SetSRID(geom, 25832)); | |
| -- Alter geometry type on table | |
| ALTER TABLE krth.clc_dk | |
| ALTER COLUMN geom TYPE geometry(MULTIPOLYGON, 25832) USING ST_Force2D(ST_SetSRID(geom, 25832)); | |
| -- Materialized view with subset of data |
A Datastream is a collection of Observations grouped by the same ObservedProperty and Sensor. An Observation is an event performed by a Sensor that produces a result whose value is an estimate of an ObservedProperty of the FeatureOfInterest.
[ref]
The "custom format" grammar is as follows:
format = field_def [" " field_def]* ;
field_def = field_name ":" byte_index ":" type_def ;
field_name = (alpha | digit | "#" | "_")* ;
byte_index = [digit*] ;
type_def = bool_def | char_def | float_def | uint_def ;
bool_def = "bool:" ("0" | "1" | "2" | "3" | "4" | "5" | "6" | "7") ;
NewerOlder