This is an OpenPGP proof that connects my OpenPGP key to this GitHub account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:$2a$11$Fmz7bxWPRg8Ng4gK.hyLhuEy2.BdJJo8OmyNATyHMynJmOru7Zhvy ]
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. | |
/* eslint-disable @typescript-eslint/no-explicit-any */ | |
/* eslint-disable @typescript-eslint/no-empty-interface */ | |
/// <reference path="../node_modules/@types/node/index.d.ts" /> | |
import * as os from "os" | |
function noop() {} |
[*] | |
indent_style = tab | |
indent_size = 4 |
This is an OpenPGP proof that connects my OpenPGP key to this GitHub account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:$2a$11$Fmz7bxWPRg8Ng4gK.hyLhuEy2.BdJJo8OmyNATyHMynJmOru7Zhvy ]
<# | |
.SYNOPSIS | |
Default preset file for "Sophia Script for Windows 10" | |
Version: v5.12.10 | |
Date: 31.12.2021 | |
Copyright (c) 2014—2022 farag | |
Copyright (c) 2019—2022 farag & Inestic |
title:: St. Joseph Novena
This precious treasury of prayers in honor of St. Joseph is to be prayed for 30 days, commemorating the earthly thirty years which St. Joseph spent in the company of our Lord.
It takes approximately 20-25 minutes and "the extraordinary graces obtained by this prayer are innumerable".
It is said that any missed days may be caught up on the 30th day. So if one were to miss 2 days (not recommended), then the prayers in their totality would be recited 3 times on the final day.
root@45d:~/incus-build# distrobuilder pack-incus ubuntu.yaml rootfs -o source.url=http://archive.ubuntu.com/ubuntu -o image.serial=20240628 -o image.release=jammy -o image.variant=complete --vm | |
INFO [2024-06-29T05:45:38Z] Managing repositories | |
INFO [2024-06-29T05:45:38Z] Running hooks trigger=post-unpack | |
INFO [2024-06-29T05:45:38Z] Managing packages | |
Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease | |
Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease | |
Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease | |
Reading package lists... Done | |
Reading package lists... Done | |
Building dependency tree... Done |
#!/usr/bin/env bash | |
dir="/tmp/zellij/bootstrap" | |
case $(uname -m) in | |
"x86_64"|"aarch64") | |
arch=$(uname -m) | |
;; | |
"arm64") | |
arch="aarch64" |
#!/usr/bin/env node | |
/** | |
* @file db-to-zero | |
* @copyright 2024 Brandon Kalinowski | |
* @description Generate Zero Schema direct from Postgres (or any ORM) via atlas | |
* | |
* NOTE: The tool expects tables to have a comment zero-gen=true. This is a declarative way to | |
* only include a subset of tables in the Zero schema | |
* |
function lorem(text) { | |
return `lorem ipsum text for "${text}" ipsum` | |
} | |
export function loremTransformPlugin() { | |
return { | |
name: 'vite-plugin-lorem-ipsum', | |
enforce: 'pre', | |
transform(code, id) { | |
if (!/\.(ts|js|svelte)$/.test(id)) return; |