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
MySQL: "Warning: MySQL server has gone away" |
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
https://drupal.org/node/259580 |
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
Tables: No special prefixes, but short form of the group-names | |
Functions: f_ | |
Views: v_ | |
Stored Procedures: p_ | |
Triggers: t_ | |
Events: e_ | |
Keys: append _key or _unique_key |
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
-- Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '<>' |
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 FROM_UNIXTIME(1402473055); | |
SELECT UNIX_TIMESTAMP('2014-06-11 11:50:55'); |
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
apache-log4php-2.3.0 | |
Behat | |
diagramo-all-in-one | |
dummy-data | |
facebook-php-sdk-master | |
generatedata | |
hybridauth-2.1.2 | |
intellij-plugins | |
json-fast | |
logging-log4php |
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
CREATE TABLE `times` ( | |
`t1` timestamp(1) NOT NULL DEFAULT CURRENT_TIMESTAMP(1) ON UPDATE CURRENT_TIMESTAMP(1), | |
`t2` timestamp(2) NOT NULL DEFAULT '0000-00-00 00:00:00.00', | |
`t3` timestamp(3) NOT NULL DEFAULT '0000-00-00 00:00:00.000', | |
`t4` timestamp(4) NOT NULL DEFAULT '0000-00-00 00:00:00.0000', | |
`t5` timestamp(5) NOT NULL DEFAULT '0000-00-00 00:00:00.00000', | |
`t6` timestamp(6) NOT NULL DEFAULT '0000-00-00 00:00:00.000000' | |
); |
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
SET NAMES BINARY; | |
SELECT LOWER('aA'), LOWER(CONVERT('aA' USING latin1)); | |
SET NAMES UTF8; | |
SELECT LOWER('aA'), LOWER(CONVERT('aA' USING latin1)); |
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
find /home/htdocs -type f -name 'error_log' > /tmp/error_log.log |
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | |
<title>BMI</title> | |
<style type="text/css"> | |
* | |
{ | |
font-size: 24px; | |
} |