aws ec2 describe-images \
--owners amazon \
--filters 'Name=name,Values=amzn-ami-hvm-2018.??.?.*-x86_64-gp2' 'Name=state,Values=available' \
| jq -r '.Images
| sort_by(.CreationDate)
I hereby claim:
- I am morkot on github.
- I am melekhovskiy (https://keybase.io/melekhovskiy) on keybase.
- I have a public key ASA6eSd3i3pcQ_mxoj4fJtHJbV8JgVo1g3r70z2-WH-Ecgo
To claim this, I am signing this object:
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/bash | |
META_DATA_URL="http://169.254.169.254/latest/meta-data/" | |
ATTRIBUTES="public-hostname instance-id" | |
INDEX=/var/www/html/index.html | |
yum install httpd -y | |
chkconfig httpd on | |
echo '<!DOCTYPE html> |
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
# Start with export LC_ALL=C && mc on OSX | |
[skin] | |
description = Solarized (mostly) dark skin for Midnight Commander. | |
256colors = true | |
[Lines] | |
horiz = ─ | |
vert = │ | |
lefttop = ┌ | |
righttop = ┐ |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Ansi 0 Color</key> | |
<dict> | |
<key>Color Space</key> | |
<string>sRGB</string> | |
<key>Blue Component</key> | |
<real>0.25882352941176473</real> |
Located in alphabetical order (not prefer)
- ab – slow and single threaded, written in
C
- apib – most of the features of ApacheBench (
ab
), also designed as a more modern replacement, written inC
- baloo – Expressive end-to-end HTTP API testing made easy, written in Go (
golang
) - bombardier – Fast crossplatform HTTP benchmarking tool, written in Go (
golang
) - boom – HTTP(S) load generator, ApacheBench (
ab
) replacement, written in Go (golang
) - curl-loader – performance loading of various application services and traffic generation, written in
C
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
<key name="Palette1" modified="2016-09-26 04:32:25" build="160914"> | |
<value name="Name" type="string" data="Material"/> | |
<value name="ExtendColors" type="hex" data="00"/> | |
<value name="ExtendColorIdx" type="hex" data="0e"/> | |
<value name="TextColorIdx" type="hex" data="00"/> | |
<value name="BackColorIdx" type="hex" data="10"/> | |
<value name="PopTextColorIdx" type="hex" data="10"/> | |
<value name="PopBackColorIdx" type="hex" data="10"/> | |
<value name="ColorTable00" type="dword" data="00383226"/> | |
<value name="ColorTable01" type="dword" data="00423607"/> |
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
<key name="Colors" modified="2015-12-10 22:46:43" build="151210"> | |
<value name="Count" type="dword" data="00000001"/> | |
<key name="Palette1" modified="2015-12-10 22:46:43" build="151210"> | |
<value name="Name" type="string" data="Material Theme"/> | |
<value name="ColorTable00" type="dword" data="004d4335"/> | |
<value name="ColorTable01" type="dword" data="006b60eb"/> | |
<value name="ColorTable02" type="dword" data="008de8c3"/> | |
<value name="ColorTable03" type="dword" data="0095ebf7"/> | |
<value name="ColorTable04" type="dword" data="00c4cb80"/> | |
<value name="ColorTable05" type="dword" data="009024ff"/> |
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
SELECT IFNULL(TABLE_SCHEMA, 'total') as table_schema, SUM(TABLE_ROWS) as element_count | |
FROM INFORMATION_SCHEMA.TABLES | |
WHERE TABLE_SCHEMA IN (SELECT schema_name FROM information_schema.schemata) | |
GROUP BY TABLE_SCHEMA WITH ROLLUP; |