Concepts and definitions for SVG.
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
| <?php | |
| $e =preg_split('/(?=[\s][0-9]+)/i','Red chilli powder 2.50 tbsp'); | |
| print_r($e); | |
| //Array ( [0] => Red chilli powder [1] => 2.50 tbsp ) | |
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
| sudo timedatectl set-timezone Asia/Calcutta | |
| date //will display current date and time |
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
| <?php | |
| $recursive = $this->query() | |
| ->recursive('parents', function (Builder $query) { | |
| $query | |
| ->select([ | |
| '*', | |
| new Alias('slug', 'fullslug'), | |
| new Alias(0, 'depth'), | |
| new Alias('id', 'tree_id'), | |
| new Alias('name', 'path'), |
git fetch origin pull/ID/head:BRANCHNAME
git checkout BRANCHNAME
git push origin BRANCHNAME
git checkout master
git merge BRANCHNAME
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 `email` as Email,IFNULL(SUBSTRING_INDEX(name,' ',1),"") AS "First Name",IFNULL(SUBSTRING_INDEX(name,' ',-1),"") AS "Last Name", IFNULL(CONCAT("91 ",`mobile`),"") as Phone,IFNULL(`pincode`,"") as Zip ,"IN" as Country from users left join address on address.user_id=users.id |
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
| simmfins | |
| simmfins_trail |
OlderNewer