Add ads txt file to adsense website – Support

I’ll add ads.txt file to your adsense approved website via file manager

Website builder like wix, does not have file manager. That means I can not add ads.txt to wix website or other similar website builders that do not offer file manager.

If you just started getting this warning message on your adsense dashboard.
Earnings at risk – One or more of your sites does not have an ads.txt file. Fix this now to avoid severe impact to your revenue.

Then, Fix it ASAP to protect your adsense earning.

If you have any question, feel free to message me.

[email protected]

For this gig, I need access to cPanel or Plesk or Vesta or somehow to file manager. 

How to Install Python 3.7.3 on Windows 7/8/10

How to download and install Python 3.7.3 on Microsoft Windows 7/8/10. This is going to be a quick and easy step by step instruction on installing Python on Windows operating systems.

Download Python 3.7.3

Launch your preferred browser and go to python.org. Click DOWNLOADS button and then click the big yellow button that says ‘Download Python 3.7.3″. You can click the download button below, this is straight from python.org/downloads

Click the download button on python.com/downloads page

Once the Python download is complete, locate the downloaded file and run it by double clicking it or you can right click then open it or open as an administrator.

Important…

Make sure you check the box to “Add python to PATH”.

Add Python 3.7 to PATH

With this python installation, you get pip (python package manager) also installed. Once python is installed.

Python 3.7.3 is installed on your Windows system now.

Go ahead and launch your command prompt and check python version by running the following command.

python -V
python -V

This means that Python 3.7.3 is successfully installed and added to the system path. Now you can all python files can be executed from command prompt.

Watch me install Python 3.7.3 on Windows 10

https://youtu.be/OV9WlTd9a2U

Related Posts…

  1. Python is not recognized
  2. Django 3 Tutorial – Create a Blogging App
  3. Install Django 3 on Windows 10
  4. Install Django on Ubuntu

How to Compile and Run C/C++ Code on Ubuntu

How to compile and run C and C++ code on Ubuntu desktop and server. If you have Ubuntu you already have g++ installed, which is C and C++ compiler. To check g++ version, simply launch your terminal and run the following command.

g++ --version

Install g++, C and C++ compiler on Ubuntu

In case it g++ is not installed on your system, run the following command to install g++

sudo apt update 
sudo apt install g++
sudo apt install build-essential
g++ --version

Write your C hello world code, using your favorite text editor.

// file name: test.c

#include <stdio.h>

int main()
{
	printf("Hello World\n");
	return 0;
}

Compile C code with g++ with terminal

compile and run C code on ubuntu
compile and run C code on ubuntu

Navigate to test.c and test.cpp directory using your terminal and run the following commands.

g++ test.c -o testc

Here -o flag is given to output executable file name

Run / Execute C program with terminal

./testc

Write your C++ hello world code

// file name: test.cpp
#include <iostream>

using namespace std;

int main(){
cout << "Hello World\n";

return 0;
}

Compile C++ code with g++ in Terminal

compile and run C++ code on Ubuntu
compile and run C++ code on Ubuntu

Navigate to test.c and test.cpp directory using your terminal and run the following commands.

g++ test.c -o testcp

Here -o flag is given to output executable file name

Run / Execute C++ program with terminal

./testcp

Install Make to compile C and C++ Faster

On Ubuntu Linux, you can install make tool to compile C and C++ code faster. Install make on Ubuntu with terminal.

sudo apt install make

Compile Code with Make

Compile C and C++ code with make, simply type make and file_name without extension like .c and .cpp

Run C and C++ Code with Terminal

./file_name

Watch me Compile and Execute C++ on Ubuntu

Watch me Compile and Execute C++ on Ubuntu