Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| // ==UserScript== | |
| // @name @chaoticvibing Twitter Blue Nerd - twitter.com | |
| // @namespace Violentmonkey Scripts | |
| // @match *://*.twitter.com/* | |
| // @match *://*.x.com/* | |
| // @grant none | |
| // @version 1.9.2 | |
| // @author @chaoticvibing - GH @busybox11 | |
| // @description 11/9/2022, 11:45:28 PM | |
| // @updateURL https://gist.githubusercontent.com/busybox11/53c76f57a577a47a19fab649a76f18e3/raw |
** Step 1 **
Install ffmpeg with the vidstab plugin.
brew install ffmpeg --with-libvidstab| # Created by Bryan Goodrich | |
| # Version 0.1 | |
| # | |
| # Title: List Out Of Lambda [in R] | |
| # | |
| # An adaptation of Steve Losh's JavaScript exploration[1] with a hat tip to | |
| # Hadley Wickham's Advanced R Programming[2] that led me there. | |
| # | |
| # References | |
| # [1] http://stevelosh.com/blog/2013/03/list-out-of-lambda/ |
People
:bowtie: |
π :smile: |
π :laughing: |
|---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
| import java.util.Calendar; | |
| public class TaxiFare { | |
| private static final String DECIMAL_POINT = "."; | |
| private static final String EMPTY_STRING = ""; | |
| /** DECLARATION OF CONSTANTS */ | |
| /** Standard Rate - between 8am and 8pm Mon - Sat excl Public Holidays */ | |
| private static final int MIN_KM = 1; | |
| public static final int STD_INIT = 410; /** Initial Fare - includes 1km or 170 secs */ |
| var parser = document.createElement('a'); | |
| parser.href = "http://example.com:3000/pathname/?search=test#hash"; | |
| parser.protocol; // => "http:" | |
| parser.hostname; // => "example.com" | |
| parser.port; // => "3000" | |
| parser.pathname; // => "/pathname/" | |
| parser.search; // => "?search=test" | |
| parser.hash; // => "#hash" | |
| parser.host; // => "example.com:3000" |