https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching| /** | |
| * This Gist is part of a medium article - read here: | |
| * https://jamiecurnow.medium.com/using-firestore-with-typescript-65bd2a602945 | |
| */ | |
| // import firstore (obviously) | |
| import { firestore } from "firebase-admin" | |
| // Import or define your types | |
| // import { YourType } from '~/@types' |
| ; Ender 3 Custom End G-code | |
| G4 ; Wait | |
| M220 S100 ; Reset Speed factor override percentage to default (100%) | |
| M221 S100 ; Reset Extrude factor override percentage to default (100%) | |
| G91 ; Set coordinates to relative | |
| G1 F1800 E-3 ; Retract filament 3 mm to prevent oozing | |
| G1 F3000 Z20 ; Move Z Axis up 20 mm to allow filament ooze freely | |
| G90 ; Set coordinates to absolute | |
| G1 X0 Y{machine_depth} F1000 ; Move Heat Bed to the front for easy print removal | |
| M106 S0 ; Turn off cooling fan |
| # navigate to about:debugging#workers first | |
| for (let k of document.getElementsByClassName("unregister-link")) k.click() | |
| for (let k of document.getElementsByClassName("qa-unregister-button")) k.click() |
| # esphome configuration for the TTGO T-Camera ESP32-WROVER-B | |
| # https://www.aliexpress.com/item/TTGO-T-Camera-ESP32-WROVER-B-PSRAM-Camera-Module-ESP32-WROVER-OV2640-Camera-Module-0-96/32966036489.html | |
| # I use this 3D-printed case for the device: | |
| # https://www.thingiverse.com/thing:3540059 | |
| esphome: | |
| name: woonkamer | |
| platform: ESP32 | |
| board: esp32dev |
| var recursivelyOrderKeys = function(unordered) { | |
| // If it's an array - recursively order any | |
| // dictionary items within the array | |
| if (Array.isArray(unordered)) { | |
| unordered.forEach(function (item, index) { | |
| unordered[index] = recursivelyOrderKeys(item); | |
| }); | |
| return unordered; | |
| } |
| Use this as an example on how to start the virtual console without the need of Java Web Start or accessing it from the web interface. | |
| You can use the user and password that you use for the web interface. | |
| You need an old JRE... I used 1.7.0_80 from the Server JRE package, also I have tested successfully 1.7.0_79 with MacOS. | |
| You don't need to install it, just extract it or copy the files in "jre" folder. | |
| Open the viewer.jnlp file that you get by launching the virtual console from the web interface with a text editor. | |
| Note the urls to the jar files. Download the main jar file avctKVM.jar and the libs for your operating system and architecture. | |
| Extract the dlls (.so Linux, .jnilib MacOS) from the jar libs. |
$ uname -r
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
| function Compare-XmlDocs($actual, $expected) { | |
| if ($actual.Name -ne $expected.Name) { | |
| throw "Actual name not same as expected: actual=" + $actual.Name | |
| } | |
| ##attributes... | |
| if ($actual.Attributes.Count -ne $expected.Attributes.Count) { | |
| throw "attribute mismatch for actual=" + $actual.Name | |
| } | |
| for ($i=0;$i -lt $expected.Attributes.Count; $i =$i+1) { |