Broken static: http://3v4l.org/GWVhT
Apache connection reset: http://docs.typo3.org/typo3cms/InstallationGuide/Troubleshooting/Apache/Index.html
Broken static: http://3v4l.org/GWVhT
Apache connection reset: http://docs.typo3.org/typo3cms/InstallationGuide/Troubleshooting/Apache/Index.html
| <?php | |
| class Abc { | |
| public $a = 1; | |
| protected $b = 2; | |
| private $c = 3; | |
| } | |
| $resource = tmpfile(); |
| -- variable lengh replacements without PCRE UDF extension | |
| -- replaces only one different matched string in each pass! | |
| -- replace string of variable length with known beginning and end | |
| SET @start = 'xxx'; | |
| SET @finish = 'yyy'; | |
| SET @replacement = ''; | |
| UPDATE `table` SET | |
| `text` = REPLACE( |
| -- kontrola uzávorkování bitových operátorů | |
| \s[|&^]\s([a-zA-Z]+::[A-Z_]|[0-9]+)+\s(!?==+|[<>]=?|<>)\s |
| SELECT | |
| /*fk.CONSTRAINT_SCHEMA, | |
| fk.CONSTRAINT_NAME, | |
| fk.TABLE_NAME, | |
| col.COLUMN_NAME, | |
| fk.REFERENCED_TABLE_NAME, | |
| col.REFERENCED_COLUMN_NAME,*/ | |
| CONCAT('SELECT * FROM `', fk.TABLE_NAME, '` WHERE `', col.COLUMN_NAME, '` NOT IN (SELECT `', col.REFERENCED_COLUMN_NAME, '` FROM `', fk.REFERENCED_TABLE_NAME, '`);') AS query | |
| FROM `REFERENTIAL_CONSTRAINTS` fk | |
| JOIN KEY_COLUMN_USAGE col USING (CONSTRAINT_SCHEMA, CONSTRAINT_NAME) |
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | |
| <title>Blikátko simulátor</title> | |
| </head> | |
| <body> | |
| <style> | |
| html, body { margin: 0; padding: 0; } | |
| </style> |
| #ssh-rsa AAAA[0-9A-Za-z+/]+[=]{0,3} ([^@]+@[^@]+)# | |
| // this is the most simple case. see more complete regexps in coments below | |
| // http://generator.my-addr.com/generate_ssh_public_rsa_key-private_rsa_key-ssh_pair_online_tool.php | |
| // https://help.ubuntu.com/community/SSH/OpenSSH/Keys | |
| // http://www.ietf.org/rfc/rfc4716.txt |
| <?php | |
| namespace Dogma\Database; | |
| /** | |
| * query(), fetch?(), exec(): | |
| * New preprocesor makes dibi-like syntax possible. | |
| * Question mark (?) is not required and *not allowed* in alternative syntax. | |
| * eg. $db->exec("UPDATE x SET y = ", $y, "WHERE z = ", $z); |
| /** | |
| * Make table body scrollable, with the table header always visible. | |
| * Table shrinks vertically to fit the browser viewport. | |
| * | |
| * requirements: | |
| * - jQuery framework required (tested with 1.6.2) | |
| * - header must be wrapped in <thead> element | |
| * | |
| * warnings: | |
| * - table <caption> is not supported |
| /** | |
| * Alternative style for Adminer. Zrobeno 7.4.2011 | |
| * @author Vlasta Neubauer [@paranoiq] | |
| */ | |
| /* -- fonts ----------------------------------------------------------------- */ | |
| body { | |
| font-size: 11pt; | |
| } | |
| body, select, option, optgroup, button { |