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
{ | |
"config": { | |
"view": {"continuousWidth": 400, "continuousHeight": 300, "opacity": 0} | |
}, | |
"vconcat": [ | |
{ | |
"data": {"name": "data-9a3bc27729824677a04f57dcb5a098d3"}, | |
"facet": {"type": "nominal", "field": "speaker", "title": null}, | |
"spec": { | |
"layer": [ |
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
// /etc/openhab2/sitemap/atlas2006.sitemap | |
sitemap atlas2006 label="Atlas 2006" { | |
Frame { | |
Switch item=Atlas2006_Presence label="Presence" icon="presence" | |
} | |
Frame label="Living Room" { | |
Text item=Atlas2006_HVAC_RoomTemperature_Living_eTCH label="Temperature [%.1f °C]" icon="feels_like_temperature" | |
Setpoint item=Atlas2006_HVAC_Setpoint_Living label="Setpoint [%.1f °C]" icon="setpoint" minValue=18 maxValue=26 step=0.5 | |
Switch item=Atlas2006_HVAC_RunStatus_Living label="HVAC" icon="switch" |
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
#!/usr/bin/python3 -u | |
import argparse | |
argument_parser = argparse.ArgumentParser('Run the HVAC BAC0 server') | |
argument_parser.add_argument('--local-address', help='local IP address to bind to', required=True) | |
argument_parser.add_argument('--local-port', help='UDP port to bind to') | |
argument_parser.add_argument('--bbmd-address', help='IP:port of the BACnet BBMD to register against, if any') | |
argument_parser.add_argument('--bbmd-ttl', help='TTL of the BACnet foreign device registration, in seconds', type=int) | |
argument_parser.add_argument('--bacnet-network', help='BACnet network to discover devices on; can be specified multiple times', type=int, action='append', required=True) | |
argument_parser.add_argument('--prometheus-port', help='Serve Prometheus metrics on this port', type=int) |
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
<BFR> | |
<!-- Example configuration for a BACnet/Ethernet <-> BACnet/IP router --> | |
<!-- Note: this config has a number of Debug statements to make troubleshooting easier. In production use you'll likely want to remove them. --> | |
<!-- Replace "eth0" with the name of the network interface that is attached to the BACnet/Ethernet network. --> | |
<Ethernet server="hvac-eth" device="eth0" /> | |
<Debug server="hvac-eth-debug" client="hvac-eth" prefix="hvac-eth" /> | |
<!-- Replace "192.168.1.2" with the IP address of your machine. --> | |
<!-- Make sure to use the correct subnet length, otherwise broadcasts won't work. --> |
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
[ 0.000000] microcode: microcode updated early to revision 0x2d, date = 2018-02-07 | |
[ 0.000000] Linux version 4.17.0-1-amd64 ([email protected]) (gcc version 7.3.0 (Debian 7.3.0-26)) #1 SMP Debian 4.17.8-1 (2018-07-20) | |
[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-4.17.0-1-amd64 root=ZFS=zyklos/durable/system ro boot=zfs zfs_force=1 panic=3600 consoleblank=0 root=ZFS=zyklos/durable/system | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' | |
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 | |
[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. | |
[ 0.000000] e820: BIOS-provided physical RAM map: | |
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable |
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
{ | |
"ActTime": 1507990266, | |
"ServerTime": "2017-10-14 15:11:06", | |
"Sunrise": "07:24", | |
"Sunset": "18:08", | |
"result": [ | |
{ | |
"AddjMulti": 1, | |
"AddjMulti2": 1, | |
"AddjValue": 0, |
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
grub-probe: info: cannot open `/boot/grub/device.map': No such file or directory. | |
grub-probe: info: /dev/sdd1 is not present. | |
grub-probe: info: Looking for /dev/sdd1. | |
grub-probe: info: /dev/sdd is a parent of /dev/sdd1. | |
grub-probe: info: /dev/sdd1 starts from 2048. | |
grub-probe: info: opening the device hostdisk//dev/sdd. | |
grub-core/kern/disk.c:196: Opening `hostdisk//dev/sdd'... | |
grub-probe: info: drive = 0. | |
grub-probe: info: the size of hostdisk//dev/sdd is 5860533168. | |
grub-core/kern/disk.c:196: Opening `hostdisk//dev/sdd'... |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <Windows.h> | |
#include "tap-windows.h" | |
static void winerror(const char* message) | |
{ | |
int err = GetLastError(); | |
fprintf(stderr, "%s: (%d) ", message, err); |
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
FSTYP -- zfs | |
PLATFORM -- Linux/x86_64 zyklos 3.11-1-amd64 | |
MKFS_OPTIONS -- -f -O mountpoint=legacy /dev/sdi2 | |
MOUNT_OPTIONS -- /dev/sdi2 /scratch | |
generic/001 2s ... 2s | |
generic/002 0s ... 0s | |
generic/005 1s ... 0s | |
generic/006 1s ... 0s | |
generic/007 1s ... 1s |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdint.h> | |
#include <sys/mman.h> | |
#include <sys/types.h> | |
#include <sys/stat.h> | |
#include <sys/time.h> | |
#include <fcntl.h> | |
#include <unistd.h> |
NewerOlder