Skip to content

Instantly share code, notes, and snippets.

View brett-schneider's full-sized avatar

brett-schneider

View GitHub Profile
@brett-schneider
brett-schneider / Bluetooth-Company-Identifiers.csv
Created November 7, 2024 10:09 — forked from angorb/Bluetooth-Company-Identifiers.csv
[Bluetooth Company Identifiers] Company identifiers are unique numbers assigned by the Bluetooth SIG to member companies requesting one.
0x0000 Ericsson Technology Licensing
0x0001 Nokia Mobile Phones
0x0002 Intel Corp.
0x0003 IBM Corp.
0x0004 Toshiba Corp.
0x0005 3Com
0x0006 Microsoft
0x0007 Lucent
0x0008 Motorola
0x0009 Infineon Technologies AG
@brett-schneider
brett-schneider / forward_proxy.conf
Created October 28, 2024 13:07 — forked from isabelcosta/forward_proxy.conf
testing-tinyproxy-conf-examples
## forwardproxy.conf -- tinyproxy daemon configuration file
User nobody
Group nogroup
Port 8888
Listen 10.0.2.35
BindSame yes
Timeout 600
@brett-schneider
brett-schneider / network-namespace-demo.sh
Created November 23, 2022 19:02 — forked from agentzh/network-namespace-demo.sh
Create 2 network namespaces and bridge them and the default namespace together so that they can directly talk to each other via static IP addresses; also enable Internet access in all the namespaces via NAT.
#!/usr/bin/env bash
set -x
main_if=ens33
ping_count=1
echo 1 > /proc/sys/net/ipv4/ip_forward || exit 1
ip netns del ns1 > /dev/null 2>&1
@brett-schneider
brett-schneider / drplanoAutoDOBUSC.js
Created March 16, 2022 17:36
tampermonkey user script that saves and autofills DOB and USC details in dr plano booking
// ==UserScript==
// @name Dr Plano DOB USC
// @namespace http://tampermonkey.net/
// @version 0.2
// @description Autofill DOB and USC in Dr Plano Booking
// @author https://github.com/brett-schneider
// @include /^https?://.*drpCourseId=\d*
// @match *?drpCourseId=*
// @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
// @grant GM_getValue
https://www.verkehr.nrw/webcams/10100022103870128212.jpg
https://www.verkehr.nrw/webcams/10100253688674747061.jpg
https://www.verkehr.nrw/webcams/10100308460257231676.jpg
https://www.verkehr.nrw/webcams/10100453176019429802.jpg
https://www.verkehr.nrw/webcams/10100494175154602454.jpg
https://www.verkehr.nrw/webcams/10100597366060758617.jpg
https://www.verkehr.nrw/webcams/10100909830981984257.jpg
https://www.verkehr.nrw/webcams/10100956863457840062.jpg
https://www.verkehr.nrw/webcams/10100973958359842825.jpg
https://www.verkehr.nrw/webcams/10101043834463572886.jpg
@brett-schneider
brett-schneider / best albums
Last active October 25, 2024 09:21
albums
# radiohead - ok computer
# badly drawn boy - have you fed the fish
# beastie boys - ill communication
# daft punk - discovery
# stakka bo - great blondino
# smashing pumpkins - siamese dream
# dire straits - brothers in arms
# portishead - dummy
# nick cave and the bad seeds - let love in
# depeche mode - violator
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC4TBkP/TjliBKYw8gs/gPjhum8L/U99sCBc/3mQGZzTtxM1CtwJBONDYaRLoI/QMfi+TX/ILx0uOeXzMlBwuxQNmHJciI91F9/UJ/HBjwSqzjO7ETHChNOY9jezEuPy2T3ZB2m/zRqPqn3UAVQEDtRtF5cx1KmMCvxaPLUA/PkhzffDSt6d5XCX42dB5Nn3Udg4Rm4KB0IsqpN6dfLyAOuJBDhlN0xfX7ZOi2NMtEGgAAjE7IxKgBPMWTSXkOms/E72qCM7WGwzSkYfUxbd88nnnRqgV35V/xkfJCwxzYGrYWfwbhVdy5MlP3lFJM2QjO6O13G4cngRXwR4Q2jEY8j
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdNnOkmtoD3+t3vAYy3Rmgy9LRXGgCvSh80EiVyiNpsJFu5IPRr9dQHlOyuUu5/DZX2qmf4nGcC//Kw5RErAeE0Dli0KZ4piAGzMcz6MijXYgxTxu22aJCmDRNKfH9gVO/THh1l2cY1ybrk1PUOfmb+dVn+3v4wQJJBbjwrIcqFVJMSrCetWLOLqtWkXQgJ4XWAIhuEAM0smgR91j6fE6/ZLEEA3kepM7V1tkwapuGPMCpHFFq4EzDLwq7JyY7hqAkHktlHz+zXubIJHt+86RlwhtfCoQQrDqInantmemzoMu/qUovrDwoPlnNjOvBFl0K+q5CnOUe3+xrFKzLMg9
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAIAQDdG4v2dzGlVNp3172dGqragjPV2ysgHoA6yKXhqdeu0jpAIzCV0m+FTlColadWxiNeIikvVfaPJ/9t/gFJajJHFsieMmQiL65pcKri4vRPrgxypFpAgcoZ5fIeGPvgbXx16s5D/urUNlPxPW8Xuh/+92qayzxog3lF4Kn1vOGysqIbUoDMblXAxDR0InlJFfwrB6Kf2MXb5pMf07cMgmIAxjiEpIv8N
@brett-schneider
brett-schneider / pscan
Last active September 29, 2021 11:04
port scanner for bash
#!/bin/bash
## helpers
dec2ip() {
local delim ip dec=$@
for e in {3..0}
do ip+=${delim}$(((dec>>(8*e))&0xFF)) && delim=.
done
printf '%s\n' "$ip"
}