I hereby claim:
- I am dotiful on github.
- I am dotiful (https://keybase.io/dotiful) on keybase.
- I have a public key whose fingerprint is 0345 3FBE 978E E76F 65D9 1C04 7B75 0EA3 A540 299F
To claim this, I am signing this object:
This file contains 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
<# | |
The command to run, built from the raw link of this gist | |
Win+R | |
iexplore http://boxstarter.org/package/url? | |
OR (if you don't like the way the web launcher force re-installs everything) | |
Create another script like the following to install and run the gist: |
Collapsible markdown with <details>
<details>
<summary>Details</summary>
hidden, collapsable content...
</details>
Demo:
This file contains 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
/* Extracted from github.com */ | |
body { | |
-ms-text-size-adjust: 100%; | |
-webkit-text-size-adjust: 100%; | |
line-height: 1.5; | |
color: #b8bfc6; | |
/* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; */ | |
font-style: normal; | |
line-height: 1.625rem; |
This file contains 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
/* _ | |
___/\ /(_)_ __ ___ ___ ___ ___ | |
/ __\ \ / / | '_ ` _ \ / __/ __/ __| | |
\__ \\ V /| | | | | | | (__\__ \__ \ | |
|___/ \_/ |_|_| |_| |_|\___|___/___/ | |
@author : Artem Medvedev | |
@link : https://gist.github.com/dotiful/b2b2e0344fe4ea3ff9a0cdc7bad5a51f | |
@description : Safari extension with shortcuts similar to Vim |
This file contains 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
"" _ | |
" ___/\ /(_)_ __ ___ _ __ ___ | |
" / __\ \ / / | '_ ` _ \| '__/ __| | |
" \__ \\ V /| | | | | | | | | (__ | |
" |___/ \_/ |_|_| |_| |_|_| \___| | |
" | |
" @author : Artem Medvedev | |
" @link : https://gist.github.com/dotiful/e851b4cb2d9f557b1611b72f59fbf48f | |
" @description : Safari extension with shortcuts similar to Vim | |
" |
This file contains 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
/** | |
* Surfingkeys config. | |
* | |
* An extension that adds Vim-like bindings to your browser in order to extend | |
* it using JavaScript and a keyboard. | |
* | |
* @link https://git.io/surfingkeys | |
* @author Artem Medvedev <[email protected]> | |
* | |
* Created at : 2019-01-15 |
This file contains 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 bash | |
for domain in twitter.com tosbourn.com i.ua; do \ | |
google_dns=$(dig @8.8.8.8 ${domain} | awk '/msec/{print $4}') | |
cloudflare_dns=$(dig @1.1.1.1 ${domain} | awk '/msec/{print $4}') | |
open_dns=$(dig @208.67.222.222 ${domain} | awk '/msec/{print $4}') | |
printf "${domain}\tCloudFlare DNS ${cloudflare_dns}ms\tGoogle DNS ${google_dns}ms\tOpenDNS ${open_dns}ms\n" | |
done |