Proof:
(I have tons more icons in a OneDrive, just ask Vague Density. I only wanted 3 images to prove myself.)
Summary:
You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis. | |
## Core Principles | |
1. EXPLORATION OVER CONCLUSION | |
- Never rush to conclusions | |
- Keep exploring until a solution emerges naturally from the evidence | |
- If uncertain, continue reasoning indefinitely | |
- Question every assumption and inference |
Notes for the Dell PowerEdge R710, accuracy is not guarnteed. This is from information I compiled over several days of my own research. You are welcome to reply with corrections and/or additions.
Public GDrive with various mauals.
https://drive.google.com/drive/folders/10f0AU0kzROonciil1Y_gqoCtYxTv0VIx?usp=sharing
#!/bin/sh | |
# | |
# Update Pihole's custom.list based on the "hostname" property of a container. | |
# | |
# Environment variables | |
# - OVERRIDE_IP sets the IP of the container in Pihole's DNS records. Defaults to container IP in Docker network. | |
# - DOMAIN_FILTER only triggers the updates on a match. If empty, it'll always update the records file. | |
# - PIHOLE_CUSTOM_LIST_FILE /etc/hosts compatible DNS records file in format "IP hostname". | |
# - PIHOLE_CONTAINER_NAME because we need to reload Pihole's internal resolver when making changes | |
# |
# Adapted for Python 3.6 + 64-bit Windows | |
from ctypes import * | |
from ctypes.wintypes import * | |
WNDPROCTYPE = WINFUNCTYPE(c_int, HWND, c_uint, WPARAM, LPARAM) | |
WS_EX_APPWINDOW = 0x40000 | |
WS_OVERLAPPEDWINDOW = 0xcf0000 | |
WS_CAPTION = 0xc00000 |
## OpenShift4 pull-secret: | |
1. Download your pull-secret from [console.redhat.com](https://console.redhat.com/openshift/install/aws/installer-provisioned) | |
- click on “Download Pull Secret”. Save it somewhere, e.g. ~/some-dir/pull-secret | |
2. Add the apps.ci auth to pull-secret! _internal OpenShift developers only_ | |
- Obtain an API token by visiting https://oauth-openshift.apps.ci.l2s4.p1.openshiftapps.com/oauth/token/request | |
copy the oc login cmd and paste in terminal to login to the ci cluster, then run this: | |
- `$ oc registry login --to ~/some-dir/pull-secret` | |
This will append the auth from registry.ci.openshift.org to your cloud.openshift.com pull-secret but it will also | |
make the pull-secret multi-line. |
let stickyElementStyle = null; | |
let stickyElementTop = 0; | |
function determineStickyState(element) { | |
if (!stickyElementStyle) { | |
stickyElementStyle = window.getComputedStyle(element); | |
stickyElementTop = parseInt(stickyElementStyle.top, 10); | |
} |
#!/usr/bin/env python | |
# version 2 here https://gist.github.com/jul/200d3a5895a437e20df6 | |
from cmath import polar, rect, pi as PI, e as E, phase | |
rad_to_deg = lambda r : r/2/PI*360.0 | |
deg_to_rad = lambda r : r*2*PI/360.0 | |
identity = lambda r: r | |
class Point(complex): |