I hereby claim:
- I am snydergd on github.
- I am snydergd91 (https://keybase.io/snydergd91) on keybase.
- I have a public key ASCcl7pOoGGTGcnsfL85zCqlUtuyI6_oL9VLMCvLiAvFrwo
To claim this, I am signing this object:
.minCal { | |
display: inline-table; | |
padding: 0.5em; | |
text-align: center; | |
width: 100%; | |
border: 1px solid black; | |
padding: 0; | |
background-color:white; | |
color: black; | |
} |
from selenium import webdriver | |
from selenium.common.exceptions import ElementNotInteractableException | |
from selenium.webdriver.common.action_chains import ActionChains | |
from selenium.webdriver.remote.webelement import WebElement | |
from selenium.webdriver.support.wait import WebDriverWait | |
from selenium.webdriver.support import expected_conditions | |
from selenium.webdriver.common.keys import Keys | |
import csv | |
driver = webdriver.Chrome() |
/* | |
A quick and dirty javascript to paste in devtools (F12 in browser) console to remove client-side paywalls | |
After running, you'll have a "hide" button you can press to get rid of the currently displayed paywall/overlay. | |
You may need to press it several times. | |
You'll also have a "close" button to hide the buttons. | |
If you want to use on Android/Chrome, you can! Use the following abbreviated version. Add as a bookmark | |
(will have to manually re-add the "javascript: " at the front) then launch by typing the name of the bookmark | |
in the address bar and pressing on it (clicking from the bookmark section does not work). I named my bookmark |
I hereby claim:
To claim this, I am signing this object:
#!/bin/env python3 | |
import argparse | |
import requests | |
import os | |
import json | |
from datetime import datetime, timedelta | |
import random | |
parser = argparse.ArgumentParser() |
{ | |
"basics": { | |
"name": "George Snyder", | |
"label": "Software Engineer", | |
"image": "https://gravatar.com/avatar/9fadd19f49be4a105a33390a261e33d7?s=400&d=robohash&r=x", | |
"email": "[email protected]", | |
"phone": "507-353-0199", | |
"url": "https://snydergd.xyz", | |
"summary": "Software Engineer with experience in Java, Web, and DevOps with a passion for learning. I really enjoy understanding new ways of looking at problems. From developing new software to configuring existing software that's been around for several years, I'm excited to solve business challenges in the simplest and most future-proof way possible.", | |
"location": { |
const http = require('http'); | |
const tls = require('tls') | |
const net = require('net'); | |
function setupTls({host, port}) { | |
return new Promise((resolve) => { | |
const socket = tls.connect( | |
{ | |
port: port, | |
host: host, |
param( | |
[Parameter(Mandatory=$true)]$image, | |
$tag = "latest", | |
$registry = "registry.hub.docker.com", | |
$outputFolder = "C:\temp\dockerStuff" | |
) | |
try { | |
invoke-restmethod "https://$registry/v2/$image/manifests/$tag" | |
} catch { |
#!/bin/bash | |
usage() { | |
echo "Usage: $0 <version> # version example: 7.4.0-preview.3" >&2; | |
} | |
if [ "$1x" = "x" ]; then | |
usage; | |
echo "No version supplied - using default" >&2; | |
VERSION="7.4.0-preview.3"; |
#!/bin/bash | |
# | |
# Summary: Installs/upgrades python installations on your machine. | |
# | |
# Prerequisites: | |
# - jq and curl to be installed and in a folder on the PATH environment variable | |
# - PLATFORM and STORAGE_FOLDER variables below to be set correctly (did not take time to automatically pick) | |
# |