Android with Nexus 5 and Nexus 7 rooted

The Developer Preview for Android L has only been announced a couple of days ago,
 and yesterday it became available for developers to download and play with. So far Google has posted factory images just for the LG Nexus 5 smartphone and the Asus Nexus 7 2013 tablet in its Wi-Fi-only iteration.

And today both of those have been rooted by the enterprising Android tinkerers out there. So if you own either the Nexus 5 or Nexus 7 and have the Android L Developer Preview loaded on your device but wish you'd also have root access - this is for you. According to well known Android developer Chainfire,
 only a few very easy changes are required to his SuperSU flashable zip in order to make it
compatible with Android L.

 Thankfully, the folks over at The Android Soul quickly jumped in and made the necessary adjustments, and even verified that the brand new SuperSU zip they provide does work just fine on the latest version of the OS. To install SuperSU, you first need to have a custom recovery. Don't worry though, for that's an easy thing to get, as is acquiring root afterwards.

Job at Puduvai Bharthiar Grama Bank

Puduvai Bharathiar Grama Bank
Puduvai Bharathiar Grama Bank  invites applications from Indian citizens, for the post of Officer in Middle Management Grade (Scale II), Officer in Junior Management Grade (Scale I) and Office Assistant (Multipurpose) from Indian citizens who have appeared at the Common Written Examination for RRBs conducted by IBPS in September / October  2013 and declared qualified.:

  • Officer Scale-I : 08 posts, Pay Scale : Rs.14500-25700
  • Office Assistant (Multipurpose)  : 05 posts, Pay Scale : Rs.7200-19300
Application fee  : Rs.100/- (Rs.20/- for SC/ST/PWD/Ex-Serviceman) to be paid through CBS at any of the Branches of Puduvai Bharathiar Grama Bank by means of a Payment challan  or by National Electronic Funds Transfer NEFT.

How to Apply : Apply Online at Deccan Gramin Bank website only from 26/06/2014 to 11/07/2014.

View Details:http://www.puduvaibharathiargramabank.in:81/career.php


Job at Aligarh Muslim University

Applications on the prescribed form are invited for the following posts in Aligarh Muslim University  AMU :

  1. Associate  Professor  : 02 posts, Pay Scale :  Rs. 37400-67000 AGP    Rs. 9000 
  2. Assistant  Professor  : 05 posts, Pay Scale : Rs. 15600-39100  AGP Rs. 6000
  3. Sr. Principal Assistant : 05 posts
  4. Stenographers : 04 posts
  5. Calligraphist : 01 post
  6. Drivers : 17 posts
How to Apply : Apply in the prescribed format may either be delivered personally at the Reception Counter of Administrative Block or sent by post, super scribing on the top left of the cover the post applied for, advertisement number and date, to the Assistant Registrar, (Selection Committee), Aligarh Muslim University (AMU), Aligarh-202002 (UP), so as to reach him by 07/07/2014.
View details: http://www.amuregistrar.com/ads/2_2014.txt

PHP-MySQL application Security

With these two methods, there’s no longer any need to ever use GET for requests internal to an application.
You may still need it for external requests, to other applications and web sites that aren’t coded to look for their
parameters as POST data, but you can’t do anything about them.
Of course, I also should mention that there’s not much security in POST unless you’re also using SSL
Hash the passwords with Phpass.
Store the hashed passwords in the database, protected to the extent possible.   
Use 2FA.Prevent SQL injection with parameterized queries.   
Prevent XSS by escaping all user-originated output.    
Prevent CSRF with a csrftoken. 

Prevent clickjacking with an  
X-Frame-Optionsheader.
Use POST rather than GET.

Use SSL.

 Submitting Requests with POST

Submitting requests with POST instead of GET makes it just a bit harder
 for an attacker to break in, since JavaScript has to be used and easy tricks like
 coding a request in an image srcattribute won’t work. POST also prevents data like
a csrftoken from accidentally getting e-mailed or posted on a social site.

The only requests that should use GET are those that don’t do anything
 other than to display a page. Indeed, RFC 2612, the official specification for HTTP,
 says “the convention has been established that the GET and HEAD methods
SHOULD NOT have the significance of taking an action other than retrieval.
  It’s not disallowed, just discouraged. But you should act like it’s disallowed.
   

Manage Databases on a Server by php

MySQL-related functions.

  • mysql_list_dbs() Used to list the databases on a MySQL server.
  • mysql_num_rows() Returns the number of rows in a result set.
  • mysql_tablename() Despite its name, can extract the name of a table or a database from a result.
The goal of this script is to list all the databases on the local MySQL server.
  1. Open a new file in your text editor and start a PHP block:
    <?
    
  2. Create a variable to hold the result of the mysql_connect() function. Include the @ to suppress warnings, as well as the die() function to cause the script to end and a message to display if the connection fails:
    $connection = @mysql_connect("localhost", "spike", "9sj7En4")
    or die(mysql_error());
    
    
  3. Create a variable to hold the result of the mysql_list_dbs() function. Include the @ to suppress warnings, as well as the die() function to cause the script to end and a message to display if the script can't get the list:
    $dbs = @mysql_list_dbs($connection) or die(mysql_error());
     
    The only argument necessary for the mysql_list_dbs() function is the link identifier for the current connection.

    1. You'll be looping through a result and dynamically populating a bullet list. Start that bullet list outside the loop:
      $db_list = "<ul>";
      
    2. Start a counter. You'll need it for your loop:
      $i = 0;
      
    3. Begin a while loop. This loop will continue for as long as the value of $i is less than the number of rows in the $dbs result value:
      while ($i < mysql_num_rows($dbs)) {
      
    4. Once you're within the while loop, get the name of the database reflected in the current row of the result:
      $db_names[$i] = mysql_tablename($dbs, $i); 
       
      1. The variable $i is replaced by its value, so during the first loop this line would be something like $db_names[0] = mysql_tablename($dbs, 0);
        Counting starts at 0, not 1, so this would reflect the first row in the result. As the counter increments, so does the row number.
      2. Add the current database name to the bullet list:
        $db_list .= "<li>$db_names[$i]";
        
      3. Increment your count before you close the while loop:
        $i++;
        
        
      4. Close the while loop, the bullet list, and your PHP block:
        }
        $db_list .= "</ul>";
        ?>
        
       

     


LG G Watch-the magic

Google I/O developer conference has been the stage on which both LG's G Watch and Samsung's Gear Live smartwatches have finally become 100% official. And now, thankfully, both Korean giants have published full spec lists for their respective first entrants into the Android Wear game.

 Let's start with the LG G Watch (pictured above), which has been continuously teased by its maker for many weeks now. It comes with a 1.65-inch IPS LCD touchscreen with 280x280 resolution, and it's powered by a Qualcomm Snapdragon 400 chipset. It sports 4GB of internal storage, and 512MB of RAM. A 400 mAh battery is fitted in there too. The G Watch is water and dust resistant, adhering to the IP67 specification. That means it's dust tight and can withstand being submerged in up to 1m of water for up to 30 minutes. It boasts 9-axis sensors gyro / accelerometer / compass, as well as Bluetooth 4.0 connectivity. Its dimensions are 37.9 x 46.5 x 9.95mm, and it weighs 63g. It can be personalized with any standard 22mm strap available on the market.


 It will be offered in White Gold or Black Titan when it goes on sale in the Play Store later today. And AT&T has just announced that it will be among the first US carriers to sell the G Watch, without actually providing a release date though.

The Samsung Gear Live has a 1.63-inch Super AMOLED touchscreen with 320x320 resolution, as well as a 1.2 GHz processor. Samsung Gear Live It's got 512MB of RAM, 4GB of storage, and support for standard 22mm straps just like the G Watch, but comes with a slightly smaller 300 mAh battery. Though like its Korean competitor it too is IP67 certified, and supports Bluetooth 4.0. The Gear Live features Samsung's now very well known heart rate monitor that's also present in the Galaxy S5 smartphone and the Gear 2 smartwatches. Its dimensions are 37.9 x 56.4 x 8.9mm, and it weighs 59g. It will be offered in Black and Wine Red, and it's expected to join the G Watch in the Google Play Store sometime later today.

LG G3

The LG G3 officially launches tomorrow in Hong Kong, Indonesia, Singapore,
 and the Philippines and reach Europe in July. However,
UK retailers already have it in stock and will be shipping it to buyers
doorsteps tomorrow. Carphone Warehouse offers a number of pay monthly
 deals from EE, Vodafone, O2, Orange and T-Mobile starting at £38 a month.

The retailer seems to have all three color options in stock and promises free next day delivery. You can also grab it SIM-free for &pound;480. Unlocked Mobiles as the name suggests is asking for £500 for a SIM-free LG G3 and will deliver it tomorrow. Note that only the Metallic black is in stock today. Clove UK expects to have SIM-free G3s today, while MobileFun should have units by tomorrow.

XOLO Q1011 with Android 4.4

At Indian phone maker XOLO has unveiled a new device today.
The Q1011 may or may not serve as a follow-up to the Q1010, coming with a different design but mostly similar specs. One thing's for certain, though - the new handset is already up for grabs at Amazon India. It's priced at Rs. 9,999, which at the current exchange rates means $166 or €122.

 So you may be wondering what exactly you get for that low price.
The XOLO Q1011 comes with a 5-inch touchscreen with 720p resolution, as well as a 1.3 GHz quad-core processor paired with 1GB of RAM. On the back there's an 8MP BSI camera with LED flash, and a 2MP snapper takes care of selfies. The phone has dual-SIM support and 4GB of internal storage that's expandable via microSD cards.
A 2250 mAh Li-Po battery keeps things running smoothly, and
 Android 4.4 KitKat comes preinstalled.

Google index size

Google index size of major social media sites


Site                                        Type                                     Indexed pages
MySpace.com                  Social networking                         217 million
Facebook.com                 Social networking                         378 million
Twitter.com                     Microblogging                               89.3 million
Digg.com                       Social bookmarking                        16.8 million
Technorati.com                Blogs                                            9.67 million
StumbleUpon.com              Social bookmarking                   4.04 million
YouTube.com                    Video sharing                             144 million
Flickr.com                       Picture sharing                             169 million


Real-Time Search

Theoretically  speaking,  real-time  search  across  the  Internet  is  virtually  impossible.
What is possible is collecting a subset of newly posted information across an array of
sites and making this available relatively quickly.
For real-time search to be viable, it has to address many different factors but answer
one basic question: what is relevant at this moment? The viability of real-time search
relies on its heavy use of the social networking community sites as well as in designing
algorithms to filter junk versus relevant, important content on the fly.

Twitter

Twitter uses a different kind of keyword matching when producing its
search results. If you search for  watching TV, you will get results that contain both
terms.
Twitter search produces up to 1,500 tweet search results broken down to 15 tweets per
page . Even the last search result out of the 1,500 can be only a few
minutes old, depending on your search keyword. For hot topics, this may even go down
to a few seconds. Twitter’s search is case-insensitive. Twitter does not have any fancy
search commands like Google does, but in time it is expected that Twitter will catch
on in that department.

Search Engine Marketing

Google AdWords is the number one SEM platform on the Internet today, and is the
subject of many books. Although we cannot cover every single detail of AdWords in
this chapter, we will spend some time on the most important features of the platform.
Google AdSense is the extended arm of AdWords. Whereas you can use AdWords to
test, validate, and improve your keyword research, you can use AdSense to earn income
from Google by showing contextual ads. You can also use AdSense ads on your target
web pages to see whether relevant ads will show up to further validate your targeted
keywords.

Domain extensions

.com-      20,400,000,000
.org -      2,290,000,000
.net -       2,110,000,000
.edu-        248,000,000
.gov -        232,000,000
.info -        227,000,000
.biz-          74,300,000
.cat -         35,800,000
.int -            8,230,000
.mil-            8,130,000
.name -       7,000,000
.travel-       6,310,000
.coop -      646,000
.aero -       646,000
.pro-         600,000
.museum -480,000
.tel -         248,000
.jobs -     117,000

Top AdWords Tips

AdWords Tips

The following subsections provide several tips you can use when managing your 
AdWords campaigns.
Observe and track your competition
Observe the competition. Write a script to track ads of your targeted keyword list.
Record  competitor  ads  for  several  weeks.  Note  changes  in  ads.  Analyze  ads  that
changed. If the ads are not changing, this could mean they are working.
Experiment
Don’t stop with weeding out the nonworking keywords. Experiment with new keywords. Learn of any new competitors. Learn what their keywords are. Don’t be afraid
to gradually lower your bid prices to see the effects on your CTR.
Refine your ad copy
A poor CTR usually means bad ad copy, bad keyword targeting, and bad timing. You
can easily create several versions of your ads for your campaign. Use that to your advantage. Learn which ads are converting and which are not. Learn which words are
being used in the ads that work and in the ads that do not. In general, the higher your
CTR, the lower your average cost-per-click will be.
Try other platforms
If you have stiff competition on AdWords, you may want to examine other PPC platforms. Yes, search volumes may be lower, but less competition and more keywords of
interest could compensate for the lack of volume.
If you score a successful campaign with ads producing clicks and, ultimately, profits,
you  may  want  to  consider  replicating  the  campaign  across  the  other  platforms—
especially Yahoo! and Microsoft. Replicating your winning formula is smart marketing.
Bidding
Spend your money wisely. You can tell how many competitors are bidding for your
keyword simply by clicking on the More Sponsored Links link in Google.
If fewer than eight competitors are competing for specific keywords, in some cases
there  is  no  reason  to  pay  more  than  the  minimum.
 Google  gives  preference  to better-performing ads.
Start with the lowest bid and see what position your ad is averaging.
 Increase your bid a bit and see whether there are any differences in your CTR.
Stay away from high bids. You don’t need to be located at the top of the ladder to
achieve a good ROI or a high CTR. People who are serious about finding what they are
looking for will skim through all of the ads, especially if the organic results are not
giving them what they want. Pay more attention to your ad copy and your landing page
copy.
Keywords
The total number of clicks does not say much regarding the number of targeted clicks.
Think like your potential visitor. Make sure the keywords you target are specific enough
and  are  those  you  would  use  to  find  a  particular  product,  service,  or  piece  of
information.

Google Content Network or Google SERPs

The Google Content Network comprises all participating sites showing Google ads.
Using the Google Content Network is not good in all cases. You would be better off to
start advertising on Google’s results pages first. Placing ads across the Google Content
Network brings in many variables that you do not need to deal with, especially if you
are just starting out.
Google ads can appear in all kinds of places that may be detrimental to their respective
CTRs. Imagine a news portal site with thousands of unrelated keywords. What Google
shows on such sites is not overly predictable.

Job at Malaviya National Institute of Technology

Malaviya National Institute of Technology
JLN Marg, Jaipur - 302017 ,Rajasthan

  1. Librarian : 01 post
  2. Deputy Librarian : 01 post
  3. Principal Scientific/ Technical Officer : 01 post
  4. Assistant Librarian : 01 post
  5. Assistant Registrar Librarian : 01 post
  6. Deputy Librarian : 01 post
  7. Principal Scientific/ Technical Officer : 01 post
  8. Assistant Librarian : 01 post
  9. Assistant Registrar : 02 posts
  10. Scientific / Technical Officer : 02 posts
  11. Technical Assistant Chemical Engg. : 05 posts
  12. Technical Assistant Computer Engg. + IT : 02 posts
  13. Technical Assistant Chemistry : 01 post
  14. Technical Assistant Civil Engg. : 04 posts
  15. Technical Assistant Electrical Engg. : 04 posts
  16. Technical Assistant Electronics & Communication Engg. : 03 posts
  17. Technical Assistant Mechanical Engg. (Work Shop) : 10 posts
  18. Technical Assistant Metallurgical & Material Engg. : 05 posts
  19. Technical Assistant Physics : 02 posts
  20. Junior Engineer (Civil) : 05 posts
  21. Junior Engineer (Electrical) : 01 post
  22. Technical Assistant (Electrical) : 01 post
  23. Technical Assistant (Mechanical) : 01 post
  24. Technical Assistant (Mater Research Centre) : 05 posts
  25. Technical Assistant (Architecture and Planning) : 06 posts
  26. Technician (Electrical) : 01 post
  27. Technician (Mechanical) : 01 post
  28. Technician (Material Research Centre) : 02 posts
  29. Technician : 02 posts
  30. Scientific / Technical Officer : 02 posts
  31. Technical Assistant Chemical Engg. : 05 posts
  32. Technical Assistant Computer Engg. + IT : 02 posts
  33. Technical Assistant Chemistry : 01 post
  34. Technical Assistant Civil Engg. : 04 posts
  35. Technical Assistant Electrical Engg. : 04 posts
  36. Technical Assistant Electronics & Communication Engg. : 03 posts
  37. Technical Assistant Mechanical Engg. (Work Shop) : 10 posts
  38. Technical Assistant Metallurgical & Material Engg. : 05 posts
  39. Technical Assistant Physics : 02 posts
  40. Junior Engineer (Civil) : 05 posts
  41. Junior Engineer (Electrical) : 01 post
  42. Technical Assistant (Electrical) : 01 post
  43. Technical Assistant (Mechanical) : 01 post
  44. Technical Assistant (Material Research Centre) : 05 posts
  45. Technical Assistant (Architecture and Planning) : 06 posts
  46. Technician (Electrical) : 01 post
  47. Technician (Mechanical) : 01 post
  48. Technician (Material Research Centre) : 02 posts
  49. Technician : 02 posts
How to Apply :  Apply Online at MNIT website from 24/06/2014 to 23/07/2014. View Details : http://www.mnit.ac.in

Job at Oil India Limited

Oil India Limited  hire Drilling Engineers on contract basis purely for temporary requirement through a walk in interview. The contract would be for about a period of two years, initially for a period of six months, extendable by another three six months term, depending upon requirement and the performance of the individual.

  • Drilling Engineers : 12 posts  in various categories, Consolidate Pay : Rs. 80000 / 70000 / 60000, Age :  36/ 32/ 29 years, Qualification : BE/ B Tech in Engineering or PGD in Petroleum
    Exploration or equivalent from a recognized Institute/University.
 How to Apply : Candidate should appear for a Walk-In-Interview on 09/07/2014 at 8.00 am to 9.00 am at Conference Room, Pipeline Headquarters, Oil India Limited, Udayan Vihar, Narengi, Guwahati, Assam - 781171. 

View details: http://www.oil-india.com/COpenings.aspx

Job at Reserve Bank of India

Reserve Bank of India

Applications are invited from meritorious Sports persons for the posts of Assistant / Office
Attendants in RBI.
  • Assistant / Office Attendants : 53 posts in various sports disciplines and at various places, Age : 18-26 years. Relaxation as per rules, Pay Scale : Rs. 8040-20100/- for Assistants and Rs. 6350-13750/- for Office Attendants. , Qualification : Graduate for Assistants and minimum 10th pass for Office Attendants.
Application Fee : Rs.100/- (no fee for SC/ST candidates).

How to Apply : Application in the prescribed format should be send to the respective centre on or before 21/07/2014 where candidates wants to apply.

View details :http://www.rbi.org.in/scripts/bs_viewcontent.aspx?Id=2841

Target keyword bytes

Target markets

• Each target keyword niche needs its own page. Each page is then
optimized for its keyword niche.

• Don’t target the same keyword on different pages.
Your pages need to be organized into groups (called categories).
That organization is your site structure.

Your site’s navigationis the menus and links that users and search
engines use to move from one page to another on your site.
Crucially, those links allow link power to be distributed around your site
from the pages that receive the most inbound links (especially your
home page to those that do not.

SEOs always groan and roll their eyes when they hear that SEO has not
been considered until after a site’s content has been planned.
You should use your keyword research to plan your site’s structure and
its content.

For new sites, each of your target markets is a categorywith a category page.
Chosen target keyword niches within each target
market will be mapped to
either:
• Content pages, or
• Further category
pages effectively subcategories
This means that a content page or category page
will be optimized for each target keyword niche.
Which type of page content or category will depend on a keyword
niche’s size, its importance to your site and the level of resources you
have to develop new pages.

Site navigation is crucial for three reasons all of them fundamental to SEO:


• Usability- helping users find what they want.
• Indexing- helping search engines find all your pages.
• Link power- distributing it to all your pages.
Only if a page is indexedby a search engine such as Google can it
appear on that engine’s results pages.

Link powercomes from other sites linking to yours.

Job at King George's Medical University

Professor job King George's Medical University

Online applications are invited for the recruitment of suitable candidates against General vacancies for the following listed Faculty and Non faculty posts :

  1. Professor : posts in various departments, Pay Scale : 37400-67000 AGP Rs. 10000
  2. Assistant Professor :  posts in various departments, Pay Scale : Rs.15600-39100 AGP Rs.6600
  3. Lecturer/ Assistant Professor : posts in various departments, Pay Scale : Rs.15600-39100 AGP Rs.5400
  4. Research Officer : 06 posts
  5. Demonstrator : 05 posts
  6. Assistant Research Officer : 01 post
  7. Pharmaceutical Chemist : 01 post
  8. Psychologist : 01 post
  9. Computer Programmer : 02 posts
  10. Statistician : 03 posts
  11. Speech Therapist : 01 post
Application Fee : Rs. 1000/- (Rs.800/- for SC/ST) to be deposited in Allahabad Bank or Axis Bank.


Non Practicing Allowance and other allowances will be applicable as per U.P. Govt. Rules. In case of Non Medical Teachers the Non Practicing Allowance will not be admissible as per rule. New pension scheme of the Govt. shall be applicable for these posts:

How to Apply : Please apply Online at KGMU website only. Please take a print out of the form and send on or before 25/07/2014 by speed post along with necessary supporting documents / certificates etc. to  Registrar, King George's Medical University, Lucknow, U.P. India. PIN - 226003.
view Details:  http://jobs.kgmu.org
 

Job at Oil and Natural Gas Corporation Ltd

Technician Job at Oil and Natural Gas Corporation Ltd

ONGC Western Offshore Unit, Mumbai invites applications from Candidates with valid registration in any of the Employment Exchanges located within the State of Maharashtra. i.e Candidate’s Name and essential qualifications must be registered in the Employment Exchange on or before closing date of online registration process.  :

  1.  Assistant Technician (Electrical) : 09 posts
  2. Assistant Technician (Mechanical) : 03 posts
  3. Assistant Technician (Production) : 17 posts
  4. Technical Assistant Gr.III (Chemistry) : 02 posts
  5. Assistant Technician (Electronics) : 05 posts
  6. Assistant Technician (Boiler) : 13 posts
  7. Marine Radio Assistant Grade III : 20 posts
  8. Assistant Rigman (Drilling) : 38 posts
  9. Assistant Gd. III (Materials Management) : 02 posts
  10. Assistant Technician (Civil) : 02 posts
  11. Junior Assistant Technician (Boiler) : 01 post
  12. Junior Assistant Technician (Production) : 03 posts
  13. Junior Assistant Technician (Cementing) : 02 posts
  14. Junior Fire Supervisor : 02 posts
  15. Junior Motor Vehicle Driver (Winch Operations) : 04 posts
  16. Junior Assistant Technician (Fitting) : 05 posts
  17. Junior Assistant Technician (Electrical) : 01 post
  18. Junior Assistant (Steno English) : 10 posts
  19. Junior Assistant (Materials Management) : 10 posts
  20. Junior Assistant (Accounts) : 02 posts
  21. Junior Slinger Cum Rigger : 12 posts
  22. Junior Assistant (P&A) : 08 posts
  23. Junior Technical Assistant (Chemistry) : 02 posts
  24. Junior Motor Vehicle Driver (HV Operation) : 01 post
  25. Junior Fireman : 11 posts
How to Apply : Apply Online at ONGC website from 24/06/2014 to 15/07/2014 only.

View details : http://www.eapplicationonline.com/ongcmumbairec/pages/index.aspx
 

HTC Nexus specs

HTC working with Google on a Nexus tablet have been abundant this year. We've heard quite a few times that an 8-inch or 8.9-inch device would be coming, and that it would be manufactured by HTC, and not Asus - the company responsible for both Nexus 7 iterations.

 Now though almost all the details about the upcoming HTC tablet have been leaked. It may be called Nexus 9 when it launches, and its codename is Volantis or Flounder. It's got an 8.9-inch touchscreen indeed. However, it comes with a very odd resolution: 2048x1440. That would be a big departure from previous Nexus tablets, which all had 16:10 aspect ratios.
The new Nexus is closer to the iPad's proportions, though it's not 4:3 like Apple's tablets either. And that's strange, since the source of this leak claims that the Nexus 9 will have 4:3 aspect ratio.

 So something's off here, do note that. What you see above is the original leaked slide about the Volantis. Based on this, the folks over at Android Police created the render you can see below, making the tablet itself front and center. The Nexus 9 is said to come with Nvidia's Tegra K1 64-bit chipset, 2GB of RAM, and 16 or 32 GB of storage space. An 8MP camera with optical image stabilization will be on the back, with a 3MP snapper on the front. The tablet will sport a zero-gap aluminum construction, and it should also have stereo front-facing speakers (though they aren't depicted in the leaked render, as you can see). Its dimensions apparently will be 226.3 x 151.9 x 7.9 mm, and it shall weigh 418g in Wi-Fi-only or 427g with 4G LTE.

 In terms of pricing we're looking at $399 for the 16GB model and $499 for double that. This is for Wi-Fi-only versions, mind you. The ones with LTE may go into $600+ territory, which means the Nexus 9 will be as expensive as the iPad Mini with Retina Display. That's an interesting move considering that all of its predecessors have been very affordable compared to their competitors.

Best Atif Aslam Songs Non Stop

Best Atif Aslam Songs Non Stop

Most Romantic Songs Of Bollywood

Most Romantic Songs Of Bollywood

Securing FTP-How

 Securing FTP
You can make your FTP uploads and downloads more secure in one of two
ways: through Secure File Transfer Protocol SFTP or Transport Layer
Security TLS.

SFTP
SFTP is a more secure way of uploading and downloading files than FTP.
When you use FTP, data is sent unencrypted, so someone who intercepts the
data can easily read it. SFTP encrypts the commands and the data to provide
a much more secure form of transport.

To use SFTP (also known as secure FTP or SSH file transfer protocol), your
host has to have configured the server to be able to accept a secure connection from you. Most shared hosts do not allow this because giving clients SSH
access opens doors for clients to get into areas of the server that the host
does not want them messing with.

The FTP and SFTP protocols work quite differently, and your host needs to
have opened a specific port and allowed you SSH login permission to be able
to connect with SFTP. If you do have SFTP access, the following steps show
how to make a connection using FileZilla. Other clients may differ slightly in
layout but require that you enter the same information

1. In your FTP client, select File➪Site Manager and create a new site.
2. Select the Protocol drop-down box and click SFTP.
The Site Manager dialog box opens, as shown in Figure 4-4.
3. Enter the Host name, Username, and Password, which are normally
the same as you would use with FTP.
4. Enter the correct setting in the Port field.
5. Click Connect and your client attempts to negotiate a secure connection.
If the client cannot connect, check with your host to confirm whether it
allows SFTP connections.
TLS
TLS offers a similar level of security to SFTP but is favored more highly by
hosts because it does not require that the client have SSH access to the
server.

The following steps describe how to connect using TLS and FileZilla:
1. Choose File➪Site Manager and create a new site or select an
existing one.
2. Enter your FTP details as normal.
www.it-ebooks.info
69 Chapter 4: Managing Files
3. Click in the Encryption drop-down box (see Figure 4-5) and select
either Explicit TLS or Implicit TLS.
See the “Explicit TLS versus Implicit TLS” sidebar for more information.
4. Connect as normal.

Setting and managing file permissions

File permissions are a powerful security tool created to give the server
administrator the capability to define exactly who can read, write, and execute any given file.
Each file has its own permissions, which are either expressed in a textual
form drwxrwxrwx or in numerical form, such as 755.
permissions shown in three-digit format in FileZilla.
The permissions are set for
 The owner:Usually the owner is the creator of the file, but that can be
changed, if necessary.

 The group:Groups are set up in UNIX/Linux to manage permissions.
Each user can be added to multiple groups, and each file can be in one
group. This enables you to restrict who has access to the file.

The public:Anybody who has access to the system is classed as a
member of the public group. That means all users are in the public group.

Latest SUPERHIT Top 10 Hindi Video Songs

Latest SUPERHIT Top 10 Hindi Video Songs

Oh Khuda Official Video Song

Oh Khuda  Official Video Song

Samsung Galaxy S5 LTE

An LTE-A-enabled edition of its Galaxy S5 flagship that's also set to come with a QHD display and Snapdragon 805 chipset exclusively for its home market of Korea.

Now, as if Korean residents weren't lucky enough, there's also word that Special Edition of the Galaxy S5 LTE-A will be making its way to customers of South Korea's primary carrier KT with a redesigned back panel. The new diamond-like texture will be making an appearance with KT's olleh branding, as part of another new back panel being tried out by the Korean company. Otherwise, the internals of the Special Edition of the LTE-A S5 will be the same as on the regular LTE-A version. Otherwise, new alleged benchmarks of the Galaxy S5 LTE-A have also surfaced.

Codenamed the SM-G906S, the AnTuTu 4 benchmark figures don't exactly show the mind-boggling numbers one would expect from a Snapdragon 805 chipset. Either processor performance truly does get affected by the presence of a QHD screen like we saw on the LG G3, or the numbers reflect an unfinalized build of the Galaxy S5.

In any event, we'll take the leaked figures with a grain of salt and hope for better performance in the finalized product - a product that we also hope will be released outside of Korea at some point.

Galaxy S5 Note 3 with Android

Samsung is apparently getting closer and closer to releasing its first software versions based on Android 4.4.3. The first devices to get an Android 4.4.3 build from the Korean company are going to be the Galaxy S5 and the Galaxy Note 3, it seems.

 That would make perfect sense, given how these are right now Samsung's flagships in their respective market segments. According to a purportedly leaked internal document, the Android 4.4.3 updates for both Snapdragon and Exynos versions of the Galaxy S5 have been finalized and are due out before the end of this month. In the case of the Galaxy Note 3, development has reached the final testing stage. If all goes well, the new bits should be ready to roll out to users sometime in July.

 Previous such leaked documents surfaced last month, when the Galaxy S5's update was still being worked on. Now that it's finalized, the guessing game begins - which will be the first territory (or carrier) to get Android 4.4.3? One thing to note is that the document pictured above has some odd font differences in it, which may indicate a bad Photoshop job. So do take this with a pinch of salt. Further complicating things is the fact that Google has just released Android 4.4.4 to its Nexus devices, a version that seems to contain a pretty important security fix.

top 20 Google Tools for business

Google’s search service.Google indexes and organizes the contents of the Web
in a huge database; it’s this database that you use to search the Web.

AdWords.This is a paid search placement program; you create ads and bid
on how much you’ll pay for each click the ad attracts. Each time someone
clicks on your ad, you gain a potential customer or client

AdSense.This program enables blog and Web site owners to run targeted ads
alongside their content; the content of the ads is intended to complement
what you’ve published yourself.

Google Apps.This service provides you with a domain name for a one-time
$10 fee and enables you to use a suite of business applications,
which multiple users can access.

Google Docs & Spreadsheets.This exciting and easy-to-use service gives you a
word processor and a spreadsheet application that you can use and access
for free.

Google Calendar.A default calendar is created for you when you sign up for
Google Apps; you can also create custom calendars and even embed calendars
 in Web pages.

Gmail.Google’s e-mail application comes with lots of storage space and an
integrated chat client to boot.

Google Talk.Google’s chat application lets you send instant messages and
even conduct real-time voice conversations through your computer.

Google Page Creator.This Web page editing tool lets you create your own
Web site to go along with your Google Apps domain name.

Blogger.Google’s popular, and free, blogging services lets you create your
own Web-based diary, complete with an index, an archive, and a comments
feature.

Checkout, Google Product Search, Catalogs.I’m fudging a bit and lumping
these three separate Google services into a single unit. Each one can help
commercial businesses sell products online

Google Base.A growing number of entrepreneurs are posting merchandise,
property, services, jobs, and lots of other things for sale in this Web
publishing area.

Google Gadgets.These easy-to-implement bits of Web content can make your
Web site more valuable and attract more repeat visits.

Google Analytics, Trends. These two analytical tools provide you with information
about visits to your own Web site and trends in Web searches, respectively.

Google Desktop, Toolbar.These two tools help you search more effectively, both
through files on your own computer and your local network (Desktop) as
well as the wider Internet Toolbar.

Picasa.This powerful photo viewing and editing tool automatically organizes
all the files on your desktop and lets you edit them as well.

Google Apps Premium.This corporate version of Google Apps guarantees
nearly 24/7 reliability and gives businesses the ability to write custom programs that
 interface with Google’s services.

Gmail Mobile and SMS.These tools let busy professionals search Google and
exchange messages.

Google Pack.This suite of applications will boost the functionality of virtually
any workstation.