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
| " commentary.vim - Comment stuff out | |
| " Maintainer: Tim Pope <http://tpo.pe/> | |
| " Version: 1.3 | |
| " echomsg "commentary.vim: before g:loaded_commentary=" . get(g:, 'loaded_commentary', 0) | |
| echom a | |
| if exists("g:loaded_commentary") || v:version < 703 | |
| finish | |
| endif | |
| let g:loaded_commentary = 1 |
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
| /* ==UserStyle== | |
| @name graphql.github.com/explorer - Jul 2024 | |
| @namespace github.com/openstyles/stylus | |
| @version 1.0.0 | |
| @description A new userstyle | |
| @author Me | |
| ==/UserStyle== */ | |
| @-moz-document url-prefix("https://graphql.github.com/explorer") { | |
| /* Insert code here... */ | |
| } |
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
| function _PSReadLineRewriteCommand { | |
| param($key) | |
| $commandLine = '' | |
| $cursorIndex = 0 | |
| [Microsoft.PowerShell.PSConsoleReadLine]::GetBufferState([ref]$commandLine, [ref]$cursorIndex) | |
| if ($commandLine -eq 'prof' -or $commandLine -eq 'profile') { | |
| [Microsoft.PowerShell.PSConsoleReadLine]::Delete(0, $commandLine.Length) | |
| [Microsoft.PowerShell.PSConsoleReadLine]::Insert('. $profile') | |
| } | |
| [Microsoft.PowerShell.PSConsoleReadLine]::AcceptLine() |
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
| using Combinatorics.Collections; | |
| using System.Globalization; | |
| namespace StringComparerTest | |
| { | |
| using ComparerInfo = KeyValuePair<string, StringComparer>; | |
| using StringPermutations = IEnumerable<IEnumerable<string>>; | |
| internal class Program | |
| { |
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
| #!/bin/sh | |
| SOURCE_URL="https://raw.githubusercontent.com/rupa/z/master/z.sh" | |
| OUTPUT_LOC="$HOME/.z.sh" | |
| usage_doc="Usage: $0 [-h] [-u url] [-o file] | |
| -h this help | |
| -u <url> download from <url> | |
| default: $SOURCE_URL | |
| -o <file> download to <file> |
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
| Sub FadeSelectedTextColorInEmail() | |
| Dim objMail As Outlook.MailItem | |
| Dim objDoc As Word.Document | |
| Dim objWordApp As Word.Application | |
| Dim objSelection As Word.Selection | |
| Dim fadeFactor As Single | |
| If TypeName(Application.ActiveInspector.CurrentItem) = "MailItem" Then | |
| Set objMail = Application.ActiveInspector.CurrentItem | |
| If Not objMail.Sent Then |
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
| sludS{5} |
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
| const WSCloseCodeToDesc = { | |
| "0-999": {"short":"Not used.","long":"Not used."}, | |
| "1000": {"short":"Normal Closure","long":"The connection successfully completed the purpose for which it was created."}, | |
| "1001": {"short":"Going Away","long":"The endpoint is going away, either because of a server failure or because the browser is navigating away from the page that opened the connection."}, | |
| "1002": {"short":"Protocol error","long":"The endpoint is terminating the connection due to a protocol error."}, | |
| "1003": {"short":"Unsupported Data","long":"The connection is being terminated because the endpoint received data of a type it cannot accept. (For example, a text-only endpoint received binary data.)"}, | |
| "1004": {"short":"Reserved","long":"Reserved. A meaning might be defined in the future."}, | |
| "1005": {"short":"No Status Rcvd","long":"Reserved. Indicates that no status code was provided even though one was expected."}, | |
| "1006": {"short":"Abnormal Closure","long":"Reserved. Indicates that |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>MediaRecorder Example - Record and Save Audio</title> | |
| <link rel="icon" href="data:,"> | |
| </head> | |
| <body> |