# Anchor
click_link 'Save'
# Button
click_button 'awesome'
# Both above
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 CONCAT(table_schema, '.', table_name), | |
CONCAT(ROUND(table_rows / 1000000, 2), 'M') rows, | |
CONCAT(ROUND(data_length / ( 1024 * 1024 * 1024 ), 2), 'G') DATA, | |
CONCAT(ROUND(index_length / ( 1024 * 1024 * 1024 ), 2), 'G') idx, | |
CONCAT(ROUND(( data_length + index_length ) / ( 1024 * 1024 * 1024 ), 2), 'G') total_size, | |
ROUND(index_length / data_length, 2) idxfrac | |
FROM information_schema.TABLES | |
ORDER BY data_length + index_length DESC | |
LIMIT 10; |
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
1.upto(100).each do |n| | |
print "fizz" if n % 3 == 0 | |
print "buzz" if n % 5 == 0 | |
print n if (n % 3 != 0 && n % 5 != 0) | |
end |
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
package main | |
import ( | |
"fmt" | |
"net/http" | |
"os" | |
) | |
func main() { | |
if len(os.Args) < 2 { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
size: | |
13,9,false | |
landscape: | |
U,S,G,B,Y,Y,Y,Y,R,G,B,R,K, | |
Y,I,I,Y,B,I,I,Y,K,I,I,Y,N, | |
I,I,B,I,B,I,G,I,G,I,S,I,I, | |
G,B,Y,I,I,R,B,I,S,I,S,U,N, | |
K,Y,Y,B,B,B,S,Y,I,I,S,K,B, | |
Y,B,I,I,Y,Y,I,I,I,K,S,K,N, |
Argus Security: Protection Guaranteed (Order and Chaos)
- 2x Global Food Initiative (Data and Destiny) ●●
- 2x Hostile Takeover (Core Set)
- 3x Priority Requisition (Core Set)
- 2x Project Atlas (What Lies Ahead)
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
size: | |
13,9,true | |
landscape: | |
U,I,Y,Y,Y,I,G,G,U,U,U,K,N, | |
G,Y,I,Y,Y,Y,I,I,I,U,U,K,S, | |
G,K,I,I,I,U,G,Y,I,I,I,I,N, | |
Y,G,Y,Y,K,I,G,Y,Y,I,G,K,G, | |
I,I,U,I,I,R,G,G,G,I,U,K,N, | |
G,R,I,I,G,I,I,I,U,R,I,U,K, |
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
size: | |
13,9,false | |
landscape: | |
U,U,U,U,Y,Y,Y,K,G,G,B,R,K, | |
Y,I,I,U,U,I,I,Y,G,I,I,Y,N, | |
I,I,K,I,U,I,G,I,G,I,S,I,I, | |
G,Y,Y,I,I,U,G,I,G,I,R,K,N, | |
K,Y,Y,Y,U,U,G,Y,I,I,K,K,K, | |
Y,Y,I,I,Y,G,I,I,I,K,S,K,N, |