Verification-Driven Development (VDD) is a high-integrity software engineering framework designed to eliminate "code slop" and logic gaps through a generative adversarial loop. Unlike traditional development cycles that rely on passive code reviews, VDD utilizes a specialized multi-model orchestration where a Builder AI and an Adversarial AI are placed in a high-friction feedback loop, mediated by a human developer and a granular tracking system.
After pulling everything together, I thought it would be a good idea to document what ended up working for me with the following setup:
- *darr apps
- Some 3d printers
- MobilRaker
- NZB360
This stack requires the following
- Protecting the sites from unauthorized access
This guide will help you root, de-bloat and secure the amazing Onyx BOOX Go Color 7, an amazing Android-based eReader.
The guide assumes that you are using a Mac with Homebrew installed and have just unboxed the device and are turning it on for the first time. (Congrats!)
- You're concerned about the amount of data this device sends to
.cnservers. - You want a lean and mean eReader a la Kindle.
- You're bored and need something fun to do!
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/env bash | |
| set -e | |
| cd ~ | |
| sudo -v | |
| # Make sure system is in a good, updated, clean, state. | |
| sudo apt-get -y update |
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
| THIS ARE MY NOTES OF BUILDING AN INSTALLING XORGXRDP AND XRDP WITH GPU ACCELERATION | |
| TESTED ON UBUNTU 20.04.2 with amdgpu (all-open variant) driver and FirePro W4100 GPU | |
| -- Build XorgXrdp with GPU acceleration ("script" - to be adjusted to your needs) : -- | |
| ## << BUILD AND INSTALL SCRIPT START >> ## | |
| #!/bin/bash | |
| # Install Latest XRDP with XORGXRDP | |
| # README |
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
| blueprint: | |
| name: Low battery level detection & notification for all battery sensors | |
| description: Regularly test all sensors with 'battery' device-class for crossing | |
| a certain battery level threshold and if so execute an action. | |
| domain: automation | |
| input: | |
| threshold: | |
| name: Battery warning level threshold | |
| description: Battery sensors below threshold are assumed to be low-battery (as | |
| well as binary battery sensors with value 'on'). |
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
| THIS ARE MY NOTES OF BUILDING AN INSTALLING XORGXRDP AND XRDP WITH GPU ACCELERATION | |
| TESTED ON DEBIAN 9.13 | |
| -- Build XorgXrdp with GPU acceleration ("script" - to be adjusted to your needs) : -- | |
| ## << BUILD AND INSTALL SCRIPT START >> ## | |
| #!/bin/bash | |
| # Install Latest XRDP with XORGXRDP | |
| # README |
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
| /** | |
| * ESP32 I2S UDP Streamer | |
| * | |
| * This is influenced by maspetsberger's NoiseLevel at | |
| * https://github.com/maspetsberger/esp32-i2s-mems/blob/master/examples/NoiseLevel/NoiseLevel.ino | |
| * | |
| * @author GrahamM | |
| */ | |
| #include <driver/i2s.h> |
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
| // get config.h from Adafruit IO example sketch and fill in your details | |
| #include "config.h" | |
| #include <Pins_Arduino.h> | |
| #include <SoftwareSerial.h> | |
| #include <Regexp.h> | |
| AdafruitIO_Feed *cpm_feed = io.feed("Geiger CPM"); | |
| AdafruitIO_Feed *cps_feed = io.feed("Geiger CPS"); | |
| AdafruitIO_Feed *usv_feed = io.feed("Geiger uSv/hr"); |
NewerOlder