Paperless Ingest
Last updated: January 2024
Paperless Ingest is designed with privacy as a core principle. Your documents are processed entirely on your device, and data is only sent to your own self-hosted Paperless-ngx server.
| All 143 source videos (JerryRigEverything) — each link jumps to the scratch verdict: | |
| 1. Samsung Z Flip 7 Durability Test --- Revenge of the Fallen | |
| https://youtu.be/-0luxGapYgM?t=165 | |
| 2. Huawei P30 Pro Durability Test - Breathing Crystal?! | |
| https://youtu.be/0IrPJ2l19fc?t=85 | |
| 3. Samsung TriFold Durability Test: We found the limit. | |
| https://youtu.be/0p_LmbcqEV4?t=177 | |
| 4. Google Pixel - Scratch test, BEND test, Burn test - Durability video | |
| https://youtu.be/18nJ3hjUCTw?t=59 |
NexusQR is committed to protecting your privacy. This policy explains what information the app collects and how the app uses it.
QR Hacker is committed to protecting your privacy. This policy explains what information the app collects and how the app uses it.
| #!/bin/bash | |
| set -e | |
| handle_request_command_status() { | |
| PARSED_RESPONSE=$1 | |
| FUNCTION_NAME=$2 | |
| RESPONSE=$3 | |
| if [[ $PARSED_RESPONSE -ne 0 ]]; then | |
| echo "ERROR calling $FUNCTION_NAME:" $(echo "$RESPONSE" | jq -r '.message') > /dev/stderr |
| #!/bin/bash | |
| # download the image | |
| wget https://cloud.debian.org/images/cloud/bookworm/latest/debian-12-generic-amd64.qcow2 | |
| # create a new VM | |
| qm create 9012 --name bookworm --memory 2048 --net0 virtio,bridge=vmbr0 | |
| # import the downloaded disk to local-lvm storage | |
| qm importdisk 9012 debian-12-generic-amd64.qcow2 local-lvm |
Ah, ik begrijp het. Scholekster is in sommige culturen inderdaad een delicatesse. Hier is een eenvoudig recept voor gegrilde scholekster met een citroen-knoflookmarinade:
| #!/bin/bash | |
| # download the image | |
| wget https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img -O /tmp/jammy-server-cloudimg-amd64.img | |
| # create a new VM | |
| qm create 9001 --name ubuntu --memory 2048 --net0 virtio,bridge=vmbr0 | |
| # import the downloaded disk to local-lvm storage | |
| qm importdisk 9001 /tmp/jammy-server-cloudimg-amd64.img local-lvm |
| openapi: 3.0.3 | |
| info: | |
| title: Imgflip API | |
| description: API documentation for integrating with Imgflip | |
| version: 1.0.0 | |
| servers: | |
| - url: https://api.imgflip.com | |
| paths: | |
| /get_memes: | |
| get: |