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
# This Gist helps you analyze mysql slow query logs. | |
# This Ruby code should not be used as an example of tested, | |
# production ready, or idiomatic Ruby. You've been warned. | |
# 1. Download and extract slow logs. | |
# 2. Specify a directory to analyze, using Dir[] syntax: | |
DIRECTORY_TO_ANALYZE = "./mysql_slow_logs/2012/*/*/mysqld_slow.log" | |
# 3. Run the script with "ruby ./mysql_slow_log_parser.rb" |
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
def random_between_1_and_3 | |
(rand * 3).ceil | |
end | |
file = File.open('results.csv', 'w') | |
file.puts 'car, first_choice, expose, second_choice, win, switch, switch_and_win, stay_and_win' | |
1_000_000.times do |
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
<test-fixture id="basic"> | |
<template> | |
<r-api path="api.widget.list"></r-api> | |
</template> | |
</test-fixture> | |
<dom-module id="fake-google-api"> | |
<template> | |
<iron-ajax id="widgetList" | |
auto |
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
[16:44:51] Using gulpfile ~/polymer/gulpfile.js | |
[16:44:51] Starting 'wct:local'... | |
Starting Selenium server for local browsers | |
Selenium server running on port 40499 | |
Web server running on port 2000 and serving from ~/polymer | |
chrome 46 Beginning tests via http://localhost:2000/components/polymer/generated-index.html?cli_browser_id=0 | |
chrome 46 ✖ Test Suite Initialization | |
Failed to execute 'registerElement' on 'Document': Registration failed for type 'dom-module'. A type with that name is already registered. | |
<unknown> at <unknown> at /components/polymer/app/bower_components/polymer/polymer-micro.html:308:0 |
OlderNewer