Tuesday 25 July 2017

Naruto Shippuden Ultimate Ninja Storm Revolution PC Game


The graphical and visual effects of Naruto Shippuden Ultimate Ninja Storm Revolution PC game 2014 are really amazing. Because the game is not a 2D view game. But its gives you the whole 3D view which you can choose. Its all up to you which Ariel angle do you want to play with. The graphics are more enhanced in the game rather than the previous version. This game is a lot more interesting and colorful and more realistic. There is another game that you may like to play is called Mortal Combat Komplete Edition.



Features of Naruto Shippuden Ultimate Ninja Storm Revolution PC Game 2014 Following are the main features of Naruto Shippuden: Ultimate
 The graphics and visual effects are amazing You can choose any character in the game The power meter and health meter are the same There are a lot of combo shots you can learn There is a practices session that you can do too




System Requirements of Naruto Shippuden Ultimate Ninja Storm Revolution PC Game Before you start Naruto Shippuden: Ultimate Ninja Storm Revolution  minimum system requirements Operating System: Windows XP ﴾ 32 Bit ﴿/ Windows Vista ﴾ 32 Bit ﴿/ Windows 7 ﴾ 64 Bit ﴿/ Windows 8 and 8.1
CPU: Dual Core 2.2 Ghz
RAM: 2 GB
Hard disk Space: 30 GB


Buy in 1000 Rs 

Amazon Price  2499


Stay tune for more games
 

Thursday 25 May 2017

All free possible softwares for windows

 Windows software's  [ Direct Installers ]

Web Browsers

Crome    [ Letest Possible ]
Opera    [Letest Possible ]
FireFox  [ Letest Possible ]

Security

Essentials [small business security ] [ click here 1st part ] [ Click here 2nd part ]
Avast  [ Free Antivirus ]
AVG   [Free Antivirus] [3.3 MB]
Malwarebytes [Free Cyber Security & Anti-Malware Software] [Free Version]
Ad-Aware [ Free Antivirus ]  [2.5 MB]
Spybot 2  [ free antivirus ][ 44 MB]
Avira [free antivirus ] [5 MB]
SUPERAntiSpyware [ Free Antivirus ] [ 28 MB]

Messaging

Skype  [Online Installer] [2 MB]
Pidgin 
Thunderbird [Easy Email setup ] [ 38 MB]
Trillian  [ Instant Messenger ] [19 MB]

File Sharing

qBittorrent [ P2P application share ] [32 bit ] [16MB] | [64 bit] [18 MB]
eMule  [ 66 MB]

Compression

7-Zip         [32 bit] | [64 bit]

Media

VLC  [25 MB]
Winamp 
MusicBee 
Audacity 
K-Lite 
Codecs 
GOM 
Spotify 
CCCP 
MediaMonkey 
HandBrake

Runtimes

Java 8  
.NET 4.7 
Silverlight 
Air 
Shockwave

Online Storage

Dropbox  
Google Drive 
Mozy 
OneDrive 
SugarSync

Developer Tools

Python  
FileZilla 
Notepad++ 
JDK 8
 JDK x64 8 
WinSCP 
PuTTY 
WinMerge 
Eclipse 
Visual Studio Code

Imaging

Paint.NET  
GIMP 
IrfanView 
XnView 
Inkscape 
FastStone 
Greenshot 
ShareX

Utilities

TeamViewer 12 
ImgBurn
RealVNC  
TeraCopy 
CDBurnerXP  
Revo 
Launchy  
WinDirStat 
Glary  
InfraRecorder 
Classic Start 

Documents

Foxit Reader 
LibreOffice 
SumatraPDF 
CutePDF 
PDFCreator 
OpenOffice

Other

Evernote  
Google Earth 
Steam  
KeePass 2
Everything  
NV Access

 

Wednesday 17 May 2017

X-Men Mutant academy 2


X-Men: Mutant academy 2

  - take part in superhero tournament. Use abilities of your fighter to crush opponents and become an arena king. In this dynamic Android game you can select among many superheroes and villains each having unique abilities and combat style. Take your favorite character on the arena and get ready for a battle against powerful opponents. Deliver powerful hits, make blocks, jump, dodge enemy attacks and apply superabilities and combos of course.

Game features:

  • Famous characters
  • 4 game modes
  • Handy system of controls
  • Exciting gameplay
[Download Apk 33 MB]

Darts master 3D

 
Darts master 3D:

Darts master 3D - throw darts to the rarget, try to get maximum points and win the contest. Aim carefully and don't miss. Cover a long way from the beginner to a real master of darts game in this exciting Android game. Train, improve your darts playing skills, complete interesting tasks, participate in the tournaments of different levels. Buy sets of darts and targets having unique design. Compete with other players from all over the world.

Game features:

  • Different game modes
  • Over 20 darts and targets
  • Over 100 levels
  • Board of leaders and achievements

[Download Apk 14 MB ]

Saturday 6 May 2017

How to Build Android send massage java code

Android Sending SMS

There are following two ways to send SMS using Android device:

Using SmsManager to send SMS

Using Built-in Intent to send SMS

Using SmsManager to send SMS

The SmsManager manages SMS operations such as sending data to the given mobile device. You can create this object by calling the static method SmsManager.getDefault() as follows:

SmsManager smsManager =SmsManager.getDefault();

Once you have SmsManager object, you can use sendDataMessage() method to send SMS at the specified mobile number as below:

smsManager.sendTextMessage("phoneNo", null, "SMS text", null, null);

Apart from the above method, there are few other important functions available inSmsManager class. These methods are listed below:

S.N.

Method & Description

1

ArrayList<String>divideMessage(String text) 
This method divides a message text into several fragments, none bigger than the maximum SMS message size.

2

static SmsManager getDefault() 
This method is used to get the default instance of the SmsManager

3

void sendDataMessage(StringdestinationAddress, StringscAddress, short destinationPort, byte[] data, PendingIntentsentIntent, PendingIntentdeliveryIntent) 
This method is used to send a data based SMS to a specific application port.

4

voidsendMultipartTextMessage(StringdestinationAddress, StringscAddress, ArrayList<String> parts,ArrayList<PendingIntent>sentIntents,ArrayList<PendingIntent>deliveryIntents) 
Send a multi-part text based SMS.

5

void sendTextMessage(StringdestinationAddress, StringscAddress, String text,PendingIntent sentIntent,PendingIntent deliveryIntent) 
Send a text based SMS.

Example

Following example shows you in practical how to use SmsManager object to send an SMS to the given mobile number.

To experiment with this example, you will need actual Mobile device equipped with latest Android OS, otherwise you will have to struggle with emulator which may not work.

Step

Description

1

You will use Eclipse IDE to create an Android application and name it asSendSMSDemo under a packagecom.example.sendsmsdemo. While creating this project, make sure youTarget SDK and Compile With at the latest version of Android SDK to use higher levels of APIs.

2

Modify src/MainActivity.java file and add required code to take care of sending email.

3

Modify layout XML fileres/layout/activity_main.xml add any GUI component if required. I'm adding a simple GUI to take mobile number and SMS text to be sent and a simple button to send SMS.

4

Modify res/values/strings.xml to define required constant values

5

Modify AndroidManifest.xml as shown below

6

Run the application to launch Android emulator and verify the result of the changes done in the aplication.

Following is the content of the modified main activity filesrc/com.example.sendsmsdemo/MainActivity.java.

package com.example.sendsmsdemo;

 

import android.os.Bundle;

import android.app.Activity;

importandroid.telephony.SmsManager;

import android.util.Log;

import android.view.Menu;

import android.view.View;

import android.widget.Button;

import android.widget.EditText;

import android.widget.Toast;

 

public class MainActivity extends Activity {

 

   Button sendBtn;

   EditText txtphoneNo;

   EditText txtMessage;

 

   @Override

   protected void onCreate(BundlesavedInstanceState) {

     super.onCreate(savedInstanceState);

     setContentView(R.layout.activity_main);

 

      sendBtn = (Button)findViewById(R.id.btnSendSMS);

      txtphoneNo = (EditText)findViewById(R.id.editTextPhoneNo);

      txtMessage = (EditText)findViewById(R.id.editTextSMS);

 

     sendBtn.setOnClickListener(newView.OnClickListener() {

         public void onClick(View view) {

            sendSMSMessage();

         }

      });

 

   }

   protected void sendSMSMessage() {

      Log.i("Send SMS", "");

 

      String phoneNo =txtphoneNo.getText().toString();

      String message =txtMessage.getText().toString();

 

      try {

         SmsManager smsManager =SmsManager.getDefault();

        smsManager.sendTextMessage(phoneNo, null, message, null, null);

        Toast.makeText(getApplicationContext(), "SMS sent.",

         Toast.LENGTH_LONG).show();

      } catch (Exception e) {

        Toast.makeText(getApplicationContext(),

         "SMS faild, please try again.",

         Toast.LENGTH_LONG).show();

         e.printStackTrace();

      }

   }

   @Override

   public booleanonCreateOptionsMenu(Menu menu) {

      // Inflate the menu; this adds items to the action bar if it is present.

     getMenuInflater().inflate(R.menu.main, menu);

      return true;

   }

}

Following will be the content ofres/layout/activity_main.xml file:

<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:orientation="vertical" >

 

   <TextView

  android:id="@+id/textViewPhoneNo"

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:text="@string/phone_label" />

 

   <EditText

  android:id="@+id/editTextPhoneNo"

  android:layout_width="fill_parent"

  android:layout_height="wrap_content"

   android:inputType="phone"/>

 

   <TextView

  android:id="@+id/textViewMessage"

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:text="@string/sms_label" />

 

   <EditText

   android:id="@+id/editTextSMS"

  android:layout_width="fill_parent"

  android:layout_height="wrap_content"

  android:inputType="textMultiLine"/>

 

   <Buttonandroid:id="@+id/btnSendSMS"

  android:layout_width="fill_parent"

  android:layout_height="wrap_content"

  android:text="@string/send_sms_label"/>

 

</LinearLayout>

Following will be the content ofres/values/strings.xml to define two new constants:

<?xml version="1.0" encoding="utf-8"?>

<resources>

 

    <string name="app_name">SendSMSDemo</string>

    <string name="action_settings">Settings</string>

    <string name="hello_world">Hello world!</string>

    <string name="phone_label">Enter Phone Number:</string>

    <string name="sms_label">Enter SMS Message:</string>

    <string name="send_sms_label">Send SMS</string>

   

</resources>

Following is the default content ofAndroidManifest.xml:

<?xml version="1.0" encoding="utf-8"?>

<manifestxmlns:android="http://schemas.android.com/apk/res/android"

   package="com.example.sendsmsdemo"

    android:versionCode="1"

    android:versionName="1.0" >

 

    <uses-sdk

        android:minSdkVersion="8"

       android:targetSdkVersion="17" />

    <uses-permissionandroid:name="android.permission.SEND_SMS" />

 

    <application

        android:allowBackup="true"

       android:icon="@drawable/ic_launcher"

       android:label="@string/app_name"

       android:theme="@style/AppTheme" >

        <activity

           android:name="com.example.sendsmsdemo.MainActivity"

           android:label="@string/app_name" >

            <intent-filter>

                <actionandroid:name="android.intent.action.MAIN" />

 

                <categoryandroid:name="android.intent.category.LAUNCHER" />

            </intent-filter>

        </activity>

    </application>

 

</manifest>

Let's try to run your SendSMSDemoapplication. I assume you have connected your actual Android Mobile device with your computer. To run the app from Eclipse, open one of your project's activity files and click Run icon from the toolbar. Before starting your application, Eclipse will display following window to select an option where you want to run your Android application.

Select your mobile device as an option and then check your mobile device which will display following screen:

Now you can enter a desired mobile number and a text message to be sent on that number. Finally click on Sed SMS button to send your SMS. Make sure your GSM connection is working fine to deliver your SMS to its recipient.

You can take a number of SMS separated by comma and then inside your program you will have to parse them into an array string and finally you can use a loop to send message to all the given numbers. That's how you can write your own SMS client. Next section will show you how to use existing SMS client to send SMS.

Using Built-in Intent to send SMS

You can use Android Intent to send SMS by calling built-in SMS functionality of the Android. Following section explains different parts of our Intent object required to send an SMS.

Intent Object - Action to send SMS

You will use ACTION_VIEW action to launch an SMS client installed on your Android device. Following is simple syntax to create an intent with ACTION_VIEW action

Intent smsIntent = new Intent(Intent.ACTION_VIEW);

Intent Object - Data/Type to send SMS

To send an SMS you need to specify smsto:as URI using setData() method and data type will be to vnd.android-dir/mms-sms usingsetType() method as follows:

smsIntent.setData(Uri.parse("smsto:"));

smsIntent.setType("vnd.android-dir/mms-sms");

Intent Object - Extra to send SMS

Android has built-in support to add phone number and text message to send an SMS as follows:

smsIntent.putExtra("address"  , new String("0123456789;3393993300"));

smsIntent.putExtra("sms_body"  , "Test SMS to Angilla");

 

Here address and sms_body are case sensitive and should be specified in small characters only. You can specify more than one number in single string but separated by semi-colon (;).

Example

Following example shows you in practical how to use Intent object to launch SMS client to send an SMS to the given recipients.

To experiment with this example, you will need actual Mobile device equipped with latest Android OS, otherwise you will have to struggle with emulator which may not work.

Step

Description

1

You will use Eclipse IDE to create an Android application and name it asSendSMSDemo under a packagecom.example.sendsmsdemo. While creating this project, make sure youTarget SDK and Compile With at the latest version of Android SDK to use higher levels of APIs.

2

Modify src/MainActivity.java file and add required code to take care of sending SMS.

3

Modify layout XML fileres/layout/activity_main.xml add any GUI component if required. I'm adding a simple button to launch SMS Client.

4

Modify res/values/strings.xml to define required constant values

5

Modify AndroidManifest.xml as shown below

6

Run the application to launch Android emulator and verify the result of the changes done in the aplication.

Following is the content of the modified main activity filesrc/com.example.sendsmsdemo/MainActivity.java.

package com.example.sendsmsdemo;

 

import android.net.Uri;

import android.os.Bundle;

import android.app.Activity;

import android.content.Intent;

import android.util.Log;

import android.view.Menu;

import android.view.View;

import android.widget.Button;

import android.widget.Toast;

 

public class MainActivity extends Activity {

 

   @Override

   protected void onCreate(BundlesavedInstanceState) {

     super.onCreate(savedInstanceState);

     setContentView(R.layout.activity_main);

 

      Button startBtn = (Button)findViewById(R.id.sendSMS);

     startBtn.setOnClickListener(newView.OnClickListener() {

         public void onClick(View view) {

         sendSMS();

      }

   });

 

   }

   protected void sendSMS() {

      Log.i("Send SMS", "");

 

      Intent smsIntent = new Intent(Intent.ACTION_VIEW);

     smsIntent.setData(Uri.parse("smsto:"));

     smsIntent.setType("vnd.android-dir/mms-sms");

 

      smsIntent.putExtra("address" , new String ("0123456789"));

     smsIntent.putExtra("sms_body"  , "Test SMS to Angilla");

      try {

         startActivity(smsIntent);

         finish();

         Log.i("Finished sending SMS...", "");

      } catch (android.content.ActivityNotFoundExceptionex) {

        Toast.makeText(MainActivity.this,

         "SMS faild, please try again later.",Toast.LENGTH_SHORT).show();

      }

   }

   @Override

   public booleanonCreateOptionsMenu(Menu menu) {

      // Inflate the menu; this adds items to the action bar if it is present.

     getMenuInflater().inflate(R.menu.main, menu);

      return true;

   }

}

Following will be the content ofres/layout/activity_main.xml file:

<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"

  android:layout_width="fill_parent"

  android:layout_height="fill_parent"

   android:orientation="vertical" >

 

   <Buttonandroid:id="@+id/sendSMS"

  android:layout_width="fill_parent"

  android:layout_height="wrap_content"

  android:text="@string/compose_sms"/>

   

</LinearLayout>

Following will be the content ofres/values/strings.xml to define two new constants:

<?xml version="1.0" encoding="utf-8"?>

<resources>

 

    <string name="app_name">SendSMSDemo</string>

    <string name="hello_world">Hello world!</string>

    <string name="action_settings">Settings</string>

    <string name="compose_sms">Compose SMS</string>

 

</resources>

Following is the default content ofAndroidManifest.xml:

<?xml version="1.0" encoding="utf-8"?>

<manifestxmlns:android="http://schemas.android.com/apk/res/android"

   package="com.example.sendsmsdemo"

    android:versionCode="1"

    android:versionName="1.0" >

 

    <uses-sdk

        android:minSdkVersion="8"

       android:targetSdkVersion="17" />

 

    <application

        android:allowBackup="true"

       android:icon="@drawable/ic_launcher"

       android:label="@string/app_name"

       android:theme="@style/AppTheme" >

        <activity

           android:name="com.example.sendsmsdemo.MainActivity"

           android:label="@string/app_name" >

            <intent-filter>

                <actionandroid:name="android.intent.action.MAIN" />

 

                <categoryandroid:name="android.intent.category.LAUNCHER" />

            </intent-filter>

        </activity>

    </application>

</manifest>

Let's try to run your SendSMSDemoapplication. I assume you have connected your actual Android Mobile device with your computer. To run the app from Eclipse, open one of your project's activity files and click Run icon from the toolbar. Before starting your application, Eclipse will display following window to select an option where you want to run your Android application.

Select your mobile device as an option and then check your mobile device which will display following screen:

Now use Compose SMS button to launch Android built-in SMS clients which is shown below

You can modify either of the given default fields and finally use send SMS button (marked with red rectangle) to send your SMS to the mentioned recipient.

Thursday 4 May 2017

jQuery Effects - Hide and Show

jQuery Effects - Hide and Show Easy and simple methode

with code

Hide, Show, Toggle, Slide, Fade, and Animate

jQuery hide() and show()

With jQuery, you can hide and show HTML elements with the hide() and show() methods:



 $("#hide").click(function(){
    $("p").hide();
});

$("#show").click(function(){
    $("p").show();
});


Example code for  Hide JQuery script

<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("#hide").click(function(){       // this Jquery code will hide the Text as user click on it
        $("p").hide();
});
    $("#show").click(function(){
        $("p").show();                       
// this Jquery code will hide the Text as user click on it    
 });
});
</script>
</head>
<body>

<p>If you click on the "Hide" button, I will disappear.</p>

<button id="hide">Hide</button>
<button id="show">Show</button></body>
</html>



you can add speed like feature in time J query function
synatax 

$(selector).hide(speed,callback);

$(selector).show(speed,callback); 



Example 

$("button").click(function(){
    $("p").hide(1000);       //  speed is in milliseconds
});



Toggle 

With jQuery, you can toggle between the hide() and show() methods with the toggle() method.

Syntax
$(selector).toggle(speed,callback); 

exmple 
$("button").click(function(){
    $("p").toggle();
});
 



thanks and njoy  the code 

DNS SPY :Monitor, validate and verify your DNS configurations

DNS Spy

IF Paranoid about your DNS

Validate and verify your DNS configurations

 


What DNS Spy offers

  • Monitor your domains for DNS changes
  • Alert you when a record has changed
  • Keep a detailed history of each DNS record change
  • Notify you of invalid or RFC-violating DNS configs
  • Rate your DNS configurations
  • Free for 1 monitored domain
  • Back-up all your DNS records
  • Verify all your nameservers are in sync
  • Support DNS zone transfer (AXFR)
  • 2 Factor Authentication

Free for Open Source projects

DNS Spy is built on Open Source and the founders have a long history with Linux and Open Source in general.
If you run an Open Source project, you can apply for a free, lifetime, premium subscription to DNS Spy as a token of our appreciation for all your hard work!
A popular Open Source project has the potential to impact millions of users if its DNS gets hijacked, protect your own projects with DNS Spy.

 This is one of the kind DNS over watch tool for the its user.

Enjoy the Rest

 

Tuesday 2 May 2017

Code News For News Appliactions for developers with CMS

1) Code News 

What you Know About Coding World ?

Code news is the applications where you can get the news about development world 

and keep update yourself for the  best performance.

Code News For News Appliactions for developers with CMS

As every developer know every other day Technologies are changing for that Code News is here.

It comes with 2 versions
means with 2 Languages Romanian and English tough it is world wide app most or every post of this
application have English posts for the best .

As tittle of this say it have CMS feature included which means you can watch your favorite part of the News Anytime Anywhere . 

Bring Coding world Closer watch

[[  Click here foe visiting CODE NEWS  ]]

Monday 1 May 2017

Bill Gates Notes on india

Bill Gates "India Is Winning Its War on Human Waste"

Many peoples make perception about without knowing what is  behinds of it ,



This is what Bill gates think about india 

"If you’re wondering why the Prime Minister would put a spotlight on a subject that most of us would rather not even think about, take a look at the statistics. Of the 1.7 million people worldwide who die from unsafe water, sanitation, and hygiene each year, more than 600,000 are in India. A quarter of young girls there drop out of school because there’s no decent toilet available. When you factor in the deaths, sickness, and lost opportunity, poor sanitation costs India more than $106 billion a year."

TO READ More [[ Click Here ]]

Standoff 2 Android Game

Standoff 2

Action Online Shooter 


Standoff 2 Android Game

 
 Standoff 2 - move across the battle field, find enemies and pull the trigger first. Try to avoid death and destroy maximum enemies. Take part in armed conflict between terrorists and special squads in this Android game. Hold modern weapon in your hands harder and go to fight. Help the members of your squad and shoot accurately trying to make headshots. Test various weapons in combat environment and develop your own game style. Win battles and increase your rating.

Need Internet connection 
Game features:
  • Different maps
  • High quality graphics
  • Fight against other players
  • Handy system of controls
 [[ Download Apk ]] Android 2.3 and higher. v0.2.0  [26.4 MB] [apk]

[[  Download OBB  ]]  Android 2.3 and higher. Game cache. v0.2.0  [119.2 MB]  [zip]

Brave blade Andoird Game

Brave blade 

Android 3.1 and higher. v1.0.2 [73.1 MB] [apk]
 
[[  Download OBB   ]]
Android 3.1 and higher. Game cache. v1.0.2 [195.7 MB] [zip]

Game features:

  • Cute characters
  • 3 different fractions
  • Many upgrades
  • Interesting tasks
  • Character development

Brave blade - gather a squad of fearless mercenaries and fight against hordes of evil mutants. Apply incredible abilities of different heroes in the battles. In this Android game you will take part in the battles against demonic enemies and meet beautiful girls. Complete exciting campaign missions and add new mercenaries to your squad. Gather an invincible team of characters of different classes. Apply magic and legendary weapons of the heroes, make efficient combos and crush strong opponents. Train heroes and improve their parameters.

To know how to install OBB files  [click here]

WW1 Sky of the western front: Air battle Android game

WW1 Sky of the western front: Air battle


WW1 Sky of the western front: Air battle


[[  Download Here Free  ]]    Android 2.3 and higher. v1.0 [40.8 MB] [apk]
Game features:
  • 18 fighting aircrafts
  • 40 interesting missions
  • 10 extra missions
  • Various game modes

control classic airplanes of the World War I time and take part in air battles in the sky over Europe. Become an air ace completing dangerous missions in this Android game. Crash planes of your enemy precisely shooting from the weapon placed in your fighting aircraft. Destroy enemy airships and balloons. Hit ground objects such as enemy headquarters, tanks, military machinery and others. Get money for the completed tasks and buy new planes with unique characteristics. 

Enjoy flying guys !!!!!!!!
Best luck.

Empire strike Android game

[Tested and love It ]Empire strike: Modern warlords

Bored from Clash Of Clans and its versions 
Welcome to Modern Warlords  



Empire strike: Modern warlords for Android is very popular and thousands of gamers around the world would be glad to get it without any payments. And we can help you! To download the game for free, we recommend you to select your phone model, and then our system will choose the most suitable apk files. Downloading is very simple: select the desired file and click "download free Empire strike: Modern warlords apk", then select one of the ways you want to get the file. Just a few easy steps and you are enjoying full version of the game for tablet or phone! 


create a powerful military emipre. Build military headquarters, enlarge your army, fight for the control over the world. In this Android game you can become a commander and ruler. Start your way from building your own base and making it stronger. Build barracks, workshops, research centers and other necessary objects. Enlarge number of infantry soldiers, artillery and other combat machinery. Defend your base from enemies. Attack bases of other players, expand your empire, make alliances.

Game features:

  • Huge map
  • Many combat units
  • Various constructions
  • Fight against other players
[[  Download Direct  ]]  Android 3.0 and higher. v1.0.4 [41.5 MB] [apk]


Enjoy the game guys

Sunday 30 April 2017

Zend Engin Php

 

Zend Engine

 is used internally by PHP as a compiler and runtime engine. PHP Scripts are loaded into memory and compiled into Zend opcodes. These opcodes are executed and the HTML generated is sent to the client.
To implement a Web script interpreter, you need three parts:
  • The interpreter part analyzes the input code, translates it, and executes it.
  • The functionality part implements the functionality of the language (its functions, etc.).
  • The interface part talks to the Web server, etc.
Zend takes part 1 completely and a bit of part 2; PHP takes parts 2 and 3.
Zend itself really forms only the language core, implementing PHP at its very basics with some predefined functions.


The Zend Engine is the centerpiece of PHP, and is the component that parses (in other words, 'understands') and executes all of your PHP files.
Work on the Zend Engine began on 1997, when Andi Gutmans and Zeev Suraski designed the first implementation of the PHP language, with syntax loosely based on PHP/FI. Their work on PHP 3 revolutionized the PHP world, and created PHP as we all know it today.
The term 'Zend Engine' was first used in 1999, and was given to the scripting engine of PHP 4. For the first time, the scripting engine was a separable, reusable component, that was not tied to the Web-specific interfaces of PHP in any way, and could be used elsewhere. The performance, reliability and extensibility of PHP 4's engine brought a 2nd revolution to the world of PHP, and helped making it the most popular Web platform in the world today.
The Zend Engine is responsible for the following tasks in PHP:
  • High performance parsing (including syntax checking), in-memory compilation and execution of PHP scripts
  • Implementation of all of the standard data structures of PHP
  • Interfacing with extension modules for connectivity to external resources and protocols, such as SQL, HTTP and FTP
  • Overloading the Object Oriented syntax, for integration with Java and .NET
  • Providing all of the standard services, including memory management, resource management and more for the whole of PHP
The Zend Engine was designed to be extensible, and allows extension modules such as debuggers, performance boosters and custom loaders to be dynamically integrated to it. Whenever you're using such a plug-in module, you're doing so thanks to the extensibility options of the Zend Engine!

 All thinks for the creator of Zend Engine for the Supporting PHP.

For more details :- Zend.comPhp/document

Wait for the next blog
Stay Touched With Developer skool /The Spi-Tech Consolidate

Saturday 29 April 2017

PhoneGap Android development Framework

Phone Gap Framework / Desktop Application 

Android development Framework / Tool Phonegap

The PhoneGap Desktop App is the easiest way to get started with PhoneGap. It’s an alternative to the PhoneGap CLI, yet it uses the same libraries under-the-hood.

There’s no complicated installation. You don’t need git, npm, or even node.js. We include all of the important parts for you, so that you can focus on creating your next app!

1 ) Download 

Download Phone Gap for Windows
Download Phone Gap for Mac      

2 )     Extract the Zip file and Install the Application on your system

3 )     Use  Application On your system any time

How to use it

Total installation of PhoneGap and environment
Youtube video

 Open the application


After that 
  1. Click the + on the left-panel.
  2. Select Create new PhoneGap project…
    • Choose a local path to save your project
    • Choose a name for your project, such as “Hello World”
  3. Select Create project.
Phonegap application create project

   Start the Server


    Ip address of your server is mentioned On the green bar
    If the server has not started, click the arrow (>) to the right of your app’s name.

Phonegap application server

 Pair App with PhoneGap Developer App

Phonegap connect with developer app / server
To know about PhoneGap Developer app click here

Get Start Development


It’s now business as usual. You can now edit and immediately preview your project on a device.
  1. Open www/index.html.
  2. Edit any content.
  3. Save the file.
  4. See the updates appear on your device.      
Phonegap create code final
Enjoy coding ...........
Wait for the next post 
Keep reading





Friday 28 April 2017

Php installations

Php Server's/ Editor's Installations.

 
To work with PHP you need a server for the before starting development in it.
Following are the Offline server which will create Offline Host server for the practice purpose.
link are as below 

Xampp (windows)

WampServer ( Windows ) Recommended

LAMP ( linux ) Recommended


 Some Development Environment
  

Breaket 

Aptana studio

After Downloading and you system server 
we can actually work on the development.
 

Php form with Sql connectivity

PHP Forms with MYSQL 


 In this section we are going to actually introduce you the PHP development 

In that we are going to make Html form and stores the date which is provided by the user in the Database.


Before that if you dont know how to setup server
(click here)

and finally some development

lets make some form in Html which will

1)
Now for designing a form write the given code in index.php file
and write some Html code as below
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<style>
label{display:inline-block;width:100px;margin-bottom:10px;}
</style>
<title>Add Employee</title>
</head>
<body>
<form method="post" action="">
<label>First Name</label>
<input type="text" name="first_name" />
<br />
<label>Last Name</label>
<input type="text" name="last_name" />
<br />
<label>Department</label>
<input type="text" name="department" />
<br />
<label>Email</label>
<input type="text" name="email" />
<br />
<input type="submit" value="Add Employee">
</form>
</body>
</html>

As above written Html code please give every <INPUT> tag special  NAME 
cause it is going to help us to connect the our Html code to database via PHP  

Now make another file name as insert.php 
and write below mention code  

in this page in the 
firsr php block we are going to make connection with database
in that check the connection 
after that make sql vaiable and insert the query in that variable 
check the insertion process and if work is done close the connection

<?php
// make connection with database 
$connect=mysqli_connect('localhost','root','password','mydatabase');
 // check connection is working or not
if(mysqli_connect_errno($connect))
{
echo 'Failed to connect';
}
 
// create a variable
$first_name=$_POST['first_name'];
$last_name=$_POST['last_name'];
$department=$_POST['department'];
$email=$_POST['email'];
//Execute the query
mysqli_query($connect"INSERT INTO employees1(first_name,last_name,department,email)
VALUES('$first_name','$last_name','$department','$email')");
// check data in insarted in the database or not 


if(mysqli_affected_rows($connect) > 0){
echo "<p>Employee Added</p>";
echo "<a href="index.html">Go Back</a>";
} else {
echo "Employee NOT Added<br />";
echo mysqli_error ($connect);
}
// echo the values which are inserted 

echo $_POST['first_name'];
echo '<br />';
echo $_POST['email'];
?>

and the sql query for table is 

CREATE TABLE IF NOT EXIST 'employees1'(
'first_name' varchar(20),
'last_name' varchar(20),
'department' varchar(10),
'email' varchar(20),
PRIMARY KEY ('first_name')
)engin=Innodb;


 wait for the Next post till then check previous ones
( Click here for previous Posts about Php )


Contact use for business projects or  college projects
Facebook Gmail  Google +