Python
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
CPPFLAGS='-Wno-nullability-completeness -Wbuiltin-requires-header -Wexpansion-to-defined' \ | |
CC=/usr/bin/gcc \ | |
rvm reinstall 2.6.3 --with-openssl-dir=`brew --prefix openssl` |
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
# Simple HAProxy config to block ip, domain | |
acl blacklist_ip hdr_ip(x-forwarded-for,-1), map_ip(blacklisted_ips.lst) -m found | |
acl blacklist_domain hdr(host), map_str(blacklisted_domains.lst) -m found | |
http-request deny if is_bad_request or blacklist_ip or blacklist_domain |
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
CREATE EVENT kill_long_transactions ON SCHEDULE EVERY x SECOND | |
DO | |
BEGIN | |
DECLARE max_transaction_time INT DEFAULT 25; | |
DECLARE done INT DEFAULT 0; | |
DECLARE killed_id BIGINT; | |
DECLARE killed_user VARCHAR(16); | |
DECLARE killed_host VARCHAR(64); | |
DECLARE kill_stmt VARCHAR(20); | |
DECLARE time_taken VARCHAR(20); |
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
<label for="auto_suggest">Google Auto Suggest: </label> | |
<input id="auto_suggest" type="text" width="500"> | |
<script src="https://code.jquery.com/jquery-1.11.0.min.js"></script> | |
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.1.0/bootstrap.min.js"></script> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> | |
<script> | |
var google_auto_suggest_url = "http://suggestqueries.google.com/complete/search?client=chrome&q="; | |
$('#auto_suggest').typeahead({ | |
source: function(query, process) { |
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
<script src="https://code.jquery.com/jquery-1.11.0.min.js"></script> | |
<script src="https://code.jquery.com/ui/1.11.0/jquery-ui.min.js"></script> | |
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css"> | |
<script> | |
var google_suggest_url = "http://suggestqueries.google.com/complete/search?client=chrome&q="; | |
$(function() { | |
$("#google-suggest").autocomplete({ | |
source: function(request, response) { | |
var temp_arr = request.term.split(/[.,]+/); // Regex so that sentences after , or . are treated as new sentence. |