Skip to content

Instantly share code, notes, and snippets.

@mhornsby
mhornsby / tekton_socket.scad
Created March 29, 2023 11:13 — forked from brandonagr/tekton_socket.scad
OpenSCAD file to print socket holders for tekton brand 1/4 and 3/8 socket holders.
// sae
//socketDiameters = [ 17.121, 17.121, 17.121, 18.263, 20.216, 22.254, 24.398, 26.392, 28.469, 30.591];
//socketLabels = [
//"\u2075/\u2081\u2086", // 5/16
//"\u00b3/\u2088", // 3/8
//"\u2077/\u2081\u2086", // 7/16
//"\u00b9/\u2082", // 1/2
//"\u2079/\u2081\u2086", // 9/16
//"\u2075/\u2088", // 5/8
//"\u00B9\u00B9/\u2081\u2086", // 11/16
@mhornsby
mhornsby / disable-windows-update.ps1
Created October 20, 2018 06:31 — forked from mikebranstein/disable-windows-update.ps1
Disables Windows Update with PowerShell
# set the Windows Update service to "disabled"
sc.exe config wuauserv start=disabled
# display the status of the service
sc.exe query wuauserv
# stop the service, in case it is running
sc.exe stop wuauserv
# display the status again, because we're paranoid