User contributions
Jump to navigation
Jump to search
- 15:55, 28 September 2023 diff hist +1,941 N Python email example Created page with "``` #!/usr/bin/env python3 import argparse from email.message import EmailMessage from email.mime.text import MIMEText import os import smtplib import sys subject = "Test" bo..." current
- 12:32, 26 September 2023 diff hist +83 N Raid linux mdraid Created page with "https://peterkieser.com/2009/11/29/raid-mdraid-stripe_cache_size-vs-write-transfer/" current
- 12:01, 26 September 2023 diff hist +99 N Sfp transceiver Created page with "https://serverfault.com/questions/242541/are-arista-sfp-transceivers-compatible-with-cisco-switches" current
- 00:40, 26 September 2023 diff hist +26 Curl bash script current
- 00:37, 26 September 2023 diff hist +29 Curl bash script
- 00:37, 26 September 2023 diff hist +286 N Curl bash script Created page with "#!/bin/bash set -eu mcode=200 url="https://example.com" while true; do ts=$(date "+%Y%m%dT%H%M%S") rcode=$(curl -X GET -sI "$url" | awk '/^HTTP/{print $2}') if [ "$rco..."
- 18:49, 21 September 2023 diff hist +44 N Helm search Created page with "helm search repo foo-community/foo--versions"
- 18:22, 21 September 2023 diff hist +239 Powershell get certificates current
- 18:10, 21 September 2023 diff hist +103 Powershell get certificates
- 17:58, 21 September 2023 diff hist +240 Powershell get certificates
- 21:32, 20 September 2023 diff hist +94 N Postgres Performance Tuning Created page with "https://www.timescale.com/blog/postgresql-performance-tuning-part-ii-adjusting-key-parameters/" current
- 15:48, 20 September 2023 diff hist +135 Curl
- 03:51, 20 September 2023 diff hist +304 N Powershell get certificates Created page with " ``` $store = New-Object System.Security.Cryptography.X509Certificates.X509Store([System.Security.Cryptography.X509Certificates.StoreName]::My,"localmachine") $store.Open("Max..."
- 02:14, 17 September 2023 diff hist +71 N Data wharehouse with postgre Created page with "https://www.narratordata.com/blog/using-postgresql-as-a-data-warehouse/" current
- 00:07, 15 September 2023 diff hist +104 Ambassador current
- 00:05, 15 September 2023 diff hist +71 Ambassador
- 23:55, 14 September 2023 diff hist +210 Ambassador
- 23:49, 14 September 2023 diff hist +76 Ambassador
- 23:47, 14 September 2023 diff hist +26 Ambassador
- 23:47, 14 September 2023 diff hist +229 N Ambassador Created page with " https://www.getambassador.io/docs/emissary/latest/tutorials/getting-started https://www.getambassador.io/docs/edge-stack/latest/about/changes-2.x https://github.com/emissar..."
- 20:06, 12 September 2023 diff hist +833 N Netplan Created page with "Cisco ``` # This is the network config written by 'subiquity' network: ethernets: eno1: {} eno2: {} eno3: {} eno4: {} bonds: bond0: interfaces:..." current
- 20:05, 12 September 2023 diff hist +254 Bonds linux current
- 19:50, 12 September 2023 diff hist +1,460 N Bonds linux Created page with "https://serverfault.com/questions/445839/what-are-differences-between-balance-rr-and-802-3ad ``` 6 From this page regarding balance-rr: This mode is the only mode that will..."
- 23:33, 11 September 2023 diff hist -1 Irule snippets current
- 23:33, 11 September 2023 diff hist +419 N Irule snippets Created page with "# No paths ``` when HTTP_REQUEST { HTTP::host "api.dexample.com" pool mypool } ``` # using path based ``` when HTTP_REQUEST { switch -glob -- [string tolower [HTTP..."
- 19:00, 11 September 2023 diff hist +101 N Windows 2012 notes Created page with "https://willjessiam.blog/2021/02/06/tls_ecdhe_rsa_with_aes_256_gcm_sha384-cipher-with-server-2012-r2/" current
- 18:53, 11 September 2023 diff hist +157 N Powershell ciphers Created page with "``` Get-ItemPropertyValue -Path HKLM:\SYSTEM\CurrentControlSet\Control\Cryptography\Configuration\Local\SSL\00010002 -Name Functions | findstr -i GCM_SHA ```" current
- 19:04, 10 September 2023 diff hist +346 F5 sdk snippets current
- 18:51, 10 September 2023 diff hist +587 F5 sdk snippets
- 18:20, 10 September 2023 diff hist +210 F5 sdk snippets
- 18:13, 10 September 2023 diff hist +4 F5 sdk snippets
- 18:13, 10 September 2023 diff hist +362 F5 sdk snippets
- 18:03, 10 September 2023 diff hist +27 F5 sdk snippets
- 18:02, 10 September 2023 diff hist +419 N F5 sdk snippets Created page with "``` import requests import os requests.packages.urllib3.disable_warnings() url = "https://foo.example.com/mgmt/tm/ltm/virtual" AD_USER = os.getenv('AD_USER') AD_PASS = os.env..."
- 22:38, 9 September 2023 diff hist +134 Sql snippets current
- 22:38, 9 September 2023 diff hist +347 N Sql snippets Created page with "``` select (select count(distinct status) from T) = 1 ``` will return 1 or 0 (i.e. true or false) depending on whether all of the rows have the same value in Status or not...."
- 23:47, 7 September 2023 diff hist +669 N Pandas sql Created page with "# Prep for sqlite3 ``` import pandas as pd import sqlite3 def write_sql_from_dfs(): for table, df in dfs.items(): # loop through `dict` of dataframes uuids = [] for..." current
- 21:40, 7 September 2023 diff hist +148 Pandas snippets current
- 20:36, 7 September 2023 diff hist +392 N Pandas snippets Created page with "# DataFrame to JSON for SQL This will do it for all columns all rows. ``` for i in df.columns: df[i] = [json.dumps(x) for x in df[i]] df.to_sql(name='fb1', con=cnx, index=F..."
- 16:44, 7 September 2023 diff hist +103 Invoke-webrequest current
- 16:43, 7 September 2023 diff hist +150 Invoke-webrequest ignore ssl cert current
- 00:15, 7 September 2023 diff hist +44 Curl
- 16:49, 1 September 2023 diff hist +83 N Reactjs list Created page with "# useeffect - https://dev.to/antdp425/react-fetch-data-from-api-with-useeffect-27le" current
- 14:52, 31 August 2023 diff hist +1,304 F5 backup current
- 14:48, 31 August 2023 diff hist +389 F5 backup
- 16:25, 30 August 2023 diff hist 0 Bash oneliners
- 16:23, 30 August 2023 diff hist +125 Bash oneliners
- 15:56, 30 August 2023 diff hist 0 Sumologic Queries current
- 15:56, 30 August 2023 diff hist +259 Sumologic Queries
- 15:54, 30 August 2023 diff hist +265 Sumologic Queries