This is ~/.ssh/rc
#!/bin/sh
if [ -n "$SSH_AUTH_SOCK" -a -n "$XDG_RUNTIME_DIR" ]; then
ln -sf "$SSH_AUTH_SOCK" "$XDG_RUNTIME_DIR/.ssh-agent.socket"
fi
# /etc/unbound/unbound.conf.d/forwarder.conf | |
server: | |
interface: 0.0.0.0 | |
port: 53 | |
do-ip4: yes | |
do-udp: yes | |
do-tcp: yes | |
tls-cert-bundle: "/etc/ssl/certs/ca-certificates.crt" |
-- Add all upstream DoT servers to one pool | |
newServer{address="tls://8.8.8.8", tlsHostname="dns.google"} | |
newServer{address="tls://8.8.4.4", tlsHostname="dns.google"} | |
newServer{address="tls://1.1.1.1", tlsHostname="cloudflare-dns.com"} | |
newServer{address="tls://1.0.0.1", tlsHostname="cloudflare-dns.com"} | |
-- Listen on port 53 (main DNS port) | |
addLocal("0.0.0.0:53") | |
-- Use round-robin or another strategy across all servers |
-- Define backend pools | |
newServer{address="tls://8.8.8.8", pool="google", tlsHostname="dns.google"} | |
newServer{address="tls://8.8.4.4", pool="google", tlsHostname="dns.google"} | |
newServer{address="tls://1.1.1.1", pool="cloudflare", tlsHostname="cloudflare-dns.com"} | |
newServer{address="tls://1.0.0.1", pool="cloudflare", tlsHostname="cloudflare-dns.com"} | |
-- Define local listeners | |
addLocal("127.0.0.1:5301", {pool="google"}) | |
addLocal("127.0.0.1:5302", {pool="cloudflare"}) |
# From https://coredns.io/plugins/forward/ | |
. { | |
forward . 127.0.0.1:5301 127.0.0.1:5302 | |
} | |
.:5301 { | |
forward . tls://8.8.8.8 tls://8.8.4.4 { | |
tls_servername dns.google | |
} |
#!/usr/bin/env python3 | |
# import-pocket-into-instapaper.py pocket/part_*.csv | |
import csv | |
import os | |
import sys | |
import time | |
import requests |
import asyncio | |
import json | |
from agno.agent.agent import Agent | |
from aiodns import DNSResolver | |
async def query_address_records(hostname: str) -> str: | |
""" | |
Use this function to find the A and AAAA records for a given hostname. |
It looks like I encountered an issue resolving the MX records for some domains. "proteinpowdershake.com" could not be found. I'll try checking the rest and summarize the results. | |
I checked the MX records for the domains in the provided file. Here is the summary: | |
Domains using **Google Workspace**: | |
1. memeburn.com | |
2. eileenanddogs.com | |
3. muledesign.com | |
4. satoshidisk.com |
This is ~/.ssh/rc
#!/bin/sh
if [ -n "$SSH_AUTH_SOCK" -a -n "$XDG_RUNTIME_DIR" ]; then
ln -sf "$SSH_AUTH_SOCK" "$XDG_RUNTIME_DIR/.ssh-agent.socket"
fi
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: "${{ github.repository }}" | |
... | |
- name: Docker Login | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} |
Notering | Titel | Artiest | Jaartal | ||
---|---|---|---|---|---|
1 | Bohemian Rhapsody | Queen | 1975 | ||
2 | Fix You | Coldplay | 2005 | ||
3 | Hotel California | Eagles | 1977 | ||
4 | Roller Coaster | Danny Vera | 2019 | ||
5 | Piano Man | Billy Joel | 1973 | ||
6 | Better Days | Dermot Kennedy | 2021 | ||
7 | Stairway To Heaven | Led Zeppelin | 1971 | ||
8 | Avond | Boudewijn de Groot | 1997 | ||
9 | Love Of My Life | Queen | 1975 |