CLICK ME
yes, even hidden code blocks!
print("hello world!")| ; # - win, ! - alt, ^ - ctrl, + - shift | |
| #MaxHotkeysPerInterval 200 | |
| global en := DllCall("LoadKeyboardLayout", "Str", "00000409", "Int", 1) | |
| ChangeActiveLayoutToEng() | |
| { | |
| WinGet, window_id, ID, A | |
| pid := DllCall("GetWindowThreadProcessId", "UInt", window_id, "Ptr", 0) |
| // ==UserScript== | |
| // @name YouTube (Classic) | Sort, Rearrange & Organize Playlists | |
| // @namespace de.sidneys.userscripts | |
| // @homepage https://gist.githubusercontent.com/sidneys/27e704ec4a1d9bad311d634cbab2f218/raw/ | |
| // @version 29.0.0 | |
| // @description Organize and rearrange your YouTube playlists. Real server-side sorting by duration, title, channel and language. | |
| // @author sidneys | |
| // @icon https://www.youtube.com/favicon.ico | |
| // @noframes | |
| // @include http*://www.youtube.com/* |
| [[Snippets]] | |
| Description = "my personal snippets. Relies on many of my own functions. If you're interested in pmset/disabling assertions, see: https://gist.github.com/varenc/627f6be2a5ec9d52dab3cf0d157be62f" | |
| Output = "" | |
| Tag = [] | |
| command = "" | |
| [[Snippets]] | |
| Description = "start dev file syncer. uses fswatch to know when to run rsync. does not sync .git file. Sort like a write-through cache network file system with only eventual consistency guarantees." | |
| Output = "" |
| /** | |
| * Markdown Quote to Clipboard | |
| */ | |
| var mo = { | |
| version: 1, | |
| btnId: 'clipboard-btn-dceaeae8-1557-4454-883c-05ae99312192', | |
| id:'clipboard-dceaeae8-1557-4454-883c-05ae99312192', | |
| textareaId: 'clipboard-textarea-dceaeae8-1557-4454-883c-05ae99312192', | |
| uniqueId: 'clipboard-script-dceaeae8-1557-4454-883c-05ae99312192', |
| ; How to use: | |
| ; 1. Install AuthotKey: https://www.autohotkey.com | |
| ; 2. Save this script in `My Documents` | |
| ; 3. Create a shortcut in the Startup folder (`Win`+`R`, `shell:startup`) | |
| ; 4. Change the configurations below | |
| ; 5. Start and test the script! | |
| ; Configuration | |
| ; Cultures can be fetched from here: https://msdn.microsoft.com/en-us/library/windows/desktop/dd318693(v=vs.85).aspx |
| ''''''''''''''''''''''''''''' | |
| ' Purpose: Allows you to easily get the RAM configuration of a computer. LAN Sweeper won't tell you the RAM type, but this utility will. This should be useful for RAM upgrades. | |
| ' Requirements: Probably admin in Active Directory | |
| ' Written by: Alex Yancey | |
| ' Date: September 15, 2016 | |
| ''''''''''''''''''''''''''''' | |
| ' More info about SMBIOS can be found in the SMBIOS specification: https://www.dmtf.org/standards/smbios, and from this article: http://www.codeguru.com/cpp/misc/misc/system/article.php/c12347/SMBIOS-Demystified.htm | |
| computer_name = InputBox("Computer name: ", "RAM Identifier") |
| #!/bin/bash | |
| # Settings | |
| outfolder="converted" | |
| codec="libx264" | |
| maxres="448" | |
| #filter="crop=floor(in_w/2)*2:floor(in_h/2)*2:0:0:exact=1,colorspace=bt601-6-625:range=pc:irange=tv:iall=bt601-6-625:format=yuv444p12,zscale=rin=full:tin=601:t=linear,scale=if(gt(iw\,ih)\,min($maxres\,floor((iw+1)/2)*2)\,-2):if(gt(iw\,ih)\,-2\,min($maxres\,floor((ih+1)/2)*2)),zscale=rin=full:r=limited:tin=linear:t=601" | |
| filter="scale=if(gt(iw\,ih)\,min($maxres\,floor((iw+1)/2)*2)\,-2):if(gt(iw\,ih)\,-2\,min($maxres\,floor((ih+1)/2)*2)):out_color_matrix=bt601:out_range=tv:flags=accurate_rnd+full_chroma_inp+full_chroma_int+bicublin" | |
| preset="veryslow" | |
| profile="high" |
| ;------------------------------------------------------------------------------- | |
| ; Jake's AutoHotKey.ahk | |
| ; | |
| ; For Reference: | |
| ; | |
| ; Hotkey Modifiers | |
| ; # - Windows key | |
| ; ! - Alt | |
| ; ^ - Control | |
| ; + - Shift |