Posts

Android Mirror your app

Use scrcpy (Screen Copy) app to mirror android device. It is native and does not require any licensing or ads. Commands for mac (for other present in the above URL): scrcpy If you want to record your screen then, scrcpy --record file.mp4 Note: Close the mirror to save the recoding. Do not press Command + C to terminate, it does not save it properly. For Wireless connect, adb tcpip 5555 adb connect DEVICE_IP:5555

Deep Link Test

Pinbooard Pinbooard Week Of 20211226 Store Schedule SM: View Schedule Scheduleing Actions SM: Open Shifts SM: Shift Requests SM: Timecard Violations Follow Up Actions SM: Time Off SM: Availability Week Of 20220102 Store Schedule SM: View Schedule Scheduleing Actions SM: Open Shifts SM: Shift Requests SM: Timecard Violations Follow Up Actions SM: Time Off SM: Availability

Walgreens Deeplink

ESS Walgreens PreProd ESS Walgreens SB

ESS Deeplink

ESS session from browser ESS session from browser 2

deeplink

Store Manager (without AuthToken) Store Manager 1 (With AuthToken) Store Manager 2 (With AuthToken) Store Manager 3 (With AuthToken) ESS Demogold

My Favorite Quotes

My Favorite Quotes, 1) It doesn't matter how many resources you have. If you don't know how to use them, it will never be enough. 2) A person who never made a mistake never tried anything new. 3) GREAT people talk about IDEAS. AVERAGE people talk about THINGS. SMALL people talk about OTHERS. 4) People Say, "Find GOOD people and leave BAD ones." BUT IT SHOULD BE "Find the GOOD in the people and ignore the BAD in them. NO ONE IS PERFECT! 5) Its Very Easy to Say "Busy" When Someone Needs You... But Its Very Painful to Hear "Busy" When You Need Someone... 6) "When our SIGNATURE changes to AUTOGRAPH, this marks the SUCCESS." 7) "In the end, it's not going to matter how many breaths you took, but how many moments took your breath away." 8) "Successful People always THINK - How it CAN BE DONE? Failure People always THINK - Why it CAN'T BE DONE?" 9)  " If you don't build your...

Configue SSL in Apache 2.2 on MS Windows

Following are the steps to configure the Apache 2.2 on the windows machine. 1) Download and install apache 2.2 from  here 2) Follow the below instructions, Open Command prompt and browse to ~Apache2.2/bin directory. Type,  openssl req -config ../conf/openssl.cnf -new -out ssl_cert.csr -keyout ssl_cert.pem System will ask for the details about the certificate.  Fill out all the information but, Make sure that you remember the entered PEM pass phrase. Common name should be the domain name that you will use this certificate on. Type,  openssl rsa -in ssl_cert.pem -out ssl_cert.key You will be asked to enter the earlier entered PEM pass phrase. It should display "writing RSA key" output. Type,  openssl x509 -in ssl_cert.csr -out ssl_cert.crt -req -signkey ssl_cert.key -days 365 365 is the no. of days till the certificate is valid. Keep, ssl_cert.key & ssl_cert.csr file at separate location ("C:\SSL_certificates\" folder) a...