Questions? Feedback? powered by Olark live chat software

M88 review: So sánh tốc độ rút tiền và trải nghiệm người dùng

M88 là một trong những nhà cái trực tuyến nổi bật tại Việt Nam, cung cấp đa dạng các dịch vụ cá cược thể thao và các trò chơi casino. Với nhiều tính năng hấp dẫn và trải nghiệm người

Posted in public

Coronavirus disease 2019

COVID-19 is a contagious disease caused by the coronavirus SARS-CoV-2. In January 2020, the disease spread worldwide, resulting in the COVID-19 pandemic. The symptoms of COVID‑19 can vary but often include fever,[7] fatigue, cough, breathing difficulties, loss of smell, and

Posted in public

regex Regular expression to match email

$pattern = ‘/([A-Za-z0-9\.\-\_\!\#\$\%\&\’\*\+\/\=\?\^\`\{\|\}]+)\@([A-Za-z0-9.-_]+)(\.[A-Za-z]{2,5})/’;

Posted in Docs & Training

Moving WordPress

On Your Existing Server Moving the WordPress files from one location on your server to another – i.e. changing its URL – requires some special care. If you want to move WordPress to its own folder, but have it run

Posted in Docs & Training

WordPress to disable plugin update notification

add_filter(‘site_transient_update_plugins’, ‘dd_remove_update_nag’); function dd_remove_update_nag($value) { unset($value->response[ plugin_basename(__FILE__) ]); return $value; }

Posted in Docs & Training

CSS margin shorthand property

The margin property can have from one to four values. margin:25px 50px 75px 100px; top margin is 25px right margin is 50px bottom margin is 75px left margin is 100px margin:25px 50px 75px; top margin is 25px right and left

Posted in Docs & Training

CSS to make a parent div auto size to the width of its children divs

Using display:inline-block instead of width:auto on the container div.

Posted in Docs & Training

Find and replace in multiple files

To find and replace in multiple files on Unix command line use this: find . -name ‘*.html’ |xargs perl -pi -e ‘s/find/replace/g’

Posted in Docs & Training

Responsive CSS

@media all and (min-width: 50px) { body { font-size:0.1em; } } @media all and (min-width: 100px) { body { font-size:0.2em; } } @media all and (min-width: 200px) { body { font-size:0.4em; } } @media all and (min-width: 300px) { body

Posted in Docs & Training

Reset AUTO_INCREMENT in MySQL

ALTER TABLE tablename AUTO_INCREMENT = 1

Posted in Docs & Training