| Protocol | Description |
|---|---|
| VRRP | The Virtual Router Redundancy Protocol (VRRP) is a computer networking protocol that provides for automatic assignment of available Internet Protocol (IP) routers to participating hosts. This increases the availability and reliability of routing paths via automatic default gateway selections on an IP subnetwork. |
| GVRP | Multiple Registration Protocol (MRP), which replaced Generic Attribute Registration Protocol (GARP), is a generic registration framework defined by the IEEE 802.1ak amendment to the IEEE 802.1Q standard. MRP allows bridges, switches or other similar devices to be able to register and de-register attribute values, such as VLAN identifiers and multicast group membership across a large LAN. MRP operates at the Data Link Layer. |
| EAPS | Ethernet Automatic Protection Switching (EAPS) is used to create a fault tolerant topology by configuring a primary and secondary path for each VLAN. |
| ERPS | Ethernet Ring Protectio |
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
| // Variables used by Scriptable. | |
| // These must be at the very top of the file. Do not edit. | |
| // icon-color: blue; icon-glyph: user-md; | |
| const apiKey = "" | |
| const widget = new ListWidget() | |
| widget.addSpacer() | |
| // Fetch SSI website code |
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
| Found the answer to getting copy/paste working in Windows 10 KVM here: | |
| http://blogs.nologin.es/rickyepoderi/index.php?/archives/87-Copy-n-Paste-in-KVM.html | |
| Solution was to run installer in this ISO (do not have url, sorry, I think Google can find it) | |
| virtio-win-0.1.126.iso | |
| Download latest spice tools from here: https://www.spice-space.org/download/binaries/spice-guest-tools/ and install it. |
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
| const ethGasStationApiUrl = `https://ethgasstation.info/api/ethgasAPI.json`; | |
| const req = new Request(ethGasStationApiUrl); | |
| const res = await req.loadJSON(); | |
| if (config.runsInWidget) { | |
| const widget = new ListWidget(); | |
| const title = widget.addText("Gas Prices"); | |
| title.textColor = Color.white(); | |
| title.textOpacity = 0.8; |
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
| // Lizenz: AGES Dashboard COVID19 AT | |
| // 3-stellige GKZ verwenden (zweite Spalte in https://covid19-dashboard.ages.at/data/CovidFaelle_GKZ.csv). | |
| // Widget Parameter: "204,KFL;312;706" für Klagenfurt Land (angezeigt als KFL), Korneuburg und Landeck | |
| // | |
| // Basiert auf der deutschen Variante von | |
| // - kevinkub https://gist.github.com/kevinkub/46caebfebc7e26be63403a7f0587f664 | |
| // - Baumchen https://gist.github.com/Baumchen/6d91df0a4c76c45b15576db0632e4329 | |
| // | |
| // Angaben ohne Gewähr. |
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
| # modified from https://github.com/tidyverse/ggplot2/blob/master/R/stat-boxplot.r | |
| # now takes qs argument instead of coef to extend the whiskers to a specific | |
| # percentile | |
| library(ggplot2) | |
| stat_boxplot_custom <- function(mapping = NULL, data = NULL, | |
| geom = "boxplot", position = "dodge", | |
| ..., | |
| qs = c(.05, .25, 0.5, 0.75, 0.95), |
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
| # apt-get install | |
| sudo apt-get update | |
| # For ubuntu 14.04 | |
| sudo apt-get install -y xserver-xorg-video-dummy-lts-trusty | |
| # For ubuntu 16.04 | |
| sudo apt-get install -y xserver-xorg-video-dummy-lts-willy | |
| # Copy the xorg.conf to `/etc/X11/xorg.conf`. | |
| wget -P /etc/X11 https://gist.githubusercontent.com/mangoliou/ba126832f2fb8f86cc5b956355346038/raw/b6ad063711226fdd6413189ad905943750d64fd8/xorg.conf |
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
| // Variables used by Scriptable. | |
| // These must be at the very top of the file. Do not edit. | |
| // icon-color: deep-green; icon-glyph: cloud-upload-alt; | |
| /******************************************* | |
| * * | |
| * ____ _ _ * | |
| * | _ \ | | | | * | |
| * | |_) | ___| |_| |_ ___ _ __ * | |
| * | _ < / _ \ __| __/ _ \ '__| * | |
| * _____| |_) | __/ |_| || __/ | _ * |
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
| skinparam Activity { | |
| ArrowColor | |
| ArrowFontColor | |
| ArrowFontName | |
| ArrowFontSize | |
| ArrowFontStyle | |
| BackgroundColor | |
| BarColor | |
| BorderColor | |
| BorderThickness |
-
Download OpenOCD.
-
Place the folder in
~/openocd- so that thescriptsis directly under~/openocd/scripts. -
Add it to your PATH via:
ln -s ~/openocd/bin/openocd /usr/local/bin/openocd
-
Make sure no applications are bound to port 3333.
-
Place
launch.jsonandtasks.jsonin your.vscodefolder.
Note: Set the right path in debugServerArgs.
OlderNewer