Friday, 30 August 2013

WHY  PREVIEW OR β-VERSION OF ANY SOFTWARE?


Often we have a no .of applications in our system with β -version.So, the question is "what is β-version" and "why we have β-version".
Answer is simple and its because of Testing.Shocked !!!
Let me clear it. Actually in software engineering, every time when we develop a new software, we have to test it in terms of verification and validation. We have two type of testing, α-testing and  β-testing. α-testing is done on developer site by a client while β-testing is done on client side by a client.
For better understanding, consider the example of Microsoft Windows. Before launching actual product every time Microsoft releases its preview. Reason is that they can catch the bugs or errors before deploying actual product in market. Hence these people consider β-testing and release β-version products and therefore we often have β-products.
Stay with me for more. Have a nice day.


Sunday, 11 August 2013

Windows 8.1 Preview Download>>

Hello Everyone, Microsoft lunched windows 8.1 Preview nearly one month ago.Its just awesome in both looks and features.For your convenience, i am providing link to download windows 8.1 Preview i.e beta release.
Note before you download: If you don't have recovery media, i recommend that you create a usb recovery drive before you install Windows 8.1 Preview so that you can go back to Windows 8 if you need to.

For Windows 8.1 Preview ISO file click below 

Product key : NTTX3-RV7VB-T7X7F-WQYYY-9Y92F

Upgrade your windows 8 to 8.1

1. Firstly Download Following :
2. Then double click on it and follow the instruction.
3. Restart your PC/Laptop when prompted, and then tap or click the message appears to get the update from the Windows Store.
4. In the Store, follow the instructions to download and complete the installation. 

Thursday, 8 August 2013

HTML 5 and CSS 3.0   Vs   HTML and CSS

Guys,today i am going to tell about the difference between HTML 5 and HTML.Every time when i visit to website like Microsoft , Facebook or even Google i wondered how they did it, how they manage looks of their website page. When i checked their source code i came to know that these people are using latest HTML and CSS techniques. On further investigation i came to know that these are HTML 5 and CSS 3.
                                  These are the latest technology used to create web pages.Looks become awesome when HTML 5 is used with CSS 3. The new creation in html pages are translation, transformation, reflection, and rotation (in 2D and 3D). Not only these but Tiles are one of the most beautiful feature of HTML 5.
So here i am giving link for learning HTML 5 and CSS 3.
Link 1 : HTML 5 with w3schools
Link 2 : CSS 3 with w3school
for pdf links are
Link 1 : Learn HTML 5 from Microsoft Publication   alternative : Microsoft Book
Link 2 : CSS 3 for Web Designer                 alternative: 4shared link

Stay with me for more.Have a nice day.

HTML TUTORIAL 03>>

Hello,welcome back. The already posted two html tutorials provide basis idea for creating html  or we can say they are for jump start to HTML coding. For further study or to master in html follow the below link :
 
Link 2: click on link to download head first with html
              
http://www.4shared.com/office/230BirQq/head_first_html_with_css_xhtml.htm

Stay connected with me for more. Have a nice day :-)

HTML TUTORIAL 02 >>

Here, i am writing some new tag that can be used in html code file to implement new looks.
Tag Name                                                     Meaning                                          closing required
<table>                                     used to create table in html page                                 yes
<form>                                     used to create forms in html page                                yes
<frame>                                    used to divide html page into frames                           yes
<iframe>                                    used to create inline frames in html                             yes
<b>                                                      bold font                                                        yes
<br>                                                     new line                                                         No
<ul>                                           used to create undefined list                                      yes
<dl>                                           used to create undefined list                                      yes
<ol>                                           used to create ordered list                                        yes
<script>                                     used to write script in html page                                yes
<i>                                                         italic font                                                     yes
<cite>                                        used to create citation                                              yes 
<address>                                  used to address in paragraph                                   yes 
<small>                                            small size of letter                                              yes
<a>                                             used to refer another link in html page                     yes 
<h1> to<h6>                              six heading tags are here to write heading                yes
<img>                                        used to embed image into html page                       Inbuilt closing
<link>                                         used to create link in html (for css generally)           No

Note that the above tag(not all tag) can't used individually.Some require other attribute to complete them like <img> require src attribute to complete itself. For example,
<img src="c:\users\dell\well.png" />    this is complete code
Stay connected with me for more. Have a nice day.