Looks like 1Password 8 only allows you to export whole organsations with all the vaults you have access to. Exporting to .1pux format means you can use this script to separate vaults into their own exports.
./separate.sh 1password_export.1pux
This is a normal markdown document with a diagram embedded in it. The diagram is using Mermaid.
sequenceDiagram
participant Alice
participant Bob
Alice->>John: Hello John, how are you?
loop HealthCheck| # Pin Mappings for Stock 2023 Creality Ender 3 V3 SE | |
| # | |
| # To use this configuration: | |
| # 1. During "make menuconfig", select: | |
| # - STM32F103 with a "28KiB bootloader" | |
| # - Serial communication on USART1 (PA10/PA9) | |
| # | |
| # 2. For a direct serial connection: | |
| # - In "make menuconfig", select: | |
| # - "Enable extra low-level configuration options" |
This helps to prevent PR spam, and avoids breaking changes in Typescript.
| # .github/labeler.yml | |
| # Match changes to files to apply a label | |
| "@backend": | |
| - apps/backend/**/* | |
| "@frontend": | |
| - apps/frontend/**/* | |
| "@api": | |
| - packages/api/**/* | |
| "@infrastructure": | |
| - terraform/**/* |
| version: '3' | |
| services: | |
| homeassistant: | |
| container_name: homeassistant | |
| image: "ghcr.io/home-assistant/raspberrypi4-homeassistant:stable" | |
| volumes: | |
| - $PWD/homeassistant:/config | |
| - /etc/localtime:/etc/localtime:ro |
| <?php declare(strict_types=1); | |
| namespace App\Subscriber; | |
| use Sentry\FlushableClientInterface; | |
| use Symfony\Component\EventDispatcher\EventSubscriberInterface; | |
| use Symfony\Component\Messenger\Event\WorkerMessageFailedEvent; | |
| use Symfony\Component\Messenger\Exception\HandlerFailedException; | |
| class WorkerSubscriber implements EventSubscriberInterface |
| javascript:(() => { | |
| const table = document.querySelector('.transactions-list'); | |
| if (null === table) { | |
| alert('Could not find transactions table'); | |
| return; | |
| } | |
| const transactions = Array.from(table.querySelectorAll('.transaction-row')) | |
| .filter(row => row.querySelector('.column-dr span') ? true : false) | |
| .map(row => [ | |
| new Date(row.querySelector('.column-trandate').innerText).toLocaleDateString(), |
| #!/usr/bin/env php | |
| <?php | |
| $originTimeZone = 'UTC'; | |
| $targetTimeZone = 'Pacific/Auckland'; | |
| //////////////////////// | |
| $timestamp = implode(' ', array_slice($_SERVER['argv'], 1)); | |
| $origin = new DateTimeZone($originTimeZone); |
| import React from 'react'; | |
| import { connect } from 'react-redux'; | |
| interface RootState { | |
| dataFromRootState: string; | |
| } | |
| interface OwnProps { | |
| manualOwnProp: string; | |
| } |