12 Greatest Programmers of all Time

A programmer is a person who can create and modify computer programs. No matter what type of programmer one may be, each and every contributes something to the society, no matter how trivial. Yet, there are those few who have … Continue reading 12 Greatest Programmers of all Time

Rate this:

8 Online Payment Options That Aren’t PayPal

When most people think of online payments, one name comes to mind: PayPal. But for all PayPal’s strengths, it’s a bad idea to rely on it as the single system to accept payments on your site. Monopolies are never healthy, and you need to diversify your payment channels. Why You Need PayPal Alternatives There are plenty of reasons why you should support multiple payment options, but here are several of the most important ones: Your partners or customers can’t always make or accept PayPal payments. This is the major reason to offer payment alternatives. There are always people who can’t … Continue reading 8 Online Payment Options That Aren’t PayPal

Rate this:

Top 10 Programming Languages in 2014

1. Java What it is: Java is a class-based, object-oriented programming language developed by Sun Microsystems in the 1990s. It’s one of the most in-demand programming languages, a standard for enterprise software, web-based content, games and mobile apps, as well as the Android operating system. Java is designed to work across multiple software platforms, meaning a program written on Mac OS X, for example, could also run on Windows.   2. C Language What it is: A general-purpose, imperative programming language developed in the early ’70s, C is the oldest and most widely used language, providing the building blocks for … Continue reading Top 10 Programming Languages in 2014

Rate this:

Post Links in facebook Using the Graph API

This example covers posting a link to the current user’s timeline using the Graph API and Facebook SDK for PHP. <?php // Remember to copy files from the SDK’s src/ directory to a // directory in your application on the server, such as php-sdk/ require_once(‘php-sdk/facebook.php’); $config = array( ‘appId’ => ‘YOUR_APP_ID’, ‘secret’ => ‘YOUR_APP_SECRET’, ‘allowSignedRequest’ => false // optional but should be set to false for non-canvas apps ); $facebook = new Facebook($config); $user_id = $facebook->getUser(); ?> <html> <head></head> <body> <?php if($user_id) { // We have a user ID, so probably a logged in user. // If not, we’ll get … Continue reading Post Links in facebook Using the Graph API

Rate this:

Text to Speech in PHP (API)

// Code Starts here <?php // FileName: tts.php /* *  A PHP Class that converts Text into Speech using Google’s Text to Speech API * * Author: * Voltainc *Contributor : *Awais * https://canvascode.wordpress.com * */ class TextToSpeech {     public $mp3data;     function __construct($text=””) {         $text = trim($text);         if(!empty($text)) {             $text = urlencode($text);             $this->mp3data = file_get_contents(“http://translate.google.com/translate_tts?q={$text}”);         }     }     function setText($text) {         $text = trim($text);         if(!empty($text)) {             $text = urlencode($text);             $this->mp3data = file_get_contents(“http://translate.google.com/translate_tts?q={$text}”);             return $mp3data;         } else { return false; }     }     function saveToFile($filename) {         $filename = trim($filename);         if(!empty($filename)) {             return file_put_contents($filename,$this->mp3data);         } else { return false; }     } } ?> // Code … Continue reading Text to Speech in PHP (API)

Rate this:

10 Creative Loading Effects for Your Website

People hate waiting. It is a fact that web designers and developers should accept. It has been quite a maxim that as designers, we shouldn’t make our viewers wait. This is because many people tend to get bored and choose a website that loads faster. And that, my friend, is a big no-no. However, waiting is seemingly inevitable. Despite modern internet connection speeds, some browsers still take time to load web elements. So it becomes a need to make people still want to visit your website even if it takes a little bit of time when they load it. There … Continue reading 10 Creative Loading Effects for Your Website

Rate this:

Top most used PHP Script 2013

Here we are with the new and fresh PHP scripts . Hopefully you’ll like these PHP scripts. Here you will find registration system scripts, gallery scripts, Facebook scripts, audio scripts, custom CMS scripts, calculator scripts and much more. Review base Review base is a PHP system which allows you to create a review base website. You can use it any kind of reviews such as schools, locations, games, restaurants, artist, movies etc. Secure-PHP-Login & Registration System Secure PHP login and Registration system is built with Bootstrap and PHP. The login and registration module is highly secure with advanced Blowfish encryption … Continue reading Top most used PHP Script 2013

Rate this:

Detecting Browser with PHP

Howdy Peps! Here’s a short snippet that detects your browser agent //—-Snippet Starts here—–// <!–?php 1. $ua = $_SERVER[“HTTP_USER_AGENT”]; $browser = strpos($ua, ‘Chrome’) ? true : false; if($browser == true) { echo “Chrome”; } // new con else { if ($ua = $_SERVER[“HTTP_USER_AGENT”]) $browser = strpos($ua, ‘IE’) ? true : false; if($browser == true) { echo “IE”; } //—-Snippet Ends here—–//   Description : The above code snippets detects the browser weather it’s Chrome or IE, the Line#2 fetches data from $ua and read from the variable then later compares if the detected browser is either chrome or not if … Continue reading Detecting Browser with PHP

Rate this:

How Web 3.0 Will Work

You’ve decided to go see a movie and grab a bite to eat afterward. You’re in the mood for a comedy and some incredibly spicy Mexican food. Booting up your PC, you open a Web browser and head to Google to search for theater, movie and restaurant information. You need to know which movies are playing in the theaters near you, so you spend some time reading short descriptions of each film before making your choice. Also, you want to see which Mexican restaurants are close to each of these theaters. And, you may want to check for customer reviews … Continue reading How Web 3.0 Will Work

Rate this: