This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Param( | |
| # the commands to execute or the file to execute | |
| [Parameter(Mandatory=$false, ValueFromRemainingArguments = $true)] | |
| [string[]]$Commands | |
| ) | |
| Function Main { | |
| If ($Commands) { | |
| Evalute-Line $Commands |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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 | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 | |
| #_______________________________________________________________________ | |
| # | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; 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])) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* demo.css */ | |
| .axis { | |
| stroke: #000; | |
| stroke-width: 1.5px; | |
| } | |
| #demo_1 svg, #demo_2 svg { border: solid 1px #ccc; } |