I hereby claim:
- I am 0187773933 on github.
- I am 46742274 (https://keybase.io/46742274) on keybase.
- I have a public key ASDsjgkXK1UQOGO34fPHSvx_waNXv7ozdQb1FMsdwymtHgo
To claim this, I am signing this object:
// ==UserScript== | |
// @name Chess Com POST PGN to Lichess | |
// @namespace http://userstyles.org | |
// @description Posts PGN to Lichess via Added Button | |
// @author 707433 | |
// @include *://*chess.com/live/* | |
// @run-at document-start | |
// @version 0.1 | |
// ==/UserScript== |
from subprocess import check_output | |
from threading import Timer | |
import os | |
# https://www.python.org/downloads/windows/ | |
# http://www.nirsoft.net/utils/nircmd.html | |
# http://www.nirsoft.net/utils/nircmd-x64.zip | |
NircCMD = os.path.join( "C:\\" , "Program Files" , "NirCmd" , "nircmd.exe" ) | |
NircCMD = '"' + NircCMD + '"' + " setvolume 1 " |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
import math | |
from geopy.geocoders import Nominatim | |
from geopy.distance import great_circle | |
from geopy.distance import geodesic | |
from geopy.distance import vincenty | |
geolocator = Nominatim( user_agent="lab6" ) | |
# https://stackoverflow.com/a/52371976 | |
def decimal_degrees_to_dms( deg , type='lat' ): |
import os | |
import sys | |
import re | |
import requests | |
from bs4 import BeautifulSoup | |
from pprint import pprint | |
from tqdm import tqdm | |
from concurrent.futures import ThreadPoolExecutor | |
from dotenv import load_dotenv, find_dotenv |
#!/usr/bin/env python3 | |
import json | |
import requests | |
from pprint import pprint | |
from datetime import datetime , timedelta , time | |
from time import localtime, strftime , sleep | |
from pytz import timezone | |
eastern_tz = timezone( "US/Eastern" ) |
package main | |
// https://github.com/longXboy/gotunnel | |
import ( | |
"fmt" | |
"io" | |
"log" | |
"net" | |
"os" |
import sys, re, os, argparse | |
from docx import Document | |
import subprocess as sub | |
import time | |
from tqdm import tqdm | |
from pprint import pprint | |
import re | |
# https://raw.githubusercontent.com/SyntaxOverflowByte/word_count/master/word_count.py |
const process = require( "process" ); | |
const path = require( "path" ); | |
const global_package_path = process.argv[ 0 ].split( "/bin/node" )[ 0 ] + "/lib/node_modules"; | |
const nodecastor = require( path.join( global_package_path , "nodecastor" ) ); | |
( async ()=> { | |
// "192.168.1.102" | |
// "urn:x-cast:com.url.cast" | |
// Display Name = URL Cast Receiver |
#!/bin/bash | |
# Quick Find Chromecast IP's | |
# python3 -c 'import pychromecast; print(pychromecast.get_chromecasts())' | |
# Then ARP Scan to Find Matching MacAddress | |
# arp -na | |
MacAddress="f0:ef:86:9:c3:30" | |
ChromecastIP=$(arp -na | grep -i $MacAddress | tail -1 | awk '{print $2}' | cut -d "(" -f2 | cut -d ")" -f1) |