Search in URL
inurl:
Seach in Title
intitle:
// https://gist.github.com/rosszurowski/67f04465c424a9bc0dae | |
function lerpColor(a, b, amount) { | |
var ah = parseInt(a.replace(/#/g, ""), 16), | |
ar = ah >> 16, | |
ag = (ah >> 8) & 0xff, | |
ab = ah & 0xff, | |
bh = parseInt(b.replace(/#/g, ""), 16), | |
br = bh >> 16, | |
bg = (bh >> 8) & 0xff, | |
bb = bh & 0xff, |
// await must only be used if you want to execute something after promise to await the result | |
const createdUser = await createUser(); | |
const user = await getUser(); | |
// async must be used in function if you want to await something | |
(async () => { | |
await foo(); | |
})() |
{"lastUpload":"2019-09-18T09:36:41.072Z","extensionVersion":"v3.4.2"} |
Search in URL
inurl:
Seach in Title
intitle:
Initialize new composer.json
composer init
Install all dependencies specified in composer.json
composer install
Get status
git status
Add file to staging area
git add FILE
ifconfig
apt-get install net-tools
curl
apt-get install curl
Do not use closing PHP tag at end of file
<?php
Capitalize class names.
class MyClassName
Set table prefix in wp-config.php
$table_prefix = 'wp_6yCX_';
Rename tables in database