15 Apr 2014

How to make Money Online?

  • How about if someone is paying you for just only show ads on your website?
  • Isn't it cool that you can earn money while putting just posts on your blog or wordPress?
  • How about making money after completing online data entry or Web projects?

                 Yes, You can all of this just having a Laptop or Desktop with Internet Connection. This Types of jobs are called outsourcing of work, or online money making. This type of work is widely spread on world. You just find a website that having your requirement, then place orders and your work is been done.
                            Now the Main point is How?, How can you earn money like all as above questions? The simple answer is by having account in one or more sites described under:-

  1. Advertiser or Publisher.
  2. Project Working and Online jobs.
  3.  Redirecting to Other Sites or Surveys.

Advertiser or Publisher:-

Ad-Sense:- 


         Ad-Sense is a product of Google through which we can publish the advertisement given by the Google. Here, Google give some piece of code through which Google generates the ads on your website with text only ads or Text-Image combination. The Google Ad-Sense also provide the functionality  to have more than one add in one web page. Google Ad-Sense can give you from one dollar to more than your imagination.

Requirements for Google Ad-Sense:-
  1.  A website which is online at least from 6 months.
  2.  Content have to meet with Google Ad-Sense Policy.
  3. A top level domain which is hosting the website or blogger domain (eg. .com, .org, .net)
  4. A bank account or PayPal Account which can be later connect to Google for Money transfer.
Site Address:- www.google.com/adsense

Infolinks  

 

        It is the 4th largest publisher world wide.Online bloggers and website owners monetize their websites with Infolinks while keeping the integrity and layout of their sites undisturbed. Infolinks publishers can select their winning Infolinks ad combination from their ad unit buffet: InFrame, InSearch, InTag, and InText. It takes less than a minute to integrate Infolinks on a publisher’s site.Infolinks’ ad units are fully customizable and invite higher engagement and CTR because of their unique positioning and the relevance provided by their smart algorithm.Compared to Adsense The Infolinks is easy to implement on website with requirements.

 Requirements for infolinks:-
  1.  A website which is online at least from 6 months and have a good content.
  2.  A bank account or PayPal Account which can be later connect to Google for Money transfer.
Site Address:- www.infolinks.com

Something more is still there...... You will find it in Next Post.......

12 Apr 2014

Protocol 1 Program..


Protocol Programs for Networking In C Language:-



Protocol 1(Simplex Protocol):-

  1. It is used for One way sending and receiving technique.
  2. It doesn't have acknowledgement for sender.
  3. No correspondence between Sender and Receiver.

Assumption:-

  1. The channel is error-free.
  2.  The sender is sending from an infinite stream of data and the receiver continues to read what the sender is sending.
  3. The reciever is at least as fast as the sender, thus we ca run the show without flow control mechanism.
  4. the sender writes to pipe 1 which is named pipe already defined.
  5. The write operation is binding operation by default.

Files needed:-

Header Files :- stdio.h, fcntl.h,
sender.txt:- For having message(frames) to send...
sender.c :- Sender side functionality and coding...
receiver.c :- Receiver side functionality and coding...

Code to be typed in sender.c file:

 void main()

{

        char ch;

        char temp[63];

        int val = open("pipe1", O_WRONLY);

        FILE *fp = fopen("sender.txt","rw+");

        system("clear");

        while((ch=fgetc(fp))!=EOF)

        {

                  if (ch == ' ')

                 {

                         fscanf("%s",temp);

                         write(val, temp, sizeof(temp));

                  }

                  else

                 {

                         printf("%s\n",temp);

                         write(val, temp, sizeof(temp));

                  }

          }

                printf("%s\n",temp);

                write(val, temp, sizeof(temp));

                close(val);

                fclose(fp);

}

Code to be typed in Reciever.c file:

void main()

 {

        int val;

        char temp[100];

        FILE *fp=fopen("reciever.txt","rw+");

        system("clear");

        mkfifo("pipe1", 0666, 0);

        val = open("pipe1", O_RDONLY);

        printf("\nReceiving msg : \n");

       while(read(val, temp, sizeof(temp)))

        {
              printf ("%s\n", temp);
        }

}

29 Mar 2014

What Is Google App Engine?



What Is Google App Engine?

Google App Engine is a Platform as a Service (PaaS) offering that lets you build and run applications on Google’s infrastructure. App Engine applications are easy to build, easy to maintain, and easy to scale as your traffic and data storage needs change. With App Engine, there are no servers for you to maintain. You simply upload your application and it’s ready to go.

  App Engine Runtime Enviournment-

Google App Engine supports apps written in a variety of programming languages.
  • Java: Using App Engine’s Java runtime environment, you can build your application using standard Java technologies.
  • Python: App Engine features a fast Python interpreter and standard Python libraries.
  • PHP: App Engine uses Google's Cloud Platform services under the hood when you call standard PHP functions.
  • Go: App Engine features a Go runtime environment that runs natively compiled Go code.
Google App Engine makes it easy to build and deploy an application that runs reliably even under heavy load and with large amounts of data. It includes the following features:
  • Persistent storage with queries, sorting, and transactions.
  • Automatic scaling and load balancing.
  • Asynchronous task queues for performing work outside the scope of a request.
  • Scheduled tasks for triggering events at specified times or regular intervals.
  • Integration with other Google cloud services and APIs.
Applications run in a secure, sandboxed environment, allowing App Engine to distribute requests across multiple servers, and scaling servers to meet traffic demands. Your application runs within its own secure, reliable environment that is independent of the hardware, operating system, or physical location of the server. For a full list of features.
 

App Engine Development Enviournment-

Software Development Kits (SDKs) for App Engine are available in all supported languages. Each SDK includes:
  • All of the APIs and libraries available to App Engine.
  • A simulated, secure sandbox environment, that emulates all of the App Engine services on your local computer.
  • Deployment tools that allow you to upload your application to the cloud and manage different versions of your application.
The SDK manages your application locally, while the Administration Console manages your application in production. The Administration Console uses a web-based interface to create new applications, configure domain names, change which version of your application is live, examine access and error logs, and much more.
 
Quotas and limits-

App Engine gives you 1 GB of data storage and traffic for free, which can be increased by enabling paid applications. However, some features impose limits unrelated to quotas to protect the stability of the system. For more details on quotas, including how you can edit them to suit your needs, see the Quotas page.

To get started...
  1. Download the SDK.
  2. Sign up for an account.
  3. Read the getting started information for your language.
  4. Check out the rest of the App Engine documentation.

Comments

© 2013-2016 ITTechnocrates. All rights resevered. Developed by Bhavya Mehta