vault backup: 2026-08-15 15:07:24
This commit is contained in:
@@ -0,0 +1,138 @@
|
||||
---
|
||||
created: 2026-08-06T14:36:00
|
||||
tags:
|
||||
- thestateofshit
|
||||
- reference
|
||||
updated: 2026-08-06T14:46:00
|
||||
---
|
||||
|
||||
# **Ubuntu VPS & AWS Configuration Reference Guide**
|
||||
|
||||
# server
|
||||
export AWS_BEARER_TOKEN_BEDROCK=ABSKQmVkcm9ja0FQSUtleS03OG9pLWF0LTgxODU2NjgyOTQzNjpmWVZnSkUweDFMaHBFdkw3ZXJzV08xaEl6R1UyOEdYY3pidXU2bGpGTkNWcS9DYytpOVhZa21RVFpoWT0=
|
||||
|
||||
instancenamei-082dd7b58310155c4
|
||||
Host dashit
|
||||
HostName 3.23.239.121
|
||||
User ubuntu
|
||||
IdentityFile ~/.ssh/dashit.pem
|
||||
ServerAliveInterval 60
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
This document serves as your complete operational checklist and command reference for setting up, securing, and managing your Ubuntu ARM64 VPS paired with AWS tools.
|
||||
|
||||
## **1\. System Baseline & Core Utilities**
|
||||
|
||||
Always start by ensuring your system packages are completely up to date and equipped with essential administration utilities.
|
||||
|
||||
### **System Updates**
|
||||
|
||||
sudo apt update && sudo apt upgrade \-y
|
||||
|
||||
### **Essential Utilities Installation**
|
||||
|
||||
sudo apt install \-y curl git ufw htop ncdu unzip
|
||||
|
||||
* **curl**: Downloads files from the web, tests APIs, and pulls install scripts.
|
||||
* **git**: Clones and synchronizes code repositories.
|
||||
* **ufw**: Configures your firewall to block unauthorized inbound connections.
|
||||
* **htop**: Interactive, color-coded CPU and RAM process monitor.
|
||||
* **ncdu**: Terminal disk space analyzer to visually track and clean up large files.
|
||||
* **unzip**: Extracts .zip installation packages and configuration archives.
|
||||
|
||||
### **Architecture Verification**
|
||||
|
||||
Always confirm your server chip architecture before downloading pre-compiled binaries:
|
||||
|
||||
uname \-m
|
||||
|
||||
* *Note:* If it outputs aarch64 or arm64, always pull ARM64/AArch64 binaries. Avoid x86\_64/amd64 builds to prevent Exec format error.
|
||||
|
||||
## **2\. Firewall Lockdown (UFW)**
|
||||
|
||||
Secure your server immediately before exposing it to the public internet.
|
||||
|
||||
\# Set strict default rules
|
||||
sudo ufw default deny incoming
|
||||
sudo ufw default allow outgoing
|
||||
|
||||
\# Allow necessary traffic ports
|
||||
sudo ufw allow ssh
|
||||
sudo ufw allow http
|
||||
sudo ufw allow https
|
||||
|
||||
\# Enable the firewall
|
||||
sudo ufw enable
|
||||
|
||||
## **3\. Docker & Docker Compose Engine**
|
||||
|
||||
Docker runs applications safely inside isolated containers, protecting your host operating system.
|
||||
|
||||
### **Installation via Official Repository**
|
||||
|
||||
\# 1\. Add Docker's official GPG key:
|
||||
sudo apt-get install \-y ca-certificates curl
|
||||
sudo install \-m 0755 \-d /etc/apt/keyrings
|
||||
sudo curl \-fsSL https://download.docker.com/linux/ubuntu/gpg \-o /etc/apt/keyrings/docker.asc
|
||||
sudo chmod a+r /etc/apt/keyrings/docker.asc
|
||||
|
||||
\# 2\. Add repository to Apt sources:
|
||||
echo \\
|
||||
"deb \[arch=$(dpkg \--print-architecture) signed-by=/etc/apt/keyrings/docker.asc\] https://download.docker.com/linux/ubuntu \\
|
||||
$(. /etc/os-release && echo "$VERSION\_CODENAME") stable" | \\
|
||||
sudo tee /etc/apt/sources.list.d/docker.list \> /dev/null
|
||||
|
||||
sudo apt-get update
|
||||
|
||||
\# 3\. Install Docker Engine and Compose plugin:
|
||||
sudo apt-get install \-y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
|
||||
|
||||
\# 4\. Allow your user to run Docker commands without 'sudo':
|
||||
sudo usermod \-aG docker $USER
|
||||
|
||||
> *Important:* After running the last command, log out of your SSH session and log back in for group changes to take effect.
|
||||
|
||||
### **Daily Docker Quick Commands**
|
||||
|
||||
* **Test installation:** docker run hello-world
|
||||
* **Clean up test container:** docker rm $(docker ps \-a \-q \-f ancestor=hello-world)
|
||||
* **Delete test image:** docker rmi hello-world
|
||||
* **List active containers:** docker ps
|
||||
* **List all containers (including stopped):** docker ps \-a
|
||||
* **List downloaded images:** docker images
|
||||
|
||||
## **4\. AWS CLI (v2) Setup for ARM64**
|
||||
|
||||
Because your VPS operates on an ARM64 processor, you must explicitly fetch the ARM-compatible binary bundle.
|
||||
|
||||
### **Installation Procedure**
|
||||
|
||||
\# Download the ARM64/AArch64 package
|
||||
curl "https://awscli.amazonaws.com/awscli-exe-linux-aarch64.zip" \-o "awscliv2.zip"
|
||||
|
||||
\# Unzip and install system-wide
|
||||
unzip awscliv2.zip
|
||||
sudo ./aws/install
|
||||
|
||||
\# Clean up installer files
|
||||
rm \-rf awscliv2.zip aws
|
||||
|
||||
### **Verification**
|
||||
|
||||
aws \--version
|
||||
|
||||
### **Configuration & Testing**
|
||||
|
||||
\# Run configuration wizard (Input your region, e.g., us-east-2)
|
||||
aws configure
|
||||
|
||||
\# Test API connectivity and verify authentication
|
||||
aws sts get-caller-identity
|
||||
|
||||
## **5\. Development Workspace Guidelines**
|
||||
|
||||
* **Python Environments:** Always run python projects inside virtual environments (python3 \-m venv venv && source venv/bin/activate). Avoid sudo pip install.
|
||||
* **Manual Binaries:** Always check download targets for arm64 or aarch64 tags.
|
||||
@@ -0,0 +1,20 @@
|
||||
---
|
||||
created: 2026-08-06T14:35:00
|
||||
tags:
|
||||
- vps
|
||||
- thestateofshit
|
||||
- aws
|
||||
updated: 2026-08-06T14:45:00
|
||||
---
|
||||
# the state of shit AWS
|
||||
```
|
||||
USER=SHIT-ADMIN
|
||||
EMAIL=thestateofshit@gmail.com
|
||||
ACCESS_KEY_ID=AKIA35FTCSV6NGNGYDF6
|
||||
SECRET_ACESS_KEY=CLSQ5AlkkNW2dx3QFxG+eHuO42cg/Qhjwh2qlZpz
|
||||
## EC2 SERVER
|
||||
IP=3.23.239.121
|
||||
REGION=US-EAST-2
|
||||
USER=ubuntu
|
||||
BEDROCK_API_KEY=BedrockAPIKey-78oi-at-818566829436,ABSKQmVkcm9ja0FQSUtleS03OG9pLWF0LTgxODU2NjgyOTQzNjpmWVZnSkUweDFMaHBFdkw3ZXJzV08xaEl6R1UyOEdYY3pidXU2bGpGTkNWcS9DYytpOVhZa21RVFpoWT0=
|
||||
```
|
||||
@@ -0,0 +1,40 @@
|
||||
---
|
||||
created: 2026-08-06T14:38:00
|
||||
tags:
|
||||
- hosts
|
||||
- WSL
|
||||
- windows
|
||||
updated: 2026-08-06T14:44:00
|
||||
---
|
||||
|
||||
# WSL
|
||||
user=medic
|
||||
Host openwebui
|
||||
HostName 18.223.53.133
|
||||
User ubuntu
|
||||
IdentityFile ~/.ssh/openwebui_wsl
|
||||
Host github-debtcoder
|
||||
HostName github.com
|
||||
User git
|
||||
IdentityFile ~/.ssh/id_ed25519_github
|
||||
Host github-plug-ooo
|
||||
Hostname github.com
|
||||
User git
|
||||
IdentityFile ~/.ssh/openwebui_wsl
|
||||
|
||||
|
||||
|
||||
-----------------------
|
||||
# Windows
|
||||
user:there
|
||||
Host dashit
|
||||
HostName 3.23.239.121
|
||||
User ubuntu
|
||||
IdentityFile ~/.ssh/dashit.pem
|
||||
ServerAliveInterval 60
|
||||
# WSL
|
||||
Host dashit
|
||||
HostName 3.23.239.121
|
||||
User ubuntu
|
||||
IdentityFile ~/.ssh/dashit.pem
|
||||
ServerAliveInterval 60
|
||||
@@ -0,0 +1,9 @@
|
||||
ssh oracle
|
||||
mkdir ~/your-new-project.git
|
||||
cd ~/your-new-project.git
|
||||
git init --bare
|
||||
exit
|
||||
|
||||
|
||||
IP:129.213.172.214
|
||||
hostname:boogertime.xyz
|
||||
@@ -0,0 +1,106 @@
|
||||
# oracle vps
|
||||
commands
|
||||
free -h
|
||||
df -h
|
||||
sudo ss -tulpn
|
||||
## before docker and vaultwarden
|
||||
```
|
||||
total used free shared buff/cache available
|
||||
Mem: 954Mi 401Mi 184Mi 5.0Mi 532Mi 552Mi
|
||||
Swap: 2.0Gi 2.0Mi 2.0Gi
|
||||
Filesystem Size Used Avail Use% Mounted on
|
||||
tmpfs 96M 1.1M 95M 2% /run
|
||||
efivarfs 256K 21K 231K 9% /sys/firmware/efi/efivars
|
||||
/dev/sda1 45G 4.9G 40G 12% /
|
||||
tmpfs 478M 0 478M 0% /dev/shm
|
||||
tmpfs 5.0M 0 5.0M 0% /run/lock
|
||||
/dev/sda16 881M 156M 664M 19% /boot
|
||||
/dev/sda15 105M 6.2M 99M 6% /boot/efi
|
||||
tmpfs 96M 12K 96M 1% /run/user/1002
|
||||
tmpfs 96M 12K 96M 1% /run/user/1001
|
||||
Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
|
||||
udp UNCONN 0 0 0.0.0.0:111 0.0.0.0:* users:(("rpcbind",pid=696,fd=5),("systemd",pid=1,fd=238))
|
||||
udp UNCONN 0 0 127.0.0.54:53 0.0.0.0:* users:(("systemd-resolve",pid=712,fd=16))
|
||||
udp UNCONN 0 0 127.0.0.53%lo:53 0.0.0.0:* users:(("systemd-resolve",pid=712,fd=14))
|
||||
udp UNCONN 0 0 10.0.13.200%ens3:68 0.0.0.0:* users:(("systemd-network",pid=805,fd=21))
|
||||
udp UNCONN 0 0 [::]:111 [::]:* users:(("rpcbind",pid=696,fd=7),("systemd",pid=1,fd=241))
|
||||
tcp LISTEN 0 4096 127.0.0.53%lo:53 0.0.0.0:* users:(("systemd-resolve",pid=712,fd=15))
|
||||
tcp LISTEN 0 4096 127.0.0.54:53 0.0.0.0:* users:(("systemd-resolve",pid=712,fd=17))
|
||||
tcp LISTEN 0 4096 0.0.0.0:22 0.0.0.0:* users:(("sshd",pid=1090,fd=3),("systemd",pid=1,fd=228))
|
||||
tcp LISTEN 0 4096 0.0.0.0:111 0.0.0.0:* users:(("rpcbind",pid=696,fd=4),("systemd",pid=1,fd=237))
|
||||
tcp LISTEN 0 511 0.0.0.0:80 0.0.0.0:* users:(("nginx",pid=7514,fd=5),("nginx",pid=7513,fd=5),("nginx",pid=7510,fd=5))
|
||||
tcp LISTEN 0 4096 [::]:22 [::]:* users:(("sshd",pid=1090,fd=4),("systemd",pid=1,fd=229))
|
||||
tcp LISTEN 0 4096 [::]:111 [::]:* users:(("rpcbind",pid=696,fd=6),("systemd",pid=1,fd=239))
|
||||
tcp LISTEN 0 511 [::]:80 [::]:* users:(("nginx",pid=7514,fd=6),("nginx",pid=7513,fd=6),("nginx",pid=7510,fd=6))
|
||||
```
|
||||
## after install
|
||||
```
|
||||
total used free shared buff/cache available
|
||||
Mem: 954Mi 443Mi 62Mi 4.7Mi 612Mi 510Mi
|
||||
Swap: 2.0Gi 43Mi 2.0Gi
|
||||
Filesystem Size Used Avail Use% Mounted on
|
||||
tmpfs 96M 1.2M 95M 2% /run
|
||||
efivarfs 256K 21K 231K 9% /sys/firmware/efi/efivars
|
||||
/dev/sda1 45G 5.6G 39G 13% /
|
||||
tmpfs 478M 0 478M 0% /dev/shm
|
||||
tmpfs 5.0M 0 5.0M 0% /run/lock
|
||||
/dev/sda16 881M 156M 664M 19% /boot
|
||||
/dev/sda15 105M 6.2M 99M 6% /boot/efi
|
||||
tmpfs 96M 12K 96M 1% /run/user/1002
|
||||
tmpfs 96M 12K 96M 1% /run/user/1001
|
||||
Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
|
||||
udp UNCONN 0 0 0.0.0.0:111 0.0.0.0:* users:(("rpcbind",pid=696,fd=5),("systemd",pid=1,fd=222))
|
||||
udp UNCONN 0 0 127.0.0.54:53 0.0.0.0:* users:(("systemd-resolve",pid=712,fd=16))
|
||||
udp UNCONN 0 0 127.0.0.53%lo:53 0.0.0.0:* users:(("systemd-resolve",pid=712,fd=14))
|
||||
udp UNCONN 0 0 10.0.13.200%ens3:68 0.0.0.0:* users:(("systemd-network",pid=805,fd=21))
|
||||
udp UNCONN 0 0 [::]:111 [::]:* users:(("rpcbind",pid=696,fd=7),("systemd",pid=1,fd=229))
|
||||
tcp LISTEN 0 511 0.0.0.0:443 0.0.0.0:* users:(("nginx",pid=10572,fd=10),("nginx",pid=10571,fd=10),("nginx",pid=10540,fd=10))
|
||||
tcp LISTEN 0 4096 127.0.0.53%lo:53 0.0.0.0:* users:(("systemd-resolve",pid=712,fd=15))
|
||||
tcp LISTEN 0 4096 127.0.0.54:53 0.0.0.0:* users:(("systemd-resolve",pid=712,fd=17))
|
||||
tcp LISTEN 0 4096 127.0.0.1:8000 0.0.0.0:* users:(("docker-proxy",pid=10813,fd=8))
|
||||
tcp LISTEN 0 4096 0.0.0.0:22 0.0.0.0:* users:(("sshd",pid=1090,fd=3),("systemd",pid=1,fd=193))
|
||||
tcp LISTEN 0 4096 0.0.0.0:111 0.0.0.0:* users:(("rpcbind",pid=696,fd=4),("systemd",pid=1,fd=221))
|
||||
tcp LISTEN 0 511 0.0.0.0:80 0.0.0.0:* users:(("nginx",pid=10572,fd=5),("nginx",pid=10571,fd=5),("nginx",pid=10540,fd=5))
|
||||
tcp LISTEN 0 511 [::]:443 [::]:* users:(("nginx",pid=10572,fd=9),("nginx",pid=10571,fd=9),("nginx",pid=10540,fd=9))
|
||||
tcp LISTEN 0 4096 [::]:22 [::]:* users:(("sshd",pid=1090,fd=4),("systemd",pid=1,fd=194))
|
||||
tcp LISTEN 0 4096 [::]:111 [::]:* users:(("rpcbind",pid=696,fd=6),("systemd",pid=1,fd=225))
|
||||
tcp LISTEN 0 511 [::]:80 [::]:* users:(("nginx",pid=10572,fd=6),("nginx",pid=10571,fd=6),("nginx",pid=10540,fd=6))
|
||||
```
|
||||
|
||||
# after Jackett
|
||||
```
|
||||
Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
|
||||
udp UNCONN 0 0 0.0.0.0:111 0.0.0.0:*
|
||||
udp UNCONN 0 0 127.0.0.54:53 0.0.0.0:*
|
||||
udp UNCONN 0 0 127.0.0.53%lo:53 0.0.0.0:*
|
||||
udp UNCONN 0 0 10.0.13.200%ens3:68 0.0.0.0:*
|
||||
udp UNCONN 0 0 [::]:111 [::]:*
|
||||
tcp LISTEN 0 511 0.0.0.0:443 0.0.0.0:*
|
||||
tcp LISTEN 0 4096 0.0.0.0:9117 0.0.0.0:*
|
||||
tcp LISTEN 0 4096 127.0.0.53%lo:53 0.0.0.0:*
|
||||
tcp LISTEN 0 4096 127.0.0.54:53 0.0.0.0:*
|
||||
tcp LISTEN 0 4096 127.0.0.1:8000 0.0.0.0:*
|
||||
tcp LISTEN 0 4096 0.0.0.0:22 0.0.0.0:*
|
||||
tcp LISTEN 0 4096 0.0.0.0:111 0.0.0.0:*
|
||||
tcp LISTEN 0 511 0.0.0.0:80 0.0.0.0:*
|
||||
tcp LISTEN 0 511 [::]:443 [::]:*
|
||||
tcp LISTEN 0 4096 [::]:9117 [::]:*
|
||||
tcp LISTEN 0 4096 [::]:22 [::]:*
|
||||
tcp LISTEN 0 4096 [::]:111 [::]:*
|
||||
tcp LISTEN 0 511 [::]:80 [::]:*
|
||||
git@instance-20260807-0848:~$ df -h
|
||||
Filesystem Size Used Avail Use% Mounted on
|
||||
tmpfs 96M 1.3M 95M 2% /run
|
||||
efivarfs 256K 21K 231K 9% /sys/firmware/efi/efivars
|
||||
/dev/sda1 45G 6.1G 39G 14% /
|
||||
tmpfs 478M 0 478M 0% /dev/shm
|
||||
tmpfs 5.0M 0 5.0M 0% /run/lock
|
||||
/dev/sda16 881M 156M 664M 19% /boot
|
||||
/dev/sda15 105M 6.2M 99M 6% /boot/efi
|
||||
tmpfs 96M 12K 96M 1% /run/user/1001
|
||||
tmpfs 96M 12K 96M 1% /run/user/1002
|
||||
git@instance-20260807-0848:~$ free -h
|
||||
total used free shared buff/cache available
|
||||
Mem: 954Mi 518Mi 71Mi 30Mi 556Mi 435Mi
|
||||
Swap: 2.0Gi 234Mi 1.8Gi
|
||||
```
|
||||
@@ -0,0 +1,2 @@
|
||||
# UPS AUTH RECOVERY
|
||||
CODE=L5SG1XKCVRY1G3U81TG5BEG2
|
||||
@@ -0,0 +1,127 @@
|
||||
---
|
||||
created: 2026-08-06T15:28:00
|
||||
updated: 2026-08-15T15:28:00
|
||||
tags:
|
||||
- thestateofshit
|
||||
- keys
|
||||
- api
|
||||
- cloudflare
|
||||
- context7
|
||||
- nvidia
|
||||
- openrouter
|
||||
- claude
|
||||
- qdrant
|
||||
- heroku
|
||||
- AWSbedrock
|
||||
version: 1.15.08
|
||||
---
|
||||
```
|
||||
2026-08-15
|
||||
did a complete makeover of the list. its a general list for multiple user ATM.
|
||||
```
|
||||
# Services
|
||||
|
||||
## cloudflare
|
||||
```
|
||||
USER:[thestateofshit@gmail.com]
|
||||
ACCOUNT_ID=10afa4fafa5072f324a2c8e50df20955
|
||||
API_TOKEN=cfat_FJuI3kViKGDc89Gu940Sh3tcEAiRjjVhRXHnFICCb8ad7c81
|
||||
ACCESS_KEY=ac86da27cb8f5b94d06aaca581631cd4 SECRET_ACCESS_KEY=45291ca70c1f0709bcd6e7113e7bbd27100e0ce0c282d9548ac453803fdb6b41
|
||||
3_API_ENDPOINT=https://10afa4fafa5072f324a2c8e50df20955.r2.cloudflarestorage.com
|
||||
---
|
||||
USER=[USER]
|
||||
ACCOUNT_ID=3d7a7b7be17cb165d50b3331df6ec095
|
||||
CF_TOKEN=cfat_E8IB44Z5JS7jc8XG1WQlNXh57Uft6Sk06DiqQ2qSce4c1d6e
|
||||
ACCESS_KEY_ID=66cb345f70df7cf2859c7500eb2cc362
|
||||
SECRET_ACCESS_KEY=3c6d9fad11eb30a8bac3b169fe1f8539db7602017e40e1eb56b34661d78c9a60
|
||||
```
|
||||
## context7
|
||||
```
|
||||
CONTEXT7_API_KEY=ctx7sk-14f44335-80e7-43a0-a685-67dbcf0bf18d
|
||||
CONTEXT7_API_KEY=ctx7sk-c21263ff-21dc-43fb-9210-d2f69525d7a3
|
||||
```
|
||||
## NVIDIA
|
||||
```
|
||||
NVIDIA_API_KEY=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
|
||||
NVIDIA_API_KEY=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
|
||||
ENDPOIT=https://integrate.api.nvidia.com/v1
|
||||
MODEL_EMBEDDING=nvidia/nv-embed-v1
|
||||
MODEL_REASONING=nvidia/nemotron-3-nano-omni-30b-a3b-reasoning
|
||||
```
|
||||
## openrouter
|
||||
```
|
||||
OPENROUTER_API_KEY=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
|
||||
```
|
||||
## qdrant
|
||||
```
|
||||
QDRANT_API_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2Nlc3MiOiJtIiwic3ViamVjdCI6ImFwaS1rZXk6ZjcwNDAxNTktNmZiMC00MmFjLTljNTItYTM3NGI5YTVmYTA0In0.Zvtbcn7Vxk4ExEzLFYVnfZmURgM-7EYLU0WTBAnMztk
|
||||
```
|
||||
## claude
|
||||
```
|
||||
CLAUDE_API_KEY=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
|
||||
```
|
||||
## HEROKU
|
||||
|
||||
```
|
||||
HEROKU_API_KEY=HRKU-AAse644DvEbfHICY6vdurUVufgJ8_kQQ2a8T9wteROiQ___wVW9GWdgO5R
|
||||
```
|
||||
|
||||
## AWS BEDROCK
|
||||
```
|
||||
BEDROCK_API_KEY=BedrockAPIKey-78oi-at-818566829436,ABSKQmVkcm9ja0FQSUtleS03OG9pLWF0LTgxODU2NjgyOTQzNjpmWVZnSkUweDFMaHBFdkw3ZXJzV08xaEl6R1UyOEdYY3pidXU2bGpGTkNWcS9DYytpOVhZa21RVFpoWT0=
|
||||
```
|
||||
## google medic8dcloud
|
||||
```
|
||||
# ai studio
|
||||
key=AIzaSyDZfMTQ0ayi3phYTKwdpI7uPPtDYfdvgZk
|
||||
key=8RN6IOh97RbGeoixINNWp7QRtt-_LBKmJD-xuhugZ1XurDZA
|
||||
## for drive,docs,sheets,gmail,calander
|
||||
api_key=AIzaSyASs9IQteSVtV61fkUAR9mu9JkB0sMw1Vw
|
||||
```
|
||||
# ai studio
|
||||
```
|
||||
key=AIzaSyDZfMTQ0ayi3phYTKwdpI7uPPtDYfdvgZk
|
||||
key=8RN6IOh97RbGeoixINNWp7QRtt-_LBKmJD-xuhugZ1XurDZA
|
||||
## for drive,docs,sheets,gmail,calander
|
||||
api_key=AIzaSyASs9IQteSVtV61fkUAR9mu9JkB0sMw1Vw
|
||||
```
|
||||
## redacted
|
||||
|
||||
```
|
||||
# redacted_key=dd82a2d1.dea25477e9f42304959b6c3c7b08f880
|
||||
```
|
||||
|
||||
|
||||
## pinecone
|
||||
```
|
||||
# medic8dcloud@gmail.com
|
||||
KEY=pcsk_Ats6a_7tukrjtHVJskhZDG8zVDBjG5X4PNPrVECaGVRU3B137x432U62SfbV2495Psknd
|
||||
---
|
||||
# UNKNOWN PINECONE
|
||||
API_KEY=pcsk_2xJwxT_CW3mguPv83vKgSTcroUh2H1WQtrTf1NiyCzX7sE8RVqtc4DEKZBvBEpAg4CK3De
|
||||
```
|
||||
## render
|
||||
```
|
||||
# thestateofshit@gmail.com
|
||||
render_api_key=rnd_PyfjhLC3KKG43qazh5TbA9aJsO62
|
||||
```
|
||||
# medic8cloud qdrant
|
||||
```
|
||||
apikey=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2Nlc3MiOiJtIiwic3ViamVjdCI6ImFwaS1rZXk6NjgzYTc4ZGQtNmY4Mi00ZWMxLTg0ODYtNWU3YmY0NGY0OGRhIn0.WiO_I07EuUSDQVI1w2VzxBkXTPyIEUfkWtc_DU_gmQk
|
||||
endpoint=https://0ff33b75-b828-417f-8c60-e219d442ee2d.us-east-1-1.aws.cloud.qdrant.io
|
||||
```
|
||||
## serpapi
|
||||
```
|
||||
# debtcoder
|
||||
api_key=07ff9a9517c9971b17ad2f3dfc6f3e54c69bdf427a9c42f0286011d7e86adaa1
|
||||
```
|
||||
## twillio
|
||||
```
|
||||
medic8dcloud@gmail.com $8.9 credit trial
|
||||
```
|
||||
## agent router
|
||||
```
|
||||
https://agentrouter.org
|
||||
API_KEY=sk-MvkqJtI1KRkaIdqAncFONyTNTIOjf8fK6Bdr95I1glQXCMlR
|
||||
```
|
||||
|
||||
@@ -0,0 +1,57 @@
|
||||
---
|
||||
created: 2026-08-13T21:43:00
|
||||
tags:
|
||||
- reference
|
||||
- cmds
|
||||
- medic8d-dev
|
||||
---
|
||||
|
||||
|
||||
| Email | medic8d.dev@gmail.com |
|
||||
| ----------------- | ----------------------------------------------------------------- |
|
||||
| cloudflare | |
|
||||
| github | https://github.com/BoogerTimeClub/ |
|
||||
| vercel | https://vercel.com/boogertimeclub |
|
||||
| gmail | |
|
||||
| Cloufflare | boogerclub.shop |
|
||||
| account_id | 38af04c2e487bd3e7814844b8b150d09 |
|
||||
| API_TOKEN | cfat_RwrAgyIpgg2Wu40mFBjwjXMlOLhzNdcslOoKC4FG813383d8 |
|
||||
| Access_Key_ID | d0ee2441d4d10c8c5dc2eb186a3b1e25 |
|
||||
| Secret_Access_Key | 953596a7b1419163f222a979ade9328db43fbc13d4b7618dc5c912156bca185d |
|
||||
| S3_API_ENDPOINT | https://38af04c2e487bd3e7814844b8b150d09.r2.cloudflarestorage.com |
|
||||
```
|
||||
curl -X GET "https://api.cloudflare.com/client/v4/accounts/38af04c2e487bd3e7814844b8b150d09/tokens/verify" \
|
||||
-H "Authorization: Bearer cfat_RwrAgyIpgg2Wu40mFBjwjXMlOLhzNdcslOoKC4FG813383d8"
|
||||
```
|
||||
|
||||
## VERCEL
|
||||
```
|
||||
curl -X POST "https://project-n2rwh.vercel.app/api/convert" \
|
||||
-H "Content-Type: application/json" \
|
||||
-d '{"url":"https://example.com/article"}'
|
||||
```
|
||||
```
|
||||
# medic8d.dev Boogertimeclub
|
||||
VERCEL_API_TOKEN=vcp_2eOjFb0NuyPrlHc4m1leS5MsZgiLfLLWkRKxNL5KDdsLYLhUEj4fpxi4
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
| Email | debtcoder@gmail.com |
|
||||
| ----------------- | ----------------------------------------------------------------- |
|
||||
| cloudflare | |
|
||||
| account_id | 1d3bb9b45bec7037f28a62e6ef2461c2 |
|
||||
| API_TOKEN | cfat_j2J39tSrJhk5qJA8uHlHTWwk3l8nTQlELaQTopXAcbd6e785 |
|
||||
| Access_Key_ID | 93b605e9ae41f34ea460fcc5119f4cdf |
|
||||
| Secret_Access_Key | 9eb2d3447c522cd224e15abc4c50027e534eade4503267576fb967cb63d06635 |
|
||||
| S3_API_ENDPOINT | https://1d3bb9b45bec7037f28a62e6ef2461c2.r2.cloudflarestorage.com |
|
||||
| | |
|
||||
|
||||
`curl -X GET "https://api.cloudflare.com/client/v4/accounts/1d3bb9b45bec7037f28a62e6ef2461c2/tokens/verify" \`
|
||||
`-H "Authorization: Bearer cfat_j2J39tSrJhk5qJA8uHlHTWwk3l8nTQlELaQTopXAcbd6e785"`
|
||||
@@ -0,0 +1,36 @@
|
||||
---
|
||||
created: 2026-08-11T23:24:00
|
||||
tags:
|
||||
- domains
|
||||
- spaceship
|
||||
- "#medic8d-dev"
|
||||
version: 1.08.15
|
||||
updated: 2026-08-11T23:25:00
|
||||
---
|
||||
# porkbun solvethisproblem41.pro
|
||||
|
||||
| DOMAIN | HOST | TYPE | ANSWER |
|
||||
| ---------------------- | ------------------------------ | ----- | ------------------------------------ |
|
||||
| iansfan.club | *.iansfan.club | A | 147.93.183.152 |
|
||||
| iansfan.club | iansfan.club | A | 147.93.183.152 |
|
||||
| iansfan.club | www.iansfan.club | A | 147.93.183.152 |
|
||||
| solvethisproblem41.pro | *.solvethisproblem41.pro | A | 147.93.183.152 |
|
||||
| solvethisproblem41.pro | solvethisproblem41.pro | A | 147.93.183.152 |
|
||||
| solvethisproblem41.pro | spot.solvethisproblem41.pro | A | 147.93.183.152 |
|
||||
| solvethisproblem41.pro | www.solvethisproblem41.pro | A | 147.93.183.152 |
|
||||
| solvethisproblem41.pro | solvethisproblem41.pro | MX | fwd1.porkbun.com |
|
||||
| solvethisproblem41.pro | solvethisproblem41.pro | MX | fwd2.porkbun.com |
|
||||
| solvethisproblem41.pro | solvethisproblem41.pro | TXT | v=spf1 include:_spf.porkbun.com ~all |
|
||||
| kyplug.xyz | | | |
|
||||
| superkeener.de | *.superkeener.de | A | 150.136.81.225 |
|
||||
| superkeener.de | ofthebeatenpath.superkeener.de | A | 150.136.81.225 |
|
||||
| superkeener.de | superkeener.de | A | 150.136.81.225 |
|
||||
| superkeener.de | www.superkeener.de | CNAME | superkeener.de |
|
||||
|
||||
|
||||
| medic8d.dev@gmail.com | Domains |
|
||||
| --------------------------------------------------- | --------------- |
|
||||
| Spaceship nameservers | medic8d.buzz |
|
||||
| Spaceship nameservers | boogertime.shop |
|
||||
| aitana.ns.cloudflare.com<br>ethan.ns.cloudflare.com | lex13.xyz |
|
||||
| Spaceship nameservers | boogertime.xyz |
|
||||
Reference in New Issue
Block a user