Archive for December 2013
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:
WORKSHOP ON ETHICAL HACKING AND CYBER FORENSICS
.................... LeArN To HaCk...!!! HaCk To LeArN...!!!.................
LEVEL-1 JAN 5TH 2K14 @ CHENNAI Register At : http://securityghost.com/workshop/
Speaker N. Srinivas (Sen Haxor)
Chief Guest: Striker India (Striker Ica Indishell)
Join us n learn hacking from REAL-TIME Hackers.....
FOR ANY DOUBT ABOUT UR SPEAKER JUST GOOGLE HIS NAME...!!!!!
For more Details: Ring Us @ +91-8939024436 / 9043438085 / 8148427601
Ping us @ registerforhacking@gmail.com
Join Us @ https://www.facebook.com/groups/LearnToHackHackToLearn/?fref=ts
Join Event @ https://www.facebook.com/events/606103806094579/?fref=ts
TOPICS: ·
- INTRODUCTION. ·
- PC HACKING AND SECURITY. ·
- GMAIL HACKING AND SECURITY. ·
- FACEBOOK HACKING AND SECURITY. ·
- WEBSITE HACKING AND SECURITY . ·
- WIRELESS NETWORK HACKING(WIFI PASSWORDS) AND SECURITY. ·
- SQL-INJECTION. CRYPTOGRAPHY. ·
- D-DOS ATTACKS. ·
- IP SPOOFING. ·
- KEY LOGGERS AND SECURITY. ·
- OS HACKING AND SECURITY. ·
- BACKTRACK . ·
- METASPLOIT. ·
- REVERSE ENGINEERING. ·
- NON TECHNICAL ATTACKS. ·
- GOOGLE DORKING. ·
- ONLINE FRAUD. ·
- COUNTER MEASURES AND CASE STUDIES.
- DATABASE DUMPING AN SECURITY MANY MORE SURPRISE TOPICS ...!!!
DONT MISS IT..!!!
Why the Size of an Hard disk ,pendrive or any Storage Devices is lesser than specified Capacity range !!
Why the Size of an Hard disk ,pendrive or any Storage Devices is lesser than specified Capacity range !!
An 250GB hard disk can have only less than 233 GB space!
- All Hard Disk manufacturer way of counting space is different from the way a software count a space.
- This means to a Hard Disk Manufacturer, 1GB is 1000 MB, 1 MB is 1000 KB and so on.
- Software or computer language recognize a space in terms of power of 2 say 21, 22,23 etc. hence a KB is 210 Bytes which is 1024 Bytes.
Lets do a little math:From a Manufacturer a 250 GB harddisk is 250 x 1000 x 1000 x 1000 =250000000000 Bytes From the Computer Language point of view a 250000000000 Bytes is:250000000000/(1024*1024*1024)=232.83 GB
Now you’ll see why your 250GB harddisk has only less than 232.83 GBspace in total. Well if you go with higher space like 500 GB and so on the space missing is increasing!!
Best Programming Youtube Channels For Beginners
Some of the best available YouTube channels for learning C,C++,Java, Data Structures and Algorithms.
1. Advanced C++ concepts and Standard template library - BoQian
Mostly His implemetations would be bases on the STL. So, we could implement most of our algorithms using the standard libraries present in C++.
2. Algorithms, DataStuctures and more interview Questions - Saurabh School
Saurabh School of Computing is an initiative by IITian S.Saurabh. He is B.Tech from IIT and MS from USA. This channel provides quality and easy to understand video lessons to help people prepare for programming interviews .
3. Fundamental Concepts of OOPs, Java, Socket and Android Programming - Prof. Vinod Pillai
His teachings Of OOPs are very clear with very simple examples that even an amateur programmer could understand.
4. Programming Paradigms - Prof. Jerry Cain
Professor from the stanford university tells us how a program works internally. Basics that every programmer needs to know to program efficiently.
5. My Code School
Simplicity at its best. Learn all the mathematical logics, algorithms and DataStructures and many more at code School
HTML
Coding can be made effective with HTML, but designing with HTML is little difficult,since you will have to design only with your code.Alternative way of designing is to go with "CSS".(i.e) Cascading style sheet.
Using this we can design a web page more effective and attractive than the one made with HTML.
In this session,we can see about the basic inline and embedded styles and formatting with CSS.
Inline styles:
Using style sheet, we can code or design as follows:
<style>
h1{color:green}
</style>
To make a inline style,provide the attributes in a single tag.
<H1 style=textsize:14>
The above formatting is called inline style.An embedded style can be made by typing some property and values inside the heading tags
Sample code for embedded style:
<style>
H1
{
fontcolor:blue;
}
</style>
Fonts:
In HTML, we can specify a font type and size as follows:
<font face="arial,times new roman">ABC</font>
The same can be done with CSS as follows:
Font face:arial,Timesnew roman;
Sample web page using above concepts:
<html>
<head>
<title>New webpage</title>
<style>
H1
{
fontsize:14;
fontytype:arial,time new roman;
}
</style>
<body>
<font color="blue">The text is in blue</font>
</body>
</html>
Using this we can design a web page more effective and attractive than the one made with HTML.
In this session,we can see about the basic inline and embedded styles and formatting with CSS.
Inline styles:
Using style sheet, we can code or design as follows:
<style>
h1{color:green}
</style>
To make a inline style,provide the attributes in a single tag.
<H1 style=textsize:14>
The above formatting is called inline style.An embedded style can be made by typing some property and values inside the heading tags
Sample code for embedded style:
<style>
H1
{
fontcolor:blue;
}
</style>
Fonts:
In HTML, we can specify a font type and size as follows:
<font face="arial,times new roman">ABC</font>
The same can be done with CSS as follows:
Font face:arial,Timesnew roman;
Sample web page using above concepts:
<html>
<head>
<title>New webpage</title>
<style>
H1
{
fontsize:14;
fontytype:arial,time new roman;
}
</style>
<body>
<font color="blue">The text is in blue</font>
</body>
</html>
Facebook's Sympathy Button
Facebook now seems to be planning on adding a sympathy button in addition to its like button.Their primary aim to provide the users to express their emotions on a particular post of their friend.
There will be no captions on that button, but it is primarily based on the traditional 'mood' drop down lists that is in use now. It is likely to be updated by next year beginning.
HTML Tutorial 1
INTRODUCTION TO BASIC HTML
Welcome to Chapter 1 : intro to HTML
Part 1- HTML Structure Presentation
Part 2- Layout of an HTML file
Part 3- Working with Tables & List
Part 4- HTML Forms & Input
Part 5- Styling & Inline CSS
Part 1- Introduction to HTML
What is HTML?
Where to type these HTML Codings??
Normally we can use any text editor to Execute the HTML tags and to Create the pages .. i prefer to use the Notepad ++ .
Click Here to Download Text Editor Software
HTML Uses Tag Elements :
Content is wrapped in an open and closing tag ,
HTML Document Layout
Block Elements
Block Level Elements:
Creates a large block of content
new lines before and after element
Consumes the whole width available
Examples
Inline Elements
Inline Level Elements :
Examples
Element Attributes
Example :
"href" is the name of the attribute of the anchor <a> (link) tag
"http://vidyarthiplus.com/vp" is the value of the "href" attribute of the <a> (link) tag
other common attributes :
Style - styling can be done via "style" attribute
Id & class - specifies identification to an element
title- adds extra info about the element. Also Displayed in a toottip in some browser
Sample Output :
Welcome to Chapter 1 : intro to HTML
Part 1- HTML Structure Presentation
Part 2- Layout of an HTML file
Part 3- Working with Tables & List
Part 4- HTML Forms & Input
Part 5- Styling & Inline CSS
Part 1- Introduction to HTML
What is HTML?
- HTML is a Hypertext Markup Language
- HTML is not a Programming language
- Language of the Browser
- The World Wide Web Consortium Creates the Standards of HTML
- CSS is used to style HTML pages
Where to type these HTML Codings??
Normally we can use any text editor to Execute the HTML tags and to Create the pages .. i prefer to use the Notepad ++ .
Click Here to Download Text Editor Software
HTML Uses Tag Elements :
Code:
<p>this is a Paragraph</p> - paragraph
<h1>this is a heading</h1> - heading
<i></i> - Italic
<b></b> - Bold
Content is wrapped in an open and closing tag ,
Code:
<p>this is a Paragraph</p>
<h1>this is a heading</h1>
HTML Document Layout
Code:
<!DOCTYPE html>
<html> //open tag of HTML
<head> //open tag of Head
<title>Page Title</title> //open and close tag of title
</head> //close tag of Head
<body> //open tag of body
<p>Hi Welcome to vidyarthiplus !! </p> //open and close tag of Paragraph
</body> //close tag of Body
</html> //close tag of HTML
Block Elements
Block Level Elements:
Creates a large block of content
new lines before and after element
Consumes the whole width available
Examples
Code:
<h1> - <h6> Headings , ( h1 with Maximum font size and so on)
<form> - forms
<div> - div tags
Inline Elements
Inline Level Elements :
- No new Lines
- Can be placed aside other elements
- Cannot define width
Examples
Code:
<a> - links (known as anchor tag)
<strong> & <b> - both indicates the Size of the font
<input/>- input
<span> - Span tags
Element Attributes
- Most of the attributes are Name-Value pairs Separated with an "="
- Attributes provide additional information about an element
- Attributes are always specified in the Start tag
Example :
"href" is the name of the attribute of the anchor <a> (link) tag
Code:
<a href="www.vidyarthiplus.com/vp">Vidyarthiplus</a>
"http://vidyarthiplus.com/vp" is the value of the "href" attribute of the <a> (link) tag
other common attributes :
Style - styling can be done via "style" attribute
Code:
<h1 style="color:red"> This Heading will be red</h1>
Id & class - specifies identification to an element
Code:
<p id="mypara">This paragraph has an ID</p>
title- adds extra info about the element. Also Displayed in a toottip in some browser
Code:
<a href="www.vidyarthiplus.com/vp" title="click here to go V+">
This paragraph has an id</a>
Sample Output :
Email Address shorten
Email Address shorten
Now u can shorten your email id's!!!
How u can do it ???
We has three websites to convert ur mail id into smaller one ..
How to Convert it ?
Just enter your Email ID and then Submit , after that a shorten mail ID will Generates ..
These Websites Will Map your Generated Mail ID's into Original Mail ID's..
What They Provides ?
They provides Security and Spam Free !!
Biggest Web Designing Contest
Biggest Web Designing Contest By BIG ROCK
Participate and win an Amazing Apple iMac and more prizes!!
DataWind announced three new dual-SIM 5-inch smartphones!!
DataWind announced three new dual-SIM 5-inch smartphones!!
Specs of the Three Smart phones :
Devworkx Techie Contest !!
Answer 5 Simple question and get exciting prizes
Note : Contests open for residents of India only.
invite your Friends to your page or event in a second
Instructions:
1. Click Invite Friends on whatever you are inviting people to
2. In the dropdown next to the search box, click Search All Friends
3. Scroll ALL the way down until names stop loading (I found it easy to click the first name and then hold down the spacebar or Page Down button)
4. For EVENTS Copy this code:
javascript:elms=document.getElementsByName("checkableitems[]");for (i=0;i<elms.length;i++){if (elms[i].type="checkbox" )elms[i].click()}
For PAGES Copy this code:
javascript:var inputs = document.getElementsByClassName('uiButton _1sm');
for(var i=0; i<inputs.length;i++) {
inputs[i].click();
}
For Chrome :
For Firefox:
5. Press (CTRL+Shift+K) for WINDOWS or (Command+Option+K) for MAC on your keyboard
6. Paste the code into the box at the bottom and press enter (next to the blue ">>").
7. For large friends list, this may utilize all your resources and will cause the page to freeze and be unresponsive. Just wait a few minutes until all the names get selected.
For Safari:
5. Go to Preferences - Advanced - check "Show Develop menu in menu bar" and close the preferences window.
6. Go to Develop - Show Error Console (or Command + Option + C)
5. Paste the code into the box at the bottom and press enter (next to the blue ">").
For Internet Explorer:
5. Press F12 on your keyboard
6. Click the "Console" tab
7. Paste the code into the box at the bottom and press enter.
8. For large friends list, this may utilize all your resources and will cause the page to freeze and be unresponsive. Just wait a few minutes until all the names get selected.
Note : Just a warning: If you do this too often, Facebook WILL temporarily ban you from sending invites.
Grand Theft Auto San Andreas now available on iOS devices.
Grand Theft Auto San Andreas now available on iOS devices.
Coming soon on Android, Windows Phone and Amazon Kindle platforms
New AngryBirds Go !!!!
New AngryBirds Go !!!!
Available only for iPhone,iPad,Android and Windows Phone 8.
Download Here :
Convert your iOS device to a Google device.
6 Google apps that will replace your default iOS apps
- Mail -> Gmail
- Safari -> Chrome
- iWork + iCloud -> QuickOffice + Drive Apple
- Maps -> Google Maps
- SIRI -> Google Search (Voice)
- Facetime -> Hangouts