Posts

Git all Command

 Check Git status 1)git status Add changes to stage 2)git add .filenames git add .   (stage all files) git add -a (add all files) Once we have finished our work, we are ready to move stage to commit for our repo. 3)git commit -m "Message"  Get up-to-date code from the repo 4)git pull  move change file to the server 5)git push check in which branch 6)git branch Create new branch 7) git branch branchname Switch branch 8)git checkout branchname git configuration 9)git config --list Create a new branch from a branch git checkout -b branchname  (create clone branch of current branch with given name)  Merge Branches  lets current branch test1    want to merge test2 in test1 10)git merge test2 Delete branch 11)git branch -d branchname Git check remote  12)git remote -v Git add remote 13)  git remote add origin <remote_repo_url> Remove Files from stage 14)git rm --cached  <file name or files name> Remove changes f...

read csv file to array in php

 $abcfile = ABSPATH.'wp-content/themes/xpendy/subscriptions17.csv';         // print( $abcfile.'<br>' );         $count = 0; if (($open = fopen($abcfile, "r")) !== FALSE)    {      echo "123<pre>";        while (($data = fgetcsv($open, 1000, ",")) !== FALSE)      {     // if ($data[27] != '4.95' && $data[31] != 'Subscription') {        // print_r($data);        $inscou = $wpdb->insert('table2',         array(           'orderid' => $data[0],           'emailid' => $data[12]                    ));         // if ($inscou) {         //    $count = $count + 1;         //  }        // }    ...

Xpendy Pending

 1) Experiment Xpendy | E-mail domain suggestion Done 2) Xpendy Experiment | Change red error color to orange Done 3) My Xpendy | Implementation of credit card payments in ChargeBee 4) My Xpendy | Briefing split audience Mailchimp 5) Xpendy | Customers can only do one conversion from oneclick email Done 6) Xpendy | Send letters by e-mail Done 7)My Xpendy | Optimization of IT and ES Done 8)Experiment Xpendy | XPE-0110 - Form field bigger than letter  pending 9)Xpendy | Implement experiment 100% on live website NL Done 10)Xpendy | Implement XPE-0112 experiment for AT website Done 11)Xpendy | Third mail - proof of arrival implementation Pending 12)Xpendy | Adding code for experimentation tool in progress 13)Xpendy | Automating SEO content + Add Button for changes & category error - feedback  in progress 14)Xpendy | Split testing collection mail NL via Mandrill Pending https://docs.google.com/spreadsheets/d/1C2NsDA72aeaIYDE7KNyTopcUernHWAvVGCocEzksKhQ/edit?usp=sharing 15)...

ITR

 with rent 46540 58708 rent 15000 atc lic ppf turion fees sunkya     150000 atd heth 25k  60 761000

Angular

 services what reactive form kaise validation  save data http calls kaise karte hai hai services me api send karne 

MYSQL Group By

 SELECT YEAR(suscribed_at), MONTH(suscribed_at), count(id) FROM `xp_myxpendy_subscription` WHERE `subscription_id` IS NOT NULL GROUP BY YEAR(suscribed_at), MONTH(suscribed_at)

Sql long text bolb issue

 SET GLOBAL innodb_strict_mode = 0;