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
-- Bruteforce. Index all the columns in all tables of a db. | |
-- Find the data types | |
-- select distinct data_type from information_schema.columns where table_schema="DATABASE"; | |
select | |
concat( "ALTER TABLE `DATABASE`.`", table_name , "` ADD INDEX ( `",column_name ,"` );" ) | |
from information_schema.columns where table_schema='DATABASE' and | |
data_type not in ('text', 'longtext', 'mediumtext','tinytext' ); |
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
//source: http://www.toao.net/48-replacing-smart-quotes-and-em-dashes-in-mysql | |
//By Mango, March 5th, 2009 | |
//clean charset | |
function c($text){ | |
// First, replace UTF-8 characters. | |
$text = str_replace( | |
array("\xe2\x80\x98", "\xe2\x80\x99", "\xe2\x80\x9c", "\xe2\x80\x9d", "\xe2\x80\x93", "\xe2\x80\x94", "\xe2\x80\xa6"), | |
array("'", "'", '"', '"', '-', '--', '...'), | |
$text |
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
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1.0 maximum-scale=1.0" /> |
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
password | |
123456 | |
12345678 | |
1234 | |
qwerty | |
12345 | |
dragon | |
pussy | |
baseball | |
football |
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
<?php | |
error_reporting(-1); // reports all errors | |
ini_set("display_errors", "1"); // shows all errors | |
ini_set("log_errors", 1); | |
ini_set("error_log", "/tmp/php-error.log"); | |
?> | |
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
apt-get update | |
#lamp | |
apt-get install apache2 mysql-server | |
mysql_secure_installation | |
apt-get install php5 php-pear php5-mysql git vim locate | |
updatedb | |
vim /etc/vim/vimrc | |
syntax on |
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
<?php | |
$conn = mysqli_connect($ht, $ur, $pd); | |
mysqli_select_db($conn, $db); | |
//foreach req, check if the column exists, otherwise create it | |
foreach($_POST as $k => $v){ | |
$key = trim(mysqli_real_escape_string($conn, $k)); |
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
mysqltuner.pl | |
https://raw.githubusercontent.com/major/MySQLTuner-perl/master/mysqltuner.pl | |
tuning primer sh | |
http://www.day32.com/MySQL/tuning-primer.sh | |
calculator | |
http://www.mysqlcalculator.com/ | |
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
###### ~/.bash_profile ###### | |
alias a='vim ~/.bash_profile && source ~/.bash_profile' | |
alias gpp='git pull && git push' | |
# FIND PROCESS | |
function p(){ | |
ps aux | grep -i $1 | grep -v grep | |
} |
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
If frontpage: | |
https://ecommerce.shopify.com/c/ecommerce-design/t/if-home-variable-5824 | |
OlderNewer