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
# Contains : | |
# * find_duplicated_index.sql | |
# * find_missing_index.sql | |
# * find_unused_index.sql | |
# * generate_data.sql : Generate a big dummy set of data | |
# * update_PG_varchar_to_string.rb : Update all field in varchar to string into a database | |
# * mass_export_and_delete.sql | |
# * remove_update_duplicate.sql | |
# * sharding_table_stats.sql : Get avg, percentile & co for a table over sharding |
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_time_record = window.performance.now(); | |
MY CODE TO PERFORM | |
end_time_record = window.performance.now(); | |
function_as_string = arguments.callee.toString() | |
console.log(function_as_string.substr(0, function_as_string.indexOf('{')) + '(+' + (end_time_record - start_time_record) + ' ms)'); |
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
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("my-domain.com") { | |
body { | |
border-top: 2px solid orange; | |
} | |
body:before { | |
background-color: orange; | |
content: "PROD"; |
NewerOlder