Skip to main content

Categories

Categories

Comments

Popular posts from this blog

Best AdSense alternative for your blog and website.

If you want a better alternative of AdSense for your blog or website because of Adsense is not approving the site or any other reason. If your website has adult content or pirated content Adsense won't approve your website. The name of the alternative is  PopAds . PopAds  allow you to monetize any type of website.  PopAds also allows you to monetize a website that contains adult or copyrighted content(i am not supporting piracy). If you want to create an account of popads visit this link  popads.net . Pros of using popads 1. You can monetize any type of website. 2. Instant approval. 3. You can control the rates of advertisements. 4. You have control of which type of ads do you want to show on your website like  a)popup  b)popunder  c)tabunder  d)tabup  e)long loading  f)Adult  e)Audio/Video Con 1)you can't use Adsense with popads.

How to install and use scrcpy on Linux?

In this article, you will learn how to install and use scrcpy on Linux. What is scrcpy? scrcpy is an application used to display and control the Android phone without installing any application on your android device and importantly it does not require any  root  access. Things you need to start using this application are listed below. 1) USB cable 2) Android phone with USB debugging on(Android 5.0 or above) 3) PC(Debian based os required) Installation sudo apt install scrcpy I prefer to use snap for installing scrcpy because snap store seems to have the latest package To install using snap use the following command snap install scrcpy Running scrcpy step 1) Plug an Android device(turn on USB debugging) using USB to your pc. step 2) open terminal and type scrcpy (or type scrcpy --help to see list of additional commands). If you want to know more about scrcpy click on the link below https://github.com/Genymobile/scrcpy Bonus:  You can also play games like among us using s...

how to use list data type in Python?

Where we can use Python 1) In web development using frameworks like Django and flask . ( Django has more features than flask but flask is good for lightweight web applications) 2) In data science and artificial intelligence.   (python has wide range of libraries and frameworks for data science and for artificial intelligence)     3)In Hacking   and in many other things Lists in python List is data   type  For complex programs we need to store and arrange large amount of data. For storing large amount of data we use lists, tuples and dictionary.  In this data type the values(data) are stored in the ordered sequence unlike dictionary.  Example of a list   -  Animal =  ['Tiger', 'Cat', 'Dog'] As you can able to see in above example, the list start and end with square brackets, [ ] We can store strings in a single or double quotes('string' or "string"). To separate the v...