I hereby claim:
- I am lachlanarthur on github.
- I am lachlan (https://keybase.io/lachlan) on keybase.
- I have a public key whose fingerprint is E818 A2FB 0842 D306 F059 42C9 EA0F 46EF FCCA E2A0
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| /*! | |
| * grid layout mode for Isotope | |
| * based on cellsByRows layout | |
| */ | |
| ( function( window ) { | |
| 'use strict'; | |
| function GridDefinition( LayoutMode ) { |
| .ui-datepicker { | |
| margin-bottom: @line-height-computed; | |
| background-color: @panel-bg; | |
| border: 1px solid transparent; | |
| border-radius: @panel-border-radius; | |
| .box-shadow(0 1px 1px rgba(0,0,0,.05)); | |
| border-color: @panel-default-border; | |
| a { | |
| border-radius: @border-radius-base; |
| $VideoURL = Read-Host -Prompt 'Adult Swim video page URL' | |
| $Temp = "temp_" + ( $VideoURL -replace '[<>:"/\\|?*]','_' ) | |
| New-Item -ItemType Directory -Path "./$($Temp)" -Force | Out-Null | |
| if ( -not ( Test-Path "./$($Temp)/Video_Page.html" ) ) { | |
| "Downloading webpage..." | Write-Host | |
| Invoke-WebRequest $VideoURL -OutFile "./$($Temp)/Video_Page.html" | |
| } |
| $E = [char]0x001b | |
| $CB_Reset = "$E`[0m" | |
| $C_Default = "$E`[39m" | |
| $C_Black = "$E`[30m" | |
| $C_Red = "$E`[31m" | |
| $C_Green = "$E`[32m" | |
| $C_Yellow = "$E`[33m" | |
| $C_Blue = "$E`[34m" |
| <?php | |
| /** | |
| * Add `<optgroup>` support to `<select>` fields. | |
| * | |
| * Create optgroups by adding options with values `optgroup-something`. | |
| * All subsequent options will be in the group. | |
| * | |
| * @param string $choice_markup The current option HTML | |
| * @param array $choice The current choice data |
| /** | |
| * Toggle a class between child elements. Make a simple gallery fader! | |
| * | |
| * @param {Element} parent The wrapper element | |
| * @param {string} activeClass Class to add to active child | |
| * @param {number} timeout Milliseconds to wait between children | |
| * @returns {() => void} Stop function that ends the fader | |
| * | |
| * @fires `beforeNext` Event fires before switching to new child. Bubbles. Cancelable with `preventDefault()`. | |
| * - `e.target` => Current child |
| <?php | |
| /** | |
| * Removes hooks that trigger a certain class method, | |
| * even if you don't have a reference to the class instance. | |
| * | |
| * @global \WP_Hook[] $wp_filter | |
| * @param string $filter | |
| * @param string $class | |
| * @param string $method |
| # Install Scoop | |
| Set-ExecutionPolicy RemoteSigned -scope CurrentUser | |
| Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh') | |
| # Exclude scoop dirs from Windows Defender | |
| scoop install sudo | |
| sudo Add-MpPreference -ExclusionPath "$env:HOME\scoop" | |
| sudo Add-MpPreference -ExclusionPath "$env:ProgramData\scoop" | |
| # Enable parallel downloads |