Google's Tensor flow.
TENSOR FLOW
Tensor flow is an open source software library developed by the Google brain team from Google for machine learning in various aspects and different kinds of language understanding tasks.
Tensor flow is a 2nd Gen Application Program Interface which is used for latest Google research and production.
Google commercial products that are developed using tensor flow are speech recognition, gmail,Google photos and Google search.
Smartphone that are getting android 4.4 kitkat update
List Of Smartphones Getting Android 4.4 KitKat Update:
Sony
HTC
New Desire series phones launched in 2013
LG
Samsung
Sony
- Sony Xperia Z1
- Sony Xperia Z
- Sony Xperia Z Ultra
- Sony Xperia ZL
- Sony Xperia Tablet Z
HTC
- HTC One
- HTC One X+
- HTC One X
New Desire series phones launched in 2013
- HTC Droid DNA
- HTC J
- HTC Butterfly
LG
- LG G2
- LG Nexus 4
- LG Optimus L7, L5, L3
- LG Optimus G
- LG Optimus G Pro
- LG Optimus VU
Samsung
- Samsung Galaxy S4
- Samsung Galaxy S4 Zoom
- Samsung Galaxy S4 Active
- Samsung Galaxy Note 3
- Samsung Galaxy Mega (no confirmation whether the 5.8, 6.3 or both)
- Samsung Galaxy S3
- Samsung Galaxy Note 2
- Samsung Galaxy S4 Mini
- Samsung Galaxy Tab 3 & Tab 2
CSS comments
CSS comments are just like the comments we use in programming language.In programming languages, we use comment line for documentation purpose or instead of deleting some lines.
Sample code to illustrate comment lines:
<html>
<head>
<title>Sample</title>
<body>
<table border = " 1 " >
<tr>
<th>Date</th>/* It represents heading*/
<th>Day</th>
</tr>
<tr>
<td>1/1/2014</td>/*First cell of the table*/
<td>Wednesday</td>/*Second cell of the table*/
</tr>
<tr>
<td>2/1/2014</td>
<td>Thursday</td>
</tr>
<tr>
<td>3/1/2014</td>
<td>Friday</td>
</tr>
<tr>
<td>4/1/2014</td>
<td>Saturday</td>
</tr>
<tr>
<td>5/1/2014</td>
<td>Sunday</td>
</tr>
</tr>
</table>
</body>
</html>
Sample code to illustrate comment lines:
<html>
<head>
<title>Sample</title>
<body>
<table border = " 1 " >
<tr>
<th>Date</th>/* It represents heading*/
<th>Day</th>
</tr>
<tr>
<td>1/1/2014</td>/*First cell of the table*/
<td>Wednesday</td>/*Second cell of the table*/
</tr>
<tr>
<td>2/1/2014</td>
<td>Thursday</td>
</tr>
<tr>
<td>3/1/2014</td>
<td>Friday</td>
</tr>
<tr>
<td>4/1/2014</td>
<td>Saturday</td>
</tr>
<tr>
<td>5/1/2014</td>
<td>Sunday</td>
</tr>
</tr>
</table>
</body>
</html>
Microsoft Programming Qualifications
Certificates:
- Microsoft certified professional developer
- Microsoft certified application developer
- Microsoft certified solution developer
For more details:
iPhone iOS 7 Pictures and videos leaked in youtube
Apple is currently testing out the Specs and Features with which the Apple iPhone 7G is coming.
Specifications :
- 5 inch HD Touch Screen Display
- Quad Core A8 Chipset Processor
- 3000mAh Battery
- 20 MP rear camera with 1080 pixel HD recording
- 8MP front facing camera
- 256GB Memory
- Integrated projector
Most Probably the Apple iPhone 7 Release Date will be coming in late 2014.
Youtube link : http://www.youtube.com/watch?v=FmGG4SD8l1k
Youtube link : http://www.youtube.com/watch?v=FmGG4SD8l1k
Programming contest by google
Hope you all know about google code jam. This is an online programming contest by google which will have four online rounds.Finals will be held at google's office in sunny los angeles,california in august .
Registration will be open to all programmers,student or professionals from March 11,2014
For more details:
Click the below link:
Code jam
Schedule
Practice and learn
Registration will be open to all programmers,student or professionals from March 11,2014
For more details:
Click the below link:
Code jam
Schedule
Practice and learn
HTML
HTML tables:
In real time applications,user may want to prepare applicant details,Employee details, Student report card, and so on.These application would be effective,if they are in a tabular format.If these applications are to be presented in a web page,it can be done with HTML.
HTML provides the choice for the user to create tables.To create a table in HTML, <table> tag is used.Usually,application such as microsoft word, staroffice writer will display the details of first row as bold,when the data is in presented in a tabular format.
Similarly,browsers make the text which is present between the tag <th> as bold.Hence,in HTML we may use the tag for heading purpose.A table is divided into rows by <tr> tag and each row is divided into cells by <td> tags.
Example:
<th>HEADING</th>
<tr>FIRST ROW</tr>
<td>FIRST CELL</td>
Sample code to create a table in web page:
<html>
<head>
<title>Sample</title>
<body>
<table border = " 1 " >
<tr>
<th>Date</th>
<th>Day</th>
</tr>
<tr>
<td>1/1/2014</td>
<td>Wednesday</td>
</tr>
<tr>
<td>2/1/2014</td>
<td>Thursday</td>
</tr>
<tr>
<td>3/1/2014</td>
<td>Friday</td>
</tr>
<tr>
<td>4/1/2014</td>
<td>Saturday</td>
</tr>
<tr>
<td>5/1/2014</td>
<td>Sunday</td>
</tr>
</tr>
</table>
</body>
</html>
In real time applications,user may want to prepare applicant details,Employee details, Student report card, and so on.These application would be effective,if they are in a tabular format.If these applications are to be presented in a web page,it can be done with HTML.
HTML provides the choice for the user to create tables.To create a table in HTML, <table> tag is used.Usually,application such as microsoft word, staroffice writer will display the details of first row as bold,when the data is in presented in a tabular format.
Similarly,browsers make the text which is present between the tag <th> as bold.Hence,in HTML we may use the tag for heading purpose.A table is divided into rows by <tr> tag and each row is divided into cells by <td> tags.
Example:
<th>HEADING</th>
<tr>FIRST ROW</tr>
<td>FIRST CELL</td>
Sample code to create a table in web page:
<html>
<head>
<title>Sample</title>
<body>
<table border = " 1 " >
<tr>
<th>Date</th>
<th>Day</th>
</tr>
<tr>
<td>1/1/2014</td>
<td>Wednesday</td>
</tr>
<tr>
<td>2/1/2014</td>
<td>Thursday</td>
</tr>
<tr>
<td>3/1/2014</td>
<td>Friday</td>
</tr>
<tr>
<td>4/1/2014</td>
<td>Saturday</td>
</tr>
<tr>
<td>5/1/2014</td>
<td>Sunday</td>
</tr>
</tr>
</table>
</body>
</html>
Sample output:






.jpg)


