systemd-cryptenroll --tpm2-device=list
sudo apt install dracut btrfs-progs tpm2-tools libtss2-dev
sudo systemd-cryptenroll --wipe-slot tpm2 --tpm2-device auto --tpm2-pcrs "7" /dev/nvme0n1p3
sudo dracut -f -v --regenerate-all/etc/dracut.conf
| // 1. Select all the price containers | |
| const priceElements = document.querySelectorAll('.order-item-content-opt-price'); | |
| const totalPrice = Array.from(priceElements).reduce((sum, el) => { | |
| // 2. Get the combined text from all child spans (e.g., "19,46 €") | |
| let priceText = el.innerText; | |
| // 3. Clean the string: | |
| // - Replace comma with dot for calculation | |
| // - Remove the currency symbol and any non-numeric characters (except the dot) |
| From: Nikolai Danylchyk | |
| Date: Sun, 28 Mar 2021 18:32:05 +0200 | |
| Subject: [PATCH] updated for tb78+ | |
| --- | |
| src/chrome/backgroundscript.js | 38 +++++-- | |
| src/common/markdown-here.js | 2 +- | |
| src/common/options-iframe.js | 2 - | |
| src/common/options-store.js | 121 +---------------------- | |
| src/common/options.js | 10 -- |
| import cdk = require('@aws-cdk/core'); | |
| import iot = require('@aws-cdk/aws-iot'); | |
| import lambda = require('@aws-cdk/aws-lambda'); | |
| import greengrass = require('@aws-cdk/aws-greengrass'); | |
| import * as awssdk from 'aws-sdk'; | |
| interface GreengrassRaspberryPiStackProps extends cdk.StackProps { | |
| greengrassLambdaAlias: lambda.Alias | |
| } |
| interface IVehicle { | |
| start(type: string): string; | |
| } | |
| interface ITrunk { | |
| openTrunk(): void | |
| } | |
| interface IWindow { | |
| openWindow(): void |