Author: FastBikri Team

Android Resources

How to change color of alternate rows | Recyclerview | Android https://stackoverflow.com/questions/46127942/in-android-recyclerview-how-to-change-the-color-of-alternate-rows Solution to WARNING: Configuration ‘compile’ is obsolete and has been replaced with ‘implementation’ and ‘api’. https://stackoverflow.com/questions/48709870/still-getting-warning-configuration-compile-is-obsolete-and-has-been-replace How can I fix “Design editor is unavailable until a successful build” error? Go to File > Sync Project with Gradles Files. How to get the directory

Useful Excel Formula

Sum of Hours. Select cell that is the sum. Select Format->Format Cell Category-> Custom -> Type [h]:mm;@ Reference Show only the domain name of an email address where A1 has the full email address. =MID(A1,SEARCH(“@”,A1)+1,255)

How to send an HTML email using PHP?

<?php $to = “somebody@example.com, somebodyelse@example.com”; $subject = “HTML email”; $message = ” <html> <head> <title>HTML email</title> </head> <body> <p>This email contains HTML Tags!</p> <table> <tr> <th>Firstname</th> <th>Lastname</th> </tr> <tr> <td>ABCD</td> <td>EFGH</td> </tr> </table> </body> </html> “; // Always set content-type when sending HTML email $headers = “MIME-Version: 1.0” . “\r\n”; $headers .= “Content-type:text/html;charset=UTF-8” . “\r\n”;