Skip to content

Instantly share code, notes, and snippets.

This file has been truncated, but you can view the full file.
OUI/MA-L Organization
company_id Organization
Address
00-22-72 (hex) American Micro-Fuel Device Corp.
002272 (base 16) American Micro-Fuel Device Corp.
2181 Buchanan Loop
Ferndale WA 98248
US
@fdrewett
fdrewett / EnableLinkedConnections.reg
Created January 24, 2020 19:25 — forked from tkarpinski/EnableLinkedConnections.reg
A reg file to EnableLinkedConnections (Network Drives over UAC) http://support.microsoft.com/kb/937624
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]
"EnableLinkedConnections"=dword:00000001

Keybase proof

I hereby claim:

  • I am fdrewett on github.
  • I am frank_505_it (https://keybase.io/frank_505_it) on keybase.
  • I have a public key ASCqXIF9LcO6EDCuzKCZTXi6M7qR7vg8z8-FGDrFsvzYngo

To claim this, I am signing this object:

@fdrewett
fdrewett / arch-linux-install
Created December 11, 2019 01:01 — forked from binaerbaum/arch-linux-install
Minimal instructions for installing arch linux on an UEFI NVMe system with full system encryption using dm-crypt and luks
# Install ARCH Linux with encrypted file-system and UEFI
# The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description.
# Download the archiso image from https://www.archlinux.org/
# Copy to a usb-drive
dd if=archlinux.img of=/dev/sdX bs=16M && sync # on linux
# Boot from the usb. If the usb fails to boot, make sure that secure boot is disabled in the BIOS configuration.
# Set swiss-french keymap
@fdrewett
fdrewett / Get-TinyURL
Created October 14, 2019 22:42 — forked from dkittell/Get-TinyURL
Create TinyURL within PowerShell
clear
Function Get-TinyURL {
#PowerShell - Get-TinyURL API Call
param (
[Parameter(Mandatory=$true,ValueFromPipeline=$true)]
[String]
$sHTTPLink
)
if ($sHTTPLink.StartsWith("http://") -eq $true -or $sHTTPLink.StartsWith("https://") -eq $true)
#include <Adafruit_NeoPixel.h>
#define PIN 2
#define Pixels 25
// Parameter 1 = number of pixels in strip
// Parameter 2 = Arduino pin number (most are valid)
// Parameter 3 = pixel type flags, add together as needed:
// NEO_KHZ800 800 KHz bitstream (most NeoPixel products w/WS2812 LEDs)
// NEO_KHZ400 400 KHz (classic 'v1' (not v2) FLORA pixels, WS2811 drivers)