• Home
  • About
  • Contact
  • Advertise
  • Sitemap
MENU
Patelwala Education
  • Home
  • Android Buzz
  • iOS Buzz
  • Online Shopping
  • Game Reviews
  • JAVA
  • SEO
  • IT Info
  • More
    • Software Engineering
    • Computer Networking
    • PHP
    • Cooking
Archive for 2016

Mobile Number Pattern matches In Java

Patelwala 21:01:00 Add Comment

 Regular-Rxpression Pattern Matches



A regular expression, specified as a string, must first be compiled into an instance of this class. The resulting pattern can then be used to create a Matcher object that can match arbitrary character sequences against the regular expression. All of the state involved in performing a match resides in the matcher, so many matchers can share the same pattern.
A typical invocation sequence is thus

 Pattern p = Pattern.compile("a*b");
 Matcher m = p.matcher("aaaaab");
 boolean b = m.matches();



 Example

import java.util.regex.*;  
class Demo
{
 public static void main(String[] args)
 {
  String  p1="[7-9]{1}[0-9]{9}";
  Pattern p = Pattern.compile(p1);
  Matcher m = p.matcher("9909556848");
  
  if( m.matches())
  {
   System.out.println("Match");
  }
  else
  {
   System.out.println("Not Match");
  }
 }
}


Out Put


Write a script that deletes all leading and trailing spaces in all lines in a file. Also remove blank lines from a file. Locate lines containing only printf but not fprintf.

Patelwala 22:22:00 Add Comment


#Write a script that deletes all leading and trailing spaces in all lines in a file. Also remove blank lines
#from a file. Locate lines containing only printf but not fprintf.
# Save  New.sh


clear

echo -n "Enter name of the file :"
read filename

    if [ ! -f $filename ]
    then
        echo "File does not exist"
    else
        str=$(cat $filename)
        #remove leading and trailing spaces
        str=$(echo "$str" | sed 's/^[ \t]*//;s/[ \t]*$//')
        #remove blank line
        str=$(echo "$str" | sed '/^$/d')
        echo "$str" > $filename
        cat "$filename"
        echo "File transformed successfully"
        echo "PRINTF STATEMENT IS AT LINE "
        echo $(cat $filename | grep -v "fprintf" | grep -iwn "printf")
    fi




new.txt


Hello   MAC    Welcome


Good Morning


OutPut


Write a script that behaves both in interactive and non-interactive mode. When no arguments are supplied, it picks up each C program from current directory and lists the first 10 lines. It then prompts for deletion of the file. If the user supplies arguments with the script, then it works on those files only.

Patelwala 22:06:00 Add Comment
Write a script that behaves both in interactive and non-interactive mode. When no arguments are supplied, it picks up each C program from current directory and lists the first 10 lines. It then prompts for deletion of the file. If the user supplies arguments with the script, then it works on those files only.



# Test.sh
#Run In terminal In linux
# bash Test.sh
# Example

cfile=`find -name "*.c"`
for i in $cfile
do
    echo "File : $i"
    echo "First 10 Row of File Read"
    head -10 $i
    echo "Do You Want to Remove"
    read ch
    if [ $ch="Y" -0 $ch="y" ]
    then#
        rm -i $i
    else
        echo "User not want to Deleted the file"
    fi
done




// Demo.c File Creating
#include <stdio.h>
int main()
{
  
   printf("Hello, India!");
   printf("Good Morning");
   printf("Hi.. I'm Hietsh");
   printf("What is Your Name?");
   printf("My Name Is Hit");
   printf("How Are You Hit");
   printf("I'm Fine and You");
   printf("me Good");
   printf("Where Are You");
   printf("Nice To meet Hit");
   printf("ok bye");
   return 0;
} 


Run Test.sh File


 Deleted Demo.c File

 

 

Create a Smiley Face using PHP GD Library PHP

Patelwala 07:50:00 Add Comment


Create a Smiley Face using PHP GD Library




Create a Smiley Face using PHP GD Library PHP
Example..



<?php

header ('Content-type:image/png');

$c=imagecreate(500,500);

$bc=imagecolorallocate($c,204, 0, 153);
$fc=imagecolorallocate($c,255, 255, 26);
$lc=imagecolorallocate($c,200,20,30);

imagefilledellipse($c,250,250,400,400,$fc);
imagefilledellipse($c,150,150,50,50,$lc);
imagefilledellipse($c,350,150,50,50,$lc);

imageline($c,250,275,280,275,$lc);
imageline($c,250,200,280,275,$lc);

imagearc($c,250,300,250,180,0,180,$lc);

imagepng($c);

imagedestroy($c);
?>

Out Put




  • Introduction
  • Installing/Configuring
    • Requirements
    • Installation
    • Runtime Configuration
    • Resource Types
  • Predefined Constants
  • Examples
    • PNG creation with PHP
    • Adding watermarks to images using alpha channels
    • Using imagecopymerge to create a translucent watermark
  • GD and Image Functions
    • gd_info — Retrieve information about the currently installed GD library
    • getimagesize — Get the size of an image
    • getimagesizefromstring — Get the size of an image from a string
    • image_type_to_extension — Get file extension for image type
    • image_type_to_mime_type — Get Mime-Type for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype
    • image2wbmp — Output image to browser or file
    • imageaffine — Return an image containing the affine transformed src image, using an optional clipping area
    • imageaffinematrixconcat — Concatenate two affine transformation matrices
    • imageaffinematrixget — Get an affine transformation matrix
    • imagealphablending — Set the blending mode for an image
    • imageantialias — Should antialias functions be used or not
    • imagearc — Draws an arc
    • imagechar — Draw a character horizontally
    • imagecharup — Draw a character vertically
    • imagecolorallocate — Allocate a color for an image
    • imagecolorallocatealpha — Allocate a color for an image
    • imagecolorat — Get the index of the color of a pixel
    • imagecolorclosest — Get the index of the closest color to the specified color
    • imagecolorclosestalpha — Get the index of the closest color to the specified color + alpha
    • imagecolorclosesthwb — Get the index of the color which has the hue, white and blackness
    • imagecolordeallocate — De-allocate a color for an image
    • imagecolorexact — Get the index of the specified color
    • imagecolorexactalpha — Get the index of the specified color + alpha
    • imagecolormatch — Makes the colors of the palette version of an image more closely match the true color version
    • imagecolorresolve — Get the index of the specified color or its closest possible alternative
    • imagecolorresolvealpha — Get the index of the specified color + alpha or its closest possible alternative
    • imagecolorset — Set the color for the specified palette index
    • imagecolorsforindex — Get the colors for an index
    • imagecolorstotal — Find out the number of colors in an image's palette
    • imagecolortransparent — Define a color as transparent
    • imageconvolution — Apply a 3x3 convolution matrix, using coefficient and offset
    • imagecopy — Copy part of an image
    • imagecopymerge — Copy and merge part of an image
    • imagecopymergegray — Copy and merge part of an image with gray scale
    • imagecopyresampled — Copy and resize part of an image with resampling
    • imagecopyresized — Copy and resize part of an image
    • imagecreate — Create a new palette based image
    • imagecreatefromgd2 — Create a new image from GD2 file or URL
    • imagecreatefromgd2part — Create a new image from a given part of GD2 file or URL
    • imagecreatefromgd — Create a new image from GD file or URL
    • imagecreatefromgif — Create a new image from file or URL
    • imagecreatefromjpeg — Create a new image from file or URL
    • imagecreatefrompng — Create a new image from file or URL
    • imagecreatefromstring — Create a new image from the image stream in the string
    • imagecreatefromwbmp — Create a new image from file or URL
    • imagecreatefromwebp — Create a new image from file or URL
    • imagecreatefromxbm — Create a new image from file or URL
    • imagecreatefromxpm — Create a new image from file or URL
    • imagecreatetruecolor — Create a new true color image
    • imagecrop — Crop an image to the given rectangle
    • imagecropauto — Crop an image automatically using one of the available modes
    • imagedashedline — Draw a dashed line
    • imagedestroy — Destroy an image
    • imageellipse — Draw an ellipse
    • imagefill — Flood fill
    • imagefilledarc — Draw a partial arc and fill it
    • imagefilledellipse — Draw a filled ellipse
    • imagefilledpolygon — Draw a filled polygon
    • imagefilledrectangle — Draw a filled rectangle
    • imagefilltoborder — Flood fill to specific color
    • imagefilter — Applies a filter to an image
    • imageflip — Flips an image using a given mode
    • imagefontheight — Get font height
    • imagefontwidth — Get font width
    • imageftbbox — Give the bounding box of a text using fonts via freetype2
    • imagefttext — Write text to the image using fonts using FreeType 2
    • imagegammacorrect — Apply a gamma correction to a GD image
    • imagegd2 — Output GD2 image to browser or file
    • imagegd — Output GD image to browser or file
    • imagegetclip — Get the clipping rectangle
    • imagegif — Output image to browser or file
    • imagegrabscreen — Captures the whole screen
    • imagegrabwindow — Captures a window
    • imageinterlace — Enable or disable interlace
    • imageistruecolor — Finds whether an image is a truecolor image
    • imagejpeg — Output image to browser or file
    • imagelayereffect — Set the alpha blending flag to use layering effects
    • imageline — Draw a line
    • imageloadfont — Load a new font
    • imageopenpolygon — Draws an open polygon
    • imagepalettecopy — Copy the palette from one image to another
    • imagepalettetotruecolor — Converts a palette based image to true color
    • imagepng — Output a PNG image to either the browser or a file
    • imagepolygon — Draws a polygon
    • imagepsbbox — Give the bounding box of a text rectangle using PostScript Type1 fonts
    • imagepsencodefont — Change the character encoding vector of a font
    • imagepsextendfont — Extend or condense a font
    • imagepsfreefont — Free memory used by a PostScript Type 1 font
    • imagepsloadfont — Load a PostScript Type 1 font from file
    • imagepsslantfont — Slant a font
    • imagepstext — Draws a text over an image using PostScript Type1 fonts
    • imagerectangle — Draw a rectangle
    • imageresolution — Get or set the resolution of the image
    • imagerotate — Rotate an image with a given angle
    • imagesavealpha — Set the flag to save full alpha channel information (as opposed to single-color transparency) when saving PNG images
    • imagescale — Scale an image using the given new width and height
    • imagesetbrush — Set the brush image for line drawing
    • imagesetclip — Set the clipping rectangle
    • imagesetinterpolation — Set the interpolation method
    • imagesetpixel — Set a single pixel
    • imagesetstyle — Set the style for line drawing
    • imagesetthickness — Set the thickness for line drawing
    • imagesettile — Set the tile image for filling
    • imagestring — Draw a string horizontally
    • imagestringup — Draw a string vertically
    • imagesx — Get image width
    • imagesy — Get image height
    • imagetruecolortopalette — Convert a true color image to a palette image
    • imagettfbbox — Give the bounding box of a text using TrueType fonts
    • imagettftext — Write text to the image using TrueType fonts
    • imagetypes — Return the image types supported by this PHP build
    • imagewbmp — Output image to browser or file
    • imagewebp — Output a WebP image to browser or file
    • imagexbm — Output an XBM image to browser or file
    • iptcembed — Embeds binary IPTC data into a JPEG image
    • iptcparse — Parse a binary IPTC block into single tags.
    • jpeg2wbmp — Convert JPEG image file to WBMP image file
    • png2wbmp — Convert PNG image file to WBMP image file

Searches related to using-php-gd-library

php gd install
php display image
php gd library tutorial
gd library php examples
php gd centos
gd library php w3schools
php gd examples
gdragon

Identifying Current Server Statistics Software and Gaining Access For SEO

Patelwala 07:49:00 Add Comment

Identifying Current Server Statistics Software and Gaining Access PART-2




Search Analytics

  • Search analytics is a new and emerging category of tools. Search analytics tools specifically monitor how your website interacts with the search engines. The company most known for this (as of early 2009) is Enquisite.

Determining Top Competitors
  • Understanding the competition should be a key component of planning your SEO.
  • The first step is to understand who your competitors in the search results really are.

Seeking the Best
  • Are your competitor’s websites fully indexed by Google and Yahoo!? In other words, are all their web pages, including product pages, making it into the search engines’ databases? You can use the free tool at http://www.netconcepts.com/urlcheck to find out, or you can go to each search engine and type in site:theirdomain.com.

Uncovering Their Secrets
  • What keywords are they targeting?
  • Who’s linking to their home page, or to their top-selling product pages and category pages? A link popularity checker can be quite helpful in analyzing this.
  •  E.g. Amazon.com


Identifying Current Server Statistics Software and Gaining Access

Patelwala 07:31:00 Add Comment

Identifying Current Server Statistics Software and Gaining Access PART-1




Web Analytics
  • Analytics software can provide you with a rich array of valuable data about what is taking place on the site. It can answer questions such as:
  • How many unique visitors did you receive yesterday?
  • Is traffic trending up or down?
  • What are the most popular search terms with which people find you?


Web Analytics
  • What are the most popular pages on your site?
  • What are the best converting pages on the site?

High-quality, free analytics tools are available, such as Yahoo! Web Analytics and Google Analytics.



Logfile Tracking

  • Logfiles contain a detailed click-by-click history of all requests to your web server. Make sure you have access to the logfiles and some method for analyzing them. If you use a third-party hosting company for your site, chances are it provides some sort of free logfile analyzer, such as AWStats, Webalizer, or something similar. Obtain access to whatever tool is in use as soon as you can.

Google and Bing Webmaster Tools

  • Both tools provide valuable insight into how the search engines see your site. This includes things such as external link data, internal link data, crawl errors, high-volume search terms, and much, much more.
         https://www.google.com/webmasters/

         www.bing.com/toolbox/webmaster


Searches related to Identifying SEO

seo keyword generator
seo keyword research tool
google wonder wheel
how to find seo keywords of a website
how to identify keywords in a sentence
how to identify keywords in a paragraph
keywords example
keywords generator

Auditing an Existing Site to Identify SEO Problems PART 4

Patelwala 00:58:00 Add Comment

Auditing an Existing Site to 
Identify SEO Problems PART 4




Elements of Audit:
  • Imagine that each of the tiny pages represents between 5,000 and 100,000 pages in an enterprise site. Some areas, such as blogs, articles, tools, popular news stories, and so on, might be receiving more than their fair share of internal link attention. Other areas often business-centric and sales-centric content—tend to fall by the wayside.




  • Server and Hosting Issues
  • Various server related and hosting related issues which affects the impact of SEO.
  1. Server timeouts
  2. Slow response times
  3. Shared IP addresses (Example of google with http://www.site24x7.com)
  4. Blocked IP addresses

  • Elements of Audit:
  • Server and Hosting Issues
  1. Bot detection and handling
  2. Bandwidth and transfer limitations
  3. Server geography

Auditing an Existing Site to Identify SEO Problems PART 3

Patelwala 00:50:00 Add Comment

Auditing an Existing Site to 
Identify SEO Problems PART 3



Elements of Audit:
  • Importance of Keyword Review
  1. Step 1: Keyword research
  2. Step 2: Site architecture
  3. Step 3: Keyword mapping
  4. Step 4: Site review
Elements of Audit:
  • Keyword Cannibalization
  1. Keyword cannibalization typically starts when a website’s information architecture calls for the targeting of a single term or phrase on multiple pages of the site.
  2. Many times this is done unintentionally, but results in several or even dozens of pages that have the same keyword target in the title and header tags.

Elements of Audit:
  • Search engines will spider the pages on your site and see 4 (or 40) different pages, all seemingly relevant to one particular keyword.  As shown in above figure. Google doesn’t interpret this as meaning that your site as a whole is more relevant to snowboards or should rank higher than the competition. But it forces Google to choose any random page from available. 
Elements of Audit:
  • Solution : Instead of targeting the singular snowboards on every page, the pages are focused on unique, valuable variations and all of them link back to an original, canonical source for the singular term. Google can now easily identify the most relevant page for each of these queries. This is not only valuable for search engine but it gives better experience to the user also.

Elements of Audit:
  • Fixing an Internal Linking Problem
  1. Enterprise sites range between 10,000 and 10 million pages in size. For many of these types of sites, an inaccurate distribution of internal link juice is a significant problem.



Auditing an Existing Site to Identify SEO PART 2

Patelwala 02:30:00 Add Comment

Auditing an Existing Site to Identify SEO  PART 2



Elements of Audit:
  • Content review
  • Meta tag review
  Every page should have a unique meta description.

  • Sitemaps file and robots.txt file verification
http://www.frobee.com/robots-txt-check

http://www.bing.com/webmaster/help/how-to-create-a-robots-txt-file-cb7c31ec


Elements of Audit:
  • Redirect checks
  • Internal linking checks
    Google advises 100 per page as a maximum
  • Avoidance of unnecessary subdomains
  • Geolocation
  • External Linking
    Use a backlinking tool such as Yahoo! Site Explorer, Linkscape, Majestic-SEO, or Link Diagnosis to collect data about your links.



Elements of Audit:
  • Page load time
  • Image alt tags
  • Code quality
    seo-browser.com to check what search engine can see on your website / webpage.



Auditing an Existing Site to Identify SEO Problems

Patelwala 00:35:00 Add Comment

Auditing an Existing Site to 
Identify SEO Problems



  • Auditing of an existing site is one of the most important task of SEO
  • It is a new field for old websites
  • Web Developers does not have much idea about SEO work
  • SEO can find so many problems while auditing of a site.


  • Usability
  • Accessibility/spiderability
  • Search engine health check
Perform a site:yourdomain.com search in the search engines to make sure all your pages appear to be in the index.Compare this to the number of unique pages you believe you have on your site.

Elements of Audit:
  • Search engine health check
  Test a search on your brand terms to make sure you are ranking for them

 Check the Google cache to make sure the cached versions of your pages look the same as the live versions of your pages
  • Keyword health checks















Elements of Audit:
  • Duplicate content checks
  Check for http://your site name and www.yoursitename must be equal
            
    No duplicates for http and https

    Use of inurl: or intitle:
  • URL Check
  • Title tag review
   In title if brand name is required, it must be at the end not in beginning, max. 70 chars.


People also ask
What is an SEO site audit?

What is a site audit?

Defining Your Site’s Information Architecture Part 2

Patelwala 00:13:00 Add Comment

Defining Your Site’s Information Architecture


   There are many, many aspects to determining a linking structure for a site, and it is a major usability issue because visitors make use of the links to surf around your website. For search engines, the navigation structure helps their crawlers determine what pages you consider the most important on your site, and it helps them establish the relevance of the pages on your site to specific topics.


 There are many, many aspects to determining a linking structure for a site, and it is a major usability issue because visitors make use of the links to surf around your website. For search engines, the navigation structure helps their crawlers determine what pages you consider the most important on your site, and it helps them establish the relevance of the pages on your site to specific topics.

 Target keywords : Target keywords is the most important aspect in SEO working. Keyword research is a critical component of SEO.

  Cross link relevant Content: Linking between articles that cover related material can be very powerful. It helps the search engine ascertain with greater confidence how relevant a web page is to a particular topic. This can be extremely difficult to do well if you have a massive e-commerce site, but Amazon solves the problem very well, as shown in below figure:

  Anchor Text: Anchor text is one of the golden opportunities of internal linking. As an SEO practitioner, you need to have in your plan from the very beginning a way to use keyword-rich anchor text in your internal links. Avoid using text such as “More” or “Click here”, and make sure the technical and creative teams understand this.



  Use breadcrumb navigation: Breadcrumb navigation is a way to show the user where he is in the navigation hierarchy.


   Minimize link depth: Search engines (and users) look to the site architecture for clues as to what pages are most important. A key factor is how many clicks from the home page it takes to reach a page. A page that is only one click from the home page is clearly important. A page that is five clicks away is not nearly as influential. In fact, the search engine spider may never even find such a page.






Defining Your Site’s Information Architecture

Patelwala 00:13:00 Add Comment

Defining Your Site’s Information Architecture


Whether you have built a site already or not, you should plan to research the desired site architecture (from an SEO perspective) at the start of your SEO project, a task which can be divided into two major components: technology decisions and structural decisions.



Technology Decision: Our technology choices can have a major impact on your SEO results which are as follows:

  • Dynamic URLs
  • Session IDs or user IDs in the URL
  • Superfluous flags in the URL
  • Links or content based in JavaScript, Java, or Flash
  • Content behind forms (including pull-down lists)
  • Temporary (302) redirects
  • Redirect


Structural Decisions: One of the most basic decisions to make about a website concerns internal linking and navigational structures which includes following points:

  • Which pages are linked with home page?
  • Which pages are treated as category pages?
  • Relevant pages should be linked with each other or not?

Subscribe to: Posts (Atom)

Make Money

Contact Form

Name

Email *

Message *

My Blog List

  • SunPLus
    All Canadian Newspapers List
  • R Studio
    Rstudio Student t Distribution for #Hindi #part17
  • Java cafe
    Exception In java Id name and price
  • Real Gujarat
    Apartment for Sale

Popular

  •  LEUVA PATEL'S DIFFRENT SURNAMES
    LEUVA PATEL'S DIFFRENT SURNAMES
    LEUVA PATEL'S DIFFRENT SURNAMES AAMBALIYA ABHANGI AJANI AJUDIA AKBARI AKVALIYA AMIN AMIPARA AMRELIYA ANDANI ANTALA...
  • What is software testing? What are the different types of testing?
    What is software testing? What are the different types of testing?
    SOFTWARE   TESTING STRATEGIES Why is it important? Testing often accounts for more project effort than any other software engineering...
  • WannaCry ransomware attack solution
    WannaCry ransomware attack solution
    #રેન્સમવેરનાઅટેકપહેલાઅનેપછીશુંકરશો 📮– સૌથી પહેલા માય કોમ્પ્યુટર પર રાઈટ ક્લિક કરીને સિસ્ટમ પ્રોટેક્શન સિલેક્ટ કરો 📮– સિસ્ટમ પ્રોટેક...
  • software engineering Verification and Validation (V&V) ?
    software engineering Verification and Validation (V&V) ?
     Verification and Validation (V&V) ? Verification Validation Are We Building a System ? ...
  • What is the difference between TCP/IP model and OSI model?
    What is the difference between TCP/IP model and OSI model?
    What is the difference between TCP/IP model and OSI model? OSI-model TCP-IP-Model ...
  • What do you mean by empirical estimation models? Explain COCOMO model with suitable example?
    What do you mean by empirical estimation models? Explain COCOMO model with suitable example?
    What do you mean by empirical estimation models? Explain COCOMO model with suitable example? ------------------------------------------...
  • Using Retrofit 2.x as REST client - Tutorial 1
    1. Retrofit 1.1. What is Retrofit Retrofit is a REST Client for Java and Android. It makes it relatively easy to retrieve and uplo...
  • Combine HTML and PHP code on single page explain in brief?
    Combine HTML and PHP code on single page explain in brief?
    Combine HTML and PHP code on  single page explain in brief? PHP in HTML While creating a complex page, at times you will need to u...
  • Create a Smiley Face using PHP GD Library PHP
    Create a Smiley Face using PHP GD Library PHP
    Create a Smiley Face using PHP GD Library Create a Smiley Face using PHP GD Library PHP Example.. <?php header (...
  • Wondershare Filmora video editor crack 8.2.2 For Free 2017
    Wondershare Filmora video editor crack 8.2.2 For Free 2017
    Wondershare Filmora video editor crack 8.2.2  For Free 2017 1 Go to http://q.gs/DkiDR Click on the download FILE How To Register ...

Label

  • android buzz
  • Computer Networking
  • cooking
  • game review
  • iOS buzz
  • IT Info
  • java
  • online shopping
  • php
  • seo
  • software engineering
  • SQL DataBase

Arsip

  • ►  2019 (3)
    • ►  October (2)
    • ►  August (1)
  • ►  2018 (11)
    • ►  December (1)
    • ►  August (1)
    • ►  July (2)
    • ►  June (1)
    • ►  May (4)
    • ►  April (1)
    • ►  February (1)
  • ►  2017 (26)
    • ►  September (7)
    • ►  June (1)
    • ►  May (13)
    • ►  April (1)
    • ►  February (4)
  • ▼  2016 (76)
    • ▼  November (7)
      • Mobile Number Pattern matches In Java
      • Write a script that deletes all leading and traili...
      • Write a script that behaves both in interactive an...
      • Create a Smiley Face using PHP GD Library PHP
      • Identifying Current Server Statistics Software and...
      • Identifying Current Server Statistics Software and...
      • Auditing an Existing Site to Identify SEO Problems...
    • ►  October (38)
      • Auditing an Existing Site to Identify SEO Problem...
      • Auditing an Existing Site to Identify SEO PART 2
      • Auditing an Existing Site to Identify SEO Problem...
      • Defining Your Site’s Information Architecture Part...
      • Defining Your Site’s Information Architecture
    • ►  September (31)

Translate

Make Money

Appeters Technology . Powered by Blogger.

About Me

Patelwala
View my complete profile

Make Money

Make Money

Formulir Kontak

Name

Email *

Message *

Label

  • android buzz
  • Computer Networking
  • cooking
  • game review
  • iOS buzz
  • IT Info
  • java
  • online shopping
  • php
  • seo
  • software engineering
  • SQL DataBase

Total Pageviews

Copyright © 2016 Patelwala Education - Template by PatelWala Design - Sponsored by Appeters Technology | Distributed By Hit's Sapra