#Hardware#
Generic 2.4GHz radio. Not 802.11, no real framing or protocol. Useful strictly for nRF->nRF communication, although you can read semi-reliably with a decent SDR.
Note these are as cheap as a buck a pop in quanity:
| #!/bin/bash | |
| TOP=$(dirname $(readlink -f $0)) | |
| declare -A pids | |
| pids[at90usb1287]=2ffb | |
| pids[at90usb1286]=2ffb | |
| pids[at90usb647]=2ff9 | |
| pids[at90usb646]=2ff9 |
#Hardware#
Generic 2.4GHz radio. Not 802.11, no real framing or protocol. Useful strictly for nRF->nRF communication, although you can read semi-reliably with a decent SDR.
Note these are as cheap as a buck a pop in quanity:
| #include <stddef.h> | |
| #include <stdio.h> | |
| #include <fcntl.h> | |
| #include <stdlib.h> | |
| #include <stdint.h> | |
| #pragma pack(1) | |
| typedef struct t_ext_sb { | |
| uint32_t s_inodes_count; | |
| uint32_t s_blocks_count; |
| rpedde@hafnium:~$ xrandr | |
| Screen 0: minimum 8 x 8, current 5120 x 1440, maximum 16384 x 16384 | |
| DVI-I-0 disconnected (normal left inverted right x axis y axis) | |
| DVI-I-1 connected primary 2560x1440+0+0 (normal left inverted right x axis y axis) 596mm x 335mm | |
| 2560x1440 59.95*+ | |
| 1920x1080 60.00 | |
| 1680x1050 59.95 | |
| 1600x900 60.00 | |
| 1280x1024 75.02 60.02 | |
| 1280x800 59.81 |
| #!/usr/bin/env python | |
| import requests | |
| import json | |
| import sys | |
| import os | |
| def get_url_and_token(): | |
| user = os.getenv('ST_USER', None) | |
| auth = os.getenv('ST_AUTH', None) |
| [ | |
| { | |
| "name" : "watermark", | |
| "exec" : { | |
| "path": "swift://AUTH_f6d34e39-ae2b-4d29-96f6-c35d70d8a4ca/watermark/watermark" | |
| }, | |
| "file_list" : [ | |
| {"device": "stdin", | |
| "path": "swift://AUTH_f6d34e39-ae2b-4d29-96f6-c35d70d8a4ca/watermark/space.jpg"}, | |
| {"device": "stdout", |
Currently, OpenStack Havana does not have built-in support for highly availabile virtual routers or DHCP services. In the existing Havana release, virtual routers and DHCP services are scheduled to a single Quantum network node, and are not rescheduled on network node failure.
Since virtual router and DHCP services are normally scheduled
| #!/bin/bash | |
| _ubernova() { | |
| local cur=${COMP_WORDS[COMP_CWORD]} | |
| COMPREPLY=( $(compgen -W "$(pushd ${HOME}/.ubernova > /dev/null 2>&1; ls *; popd > /dev/null 2>&1)" -- $cur) ) | |
| } | |
| ubernova() { | |
| local env=${1} |
| #!/bin/bash | |
| _uberosc() { | |
| local cur=${COMP_WORDS[COMP_CWORD]} | |
| COMPREPLY=( $(compgen -W "$(pushd ${HOME}/.osc > /dev/null 2>&1; ls *; popd > /dev/null 2>&1)" -- $cur) ) | |
| } | |
| uberosc() { | |
| local env=${1} |