esp-rs | idf | notes |
---|---|---|
spi::Instance::init_half_duplex(...) | spi_setup_device | |
hw->dma_int_raw.trans_done = 0 | ||
HAL_ASSERT(spi_ll_get_running_cmd(hw) == 0) | when assertions are off, this still appears to load the hw->cmd.val register, it just ignores the result | |
spi::Instance::init_spi_data_mode | spi_ll_master_set_line_mode | |
cmd, address setup |
This file contains 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
diff --git a/VRMLLoader.js b/VRMLLoader.js | |
index fc5098a..a6b5ec7 100644 | |
--- a/VRMLLoader.js | |
+++ b/VRMLLoader.js | |
@@ -82,6 +82,7 @@ class VRMLLoader extends Loader { | |
parse( data, path ) { | |
+ const loader = this; | |
const nodeMap = {}; |
This file contains 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 <fesvr/context.h> | |
#include <cstdio> | |
context_t top; | |
context_t initial; | |
context_t always; | |
context_t bottom; | |
context_t *ret; | |
context_t *target; |
This file contains 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
/* firewall included for completeness; I'd also be comfortable segmenting out any device that I couldn't demonstrate had its own independent firewall (with one exception, below) */ | |
firewall { | |
all-ping enable | |
broadcast-ping disable | |
ipv6-name internet6-in { | |
default-action drop | |
enable-default-log | |
rule 10 { | |
action accept | |
description "Allow established connections" |
This file contains 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
package main | |
import ( | |
"context" | |
"errors" | |
"fmt" | |
"io" | |
"log" | |
"net/http" | |
"os" |
This file contains 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
# This file is automatically @generated by Cargo. | |
# It is not intended for manual editing. | |
version = 3 | |
[[package]] | |
name = "aho-corasick" | |
version = "0.7.20" | |
source = "registry+https://github.com/rust-lang/crates.io-index" | |
checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" | |
dependencies = [ |
When trying to use the default "duplicate line up/down" key bindings on Linux under GNOME (Manjaro), the input event wasn't making it all the way to VSCode.
Eventually, I found a discussion that suggested removing the bindings via dconf-editor[0], and that worked. These are the equvialent dconf
command-line invocations:
dconf write /org/gnome/desktop/wm/keybindings/move-to-workspace-up '@as []'
dconf write /org/gnome/desktop/wm/keybindings/move-to-workspace-down '@as []'
These can be restored to the default with: