Nokia Lumia

Lumia 930 launch date, but Microsoft and Nokia may have moved up the schedule.

 The Nokia Lumia 630 will succeed the 620, which got lost in the shadow of the highly
popular Lumia 520.
Its rumored specifications include a dual-SIM options a first for WP, 4.3inch WVGA screen.
  The Nokia Lumia 930 is meant to be a GSM version of the Lumia Icon.
 There will be differences though, the screen is said to be 4.5 instead of 5.
There might be other changes too, similar to how the Lumia 925 differed from Verizon's 928.


Htc Smartphone Market

Amazon phone-Six cameras


 KGI Securities analyst Ming-Chi Kuo predicted in a note to clients that Amazon -US will launch its own brand smartphone in 3-6 months, using the same hardware strategy as used for its e-reader and tablet. For those keeping track at home, this would put it on the market roughly two years after the first rumors copped up.

Kuo also predicts six cameras that include front and rear cameras, plus additional for touch-less gesture controls.

LG Optimus

LG has begun rolling out the Android 4.4 KitKat firmware update for LG Optimus G Pro.
 The first market to get it is LG's homeland - South Korea. The update is available on two of the three Korean telecoms - SKT and LG U+ F240S and F240L models, while



KTF will get it by the end of March. The new firmware is available over the air and will bring the
Optimus G Pro slate to the latest Android version. It will also speed up the overall system performance and the transfer speeds via MTP, improve the device's messaging capabilities with the new Hangouts app, change the color scheme of some UI elements such as the notification bar, and improve the RAM management. Now that LG is seeding the update to the Korean Optimus G Pro units,




We bet the international rollout isn't that far away. LG has already updated the LG G2 flagship, so it just make sense Optimus G Pro

Android 4.3 for Sony Xperia

  
Apparently Sony has been working on Android 4.3 Jelly Bean firmware update and it will soon begin rolling out. The first country to get it should be France as the SFR carrier has already approved the ROM recently. Vodafone Australia has also shared it is testing the new firmware on its Xperia M version and if everything goes without hiccups, the Android 4.3 Jelly Bean for the Australian Xperia M should be out soon too. So, Sony seems to be finished developing the update and hopefully it will reach all Xperia M units around the globe in the next couple of weeks.

According to the SFR changelog the new update will bring your Xperia M Android 4.3 Jelly Bean, faster UI, updated multimedia apps (Walkman, Album, Movies), Xperia Themes and better bookmark management in Chrome. There is no word if the Xperia M will be getting the KitKat treatment later this year as its Xperia M2 successor.

Galaxy S5 pricing-AT&T



AT&T has said the pricing and availability of the Samsung Galaxy S5

You can also opt for the AT&T Next plans - in that case the Galaxy S5 comes at $25
 per month on AT&T Next 18 or $32.5/month with AT&T Next 12. Samsung Galaxy
S5 • Gear 2 • Gear 2 Neo • Gear Fit Naturally, the carrier will be also offering the newly announced Tizen-based smartwatches Gear 2 ($299) and Gear 2 Neo $199, as well as the Gear Fit $199 smartband.


 If you pair your Galaxy S5 order with Gear 2 or Gear 2 Neo smartwatch until June 5, you will get a $50 discount. The pre-orders of the Galaxy S5 and its premium accessories start tomorrow, March 21, and will ship in early April. The official launch of the Galaxy S5 will be on April 11, as planned. Today we told you the Galaxy S5 is expected to be about $100 cheaper than its predecessor at launch. Well, for AT&T this is not happening. Last year the US carrier has launched the Galaxy S4 for $199.99 with a 2-year contract, while the off-contract price was $640.

Top Uk Jobsites-job search Uk

Graduate Jobs in the UK
Graduate Jobs in the UK and Worldwide from the GRADUATE Job. Use the Graduate job search page to find a new Graduate job online. 

www.thegraduatejob.com



Retail & Wholesale Jobs in the UK and Worldwide from the RETAIL Job. Use the Retail & Wholesale job search page to find a new Retail & Wholesale job online.
www.theretailjob.com

Just Student Jobs is the #1 student job site helping UK students find all kinds of part time jobs, internships, placements and summer jobs for students. - Student Jobs - Just for UK students Home Search Jobs Summer Jobs Part Time Jobs
www.student-jobs.co.uk


Catering & Hospitality Jobs in the UK and Worldwide from the CATERING Job. Use the Catering & Hospitality job search page to find a new Catering & Hospitality job online.
www.thecateringjob.com




Agriculture, Fisheries & Forestry Jobs in the UK and Worldwide from the  Job. Use the Agriculture, Fisheries & Forestry job search page to find a new Agriculture, Fisheries & Forestry job online.
www.theoutdoorjob.com


Aerospace Jobs in the UK and Worldwide from the AEROSPACE Job. Use the Aerospace job search page to find a new Aerospace job online.
www.theaerospacejob.com


Work From Home Jobs in the UK and Worldwide from the HOME WORKER Job. Use the Work From Home job search page to find a new Work From Home job online.
www.thehomeworkerjob.com 


Online Job Work From Home

PHP-Mathematical Functions


ABS(expr)
  
This function returns the absolute (positive) value of expr.

SIGN(expr)
  
This function returns -1, 0, or 1 depending on whether expr is negative, zero, or positive, respectively.

MOD(expr1,expr2),expr1 % expr2
  
This function returns the remainder of dividing expr1 by expr2.

FLOOR(expr)
  
This function rounds down expr. returns the largest integer value that is less than or equal to expr.

CEILING(expr)
  
This function rounds up expr . returns the smallest integer value that is greater than or equal to expr.

ROUND(expr)
  
This function returns expr rounded to the nearest integer. Note that the behaviour when the value is exactly an integer plus 0.5 is system dependant. Thus, you should not rely on any particular outcome when migrating to a new system.

ROUND(expr,num)
  
This function rounds expr to a number with num decimal places, leaving trailing zeroes in place. Use num=2, for example, to format a number as dollars and cents. Note that the same uncertainty about the rounding of 0.5 applies as discussed for ROUND above.

EXP(expr)
  
This function returns eexpr, the base of natural logarithms raised to the power of expr.

LOG(expr)
  
This function returns ln expr, or logarithm of expr.

Remember, a logarithm with an arbitrary base B can be calculated as LOG(expr)/LOG(B).

LOG10(expr)
  
This function returns the base-10 logarithm of expr.

POW(expr1,expr2),POWER(expr1,expr2)
  
This function returns expr1 raised to the power of expr2.

SQRT(expr)
  
This function returns the square root of expr.

PI()
  
This function returns the value of πpi.

COS(expr)
  
This function returns the cosine of expr in radians
SIN(expr)
  
This function returns the sine of expr in radians (e.g. SIN(PI()) = 0).
TAN(expr)
  
This function returns the tangent of expr in radians (e.g. TAN(PI()) = 0).
ACOS(expr)
  
This function returns the arc cosine (cos-1 or inverse cosine) of expr (e.g. ACOS(-1) = 3.141593).
ASIN(expr)
  
This function returns the arc sine (sin-1 or inverse sine) of expr (e.g. ASIN(0) = 3.141593).
ATAN(expr)
  
This function returns the arc tangent (tan-1 or inverse tangent) of expr (e.g. ATAN(0) = 3.141593).
ATAN(y,x),ATAN2(y,x)
  
This function returns the angle (in radians) made at the origin between the positive x axis and the point (x,y) (e.g. ATAN(1,0) = 1.570796).
COT(expr)
  
This function returns the cotangent of expr (e.g. COT(PI()/2) = 0).
RAND(),RAND(expr)
  
This function returns a random, floating point number between 0.0 and 1.0. If expr is specified, a random number will be generated based on that value, which will always be the same.
LEAST(expr1,expr2,...)
  
This function returns the smallest of the values specified.

GREATEST(expr1,expr2,...)
  
This function returns the largest of the values specified.
DEGREES(expr)
  
This function returns the value of expr (in radians) in 
degrees.
RADIANS(expr)
  
This function returns the value of expr (in degrees) in radians.
TRUNCATE(expr,num)
  
This function returns the value of floating point number expr truncated to num decimal places

Database Backups using mysqldump


The MySQL server, and mysql, the MySQL client, a MySQL installation comes with many useful utility programs. We have seen mysqladmin, which is responsible for the control and retrieval of information about an operational MySQL server, for example.

mysqldump is another such program. When run, it connects to a MySQL server (in much the same way as the mysql program or the PHP language does) and downloads the complete contents of the database you specify. It then outputs these as a series of SQL CREATE TABLE and INSERT commands that, if run in an empty MySQL database, would create a MySQL database with exactly the same contents as the original.
If you redirect the output of mysqldump to a file, you can store a “snapshot” of the database as a backup. The following command (typed all on one line) connects to the MySQL server running on myhost as user root with password mypass, and saves a backup of the database called dbname into the file dbname_backup.sql:

shell%mysqldump -h myhost -u root -pmypass dbname >
dbname_backup.sql 
 
To restore this database after a server crash, you would use these commands:
shell%mysqladmin -h myhost -u root -pmypass create dbname
shell%mysql -h myhost -u root -pmypass dbname < dbname_backup.sql 
 
The first command uses the mysqladmin program to create the database; alternatively, you can do this at the MySQL command line. The second connects to the MySQL server using the usual mysql program, and feeds in our backup file as the commands to be executed.


Facilities exist in MySQL to keep up-to-date backups that are not adversely affected by server activity at the time at which the backups are generated. Unfortunately, they require you to set up a backup scheme specifically for your MySQL data, completely apart from whatever backup measures you have established for the rest of your data. As with any good backup system, however, you'll appreciate it when the time comes to use it.

You can also edit update logs to undo mistakes that may have been made. For example, if a co-worker comes to you after having accidentally issued a DROP TABLE command, you can edit your update log to remove that command before you restore your database using your last backup and the log application. In this way, you can even keep changes to other tables that were made after the accident. And, as a precaution, you should probably also revoke your co-worker's DROP privileges. 

An update log is a record of all SQL queries that were received by the database, and which modified the contents of the database in some way. This includes INSERT, UPDATE, and CREATE TABLE statements among others, but doesn't include SELECT statements.

PHP file functions

fopen
  
Opens a file for reading and/or writing. This file can be stored on the server's hard disk, or PHP can load it from a URL just like a Web browser would.
fclose
  
Tells PHP you're finished reading/writing a particular file and releases it for other programs or scripts to use.
fread
  
Reads data from a file into a PHP variable. Allows you to specify how much information (i.e. how many characters or bytes) to read.
fwrite
  
Writes data from a PHP variable into a file.
copy
  
Performs a run-of-the-mill file copy operation.
unlink
  
Deletes a file from the hard disk.

Through examination of server logs, you'll probably find that this is one of the most requested pages on your site. If you ask yourself some of the questions above, you'll realize that this page doesn't have to be dynamically generated for every request. As long as it's updated every time new content is added to your site, it'll be as dynamic as it needs to be. With a PHP script, you can generate a static snapshot of the dynamic page's output and put this snapshot online, in place of the dynamic version .

By converting high-traffic dynamic pages into semi-dynamic equivalents, which are static pages that get dynamically regenerated at regular intervals to freshen their content, you can go a long way towards reducing the toll that the database-driven components of your site take on your Web server's performance.

Website, you probably see site traffic as something you'd like to encourage. Unfortunately, high site traffic is just the kind of thing that a Web server administrator dreads—especially when that site is primarily composed of dynamically generated, database-driven pages. Such pages take a great deal more horsepower from the computer that runs the Web server software than plain, old HTML files do, because every page request is like a miniature program that runs on that computer.

  • Ensure that non-conflicting file names are generated.
  • Synchronize stored files with the database by adding an entry for each file as it is uploaded.
  • Delete old files when their database entries are deleted.



Govt Job At AIIMS Bhuvaneswar Recruitment 2014

 Govt Job At AIIMS Bhuvaneswar Recruitment 2014

AIIMS BHU Recruitment 2014 – Various Vacancies. All India Institute of Medical Sciences
AIIMS, Bhuvaneswar invites Online Applications on the prescribed pro-forma from suitable
 candidates for recruitment of Group A and B posts on Direct Recruitment Basis.

Eligible Persons apply on the prescribed format on or before 31st March 2014.



Location: Bhuvaneswar.

Post details: S.No Name of The Post No of Posts Qualification Pay or Salary Age
Limt 1 Lecturer in Nursing 04 Master’s Degree in Nursing from a recognized
Institution/University.Registered Nurse Midwife.
 Five years’ experience with a minimum of two years teaching experience in Nursing. Rs.15,600-39,100 /- 50 years 2 Blood Transfusion Officer 01 A recognized Medical Qualification included in I
or II schedule or part II of the 3rd schedule other than the licentiate qualifications
 to the Indian Medical Council Act 1956. Holders of educational qualifications include
in Part-II of the 3rd Schedule should fulfill the conditions stipulated in sub-section 3
 of the section 13 of the Indian Medical Council Act 1956. Rs.15,600-39,100 /- 30years 3
 Child Psychologist 01 M.A. with specialized training/Ph.D in psychology/ or any other
equivalent qualification. Rs.15,600-39,100 /- 35 years 4 Clinical Psychologist 01 Master Degree