Anwar

Posts

How to open a huge .sql file

https://stackoverflow.com/questions/24200443/how-to-open-a-huge-sql-file SQL editor can open a file upto 500 mb without very very good specs, this seems to be going something wrong, if you want...

How to Fix a Windows PC that Keeps Rebooting

https://www.support.com/how-to/how-to-fix-a-windows-pc-that-keeps-rebooting-12992 Introduction If your computer keeps restarting before you’re able to work with it, you could be experiencing a boot loop (constant restarting of your...

How to find Size of a directory & Free disk space

How to find – Size of a directory & Free disk space   This article explains 2 simple commands that most people want to know...

How to erase format reset your Android phone when your screen broken

Go to https://www.google.com/android/devicemanager Erase the device but your device should  online

How to check os version in Linux command line

  https://www.cyberciti.biz/faq/how-to-check-os-version-in-linux-command-line/   cat /etc/os-release Check os version in Linux The procedure to find os name and version on Linux: Open the terminal application (bash...

How to check laravel cron job working ubuntu

https://www.digitalocean.com/community/questions/cron-jobs-with-laravel-on-ubuntu-16-10-x64 Hello, I’m running an Ubuntu 16.10 x64 and have deployed the php Framework Laravel 5.3.28 on the server. For the most part everything is...

How Shared Computing Works

https://computer.howstuffworks.com/shared-computing.htm How Shared Computing Works In a shared computing system, a user can access the processing power of an entire network of computers. HOWSTUFFWORKS Imagine...

Goutte Set Cookies

https://alvinbunk.wordpress.com/2017/04/21/using-cookies-with-phpunit-and-symfony-basic-client/ https://hotexamples.com/examples/goutte/Client/getCookieJar/php-client-getcookiejar-method-examples.html $client->setServerParameter(‘HTTP_USER_AGENT’, ‘Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:73.0) Gecko/20100101 Firefox/73.0’);   use Symfony\Component\BrowserKit\Cookie;   $client->getCookieJar()->set( new Cookie(‘store’, ‘english’) );   $client->getCookieJar()->set( new Cookie(‘currency’, ‘EUR’)...

Goutte php scraping tutorial scrape reddit with goutte

https://goutte.readthedocs.io/en/latest/ Goutte, a simple PHP Web Scraper Goutte is a screen scraping and web crawling library for PHP. Goutte provides a nice API to crawl...