Skip to content

Instantly share code, notes, and snippets.

View no-identd's full-sized avatar
🌫️
My status? Haven't the foggiest. But: Don't let that deter ya from mentioning me

no_identd no-identd

🌫️
My status? Haven't the foggiest. But: Don't let that deter ya from mentioning me
View GitHub Profile
@Thecarisma
Thecarisma / $.ps1
Last active December 14, 2023 20:54
Powershell - Shebang, Hebang and Webang Command + Subshell
Param(
# the commands to execute or the file to execute
[Parameter(Mandatory=$false, ValueFromRemainingArguments = $true)]
[string[]]$Commands
)
Function Main {
If ($Commands) {
Evalute-Line $Commands
<?php
# Parameters:
# name: The name field the user supplied, minus any tripcode (before #)
# email: User supplied email field
# sub: user supplied subject field
# com: user supplied comment field (before or after wordfilters? dunno)
# md5: md5 of the supplied image. null if no image.
# ip: the IP of the user, in unsigned integer (packed) form
# mod: true if the user is a mod
#
@no-identd
no-identd / Show-AdvancedPowerProfileOptions.cmd
Last active June 2, 2025 12:18 — forked from theultramage/powercfg-win7-all-settings.bat
Show/hide all hidden settings in Windows Power Options
@echo off
SETLOCAL ENABLEEXTENSIONS
REM I will eventually use ENABLEDELAYEDEXPANSION to upgrade this to use a for loop so I can shove all the data attributes into one thing
REM Also, I intend to add an auto-dump of the hidden attributes from the registry to populate the loop
REM Also, I intend to split this into two scripts (1 show, 1 hide) and maybe port it to powershell
REM SET attrib=+ATTRIB_HIDE
SET attrib=-ATTRIB_HIDE
REM Harddisk settings
powercfg -attributes 0012ee47-9041-4b5d-9b77-535fba8b1442 0b2d69d7-a2a1-449c-9680-f91c70521c60 %attrib%
@DMilmont
DMilmont / Control_Charts.py
Created October 1, 2015 16:01
Control Charts in Python
#!/usr/bin/env python
#_______________________________________________________________________
#
# C C C P i s C o n t r o l C h a r t s i n P y t h o n
#_______________________________________________________________________
#
@devn
devn / midijam.clj
Created September 4, 2015 23:47
playing midi notes from overtone to ableton, reason, etc. using MIDI Patchbay
;; http://notahat.com/midi_patchbay/
;; Create a virtual input and virtual output in MIDI patchbay
;; input name: "Overtone"
;; output name: "yourchoice"
;; In Reason, Ableton, etc. select "yourchoice"
;; as the midi input for a channel.
(ns jam.core
(:use [overtone.live]))
@RichMorin
RichMorin / demo.css
Created March 19, 2012 16:20
Hive Plot Demo Rework
/* demo.css */
.axis {
stroke: #000;
stroke-width: 1.5px;
}
#demo_1 svg, #demo_2 svg { border: solid 1px #ccc; }