Tuesday, August 5, 2014

HTC Desire 816 (Dual Sim) Got Software Update to 1:50:720:3

HTC released the latest software upgrades for HTC Desire 816.



Current HTC Desire 816(dual sim) Status

Android Version :        4.2.2
HTC Sense Version:   6.0
Software Version:       1:25:720:1
HTC SDK API level : 6.21.


Updated HTC Desire 816(dual sim) Status

Android Version :        4.2.2(No firmware upgrade)
HTC Sense Version:   6.0
Software Version:       1:50:720:3
HTC SDK API level : 6.21.

To get this update check your Software updates in your HTC Desire 816 (dual sim).
Battery status should be more than 80%.
Download Size: 200-230 MB. (Using WIFI is better to download) .
Takes 2-3 Minutes for  installing.(Be patient).

Cheers!!

Software Upgrades includes bug fixing and some other updates.




Monday, July 22, 2013

SVG - Scalable Vector Graphics



Scalable Vector Graphics (SVG) is an XML-based vector image format  for two-dimensional graphics that has support for interactivity and animation.

Advantages:
  • Small file sizes that compress well.
  • Scales to any size without losing clarity.
  • Looks great on retina displays.
  • Design control like interactivity and filters.
Disadvantages:
  • Longer application loading (svg is converted into png) - especially with detailed graphic.
  • Relative Big svg file size (for more advanced graphics, many details, ex. shadows etc).
  • Can't able to use every possible vector graphic features.
  • Not yet widely supported.
Browsers Supported: Mozilla Firefox, Internet Explorer 9 and 10, Google Chrome, Opera, and Safari .
Inkscape is best editor for SVG images.  
Download: https://skydrive.live.com/?cid=09706d11303fa52a&id=9706D11303FA52A!217

Friday, August 24, 2012

DIFFERENCE BETWEEN HTML AND XHTML

HTML is application of SGML(Standard Generalized  Markup Language).
XHTML is application of XML(eXtensible Markup Language).
HMTL is design to display the data and XHTML is used to design the data.
HTML Requirement : text/html
XHTML Requirement:application/xml

XHTML is derived from html and similar to html , strict rules must be followed in XHTML like closing tags,case sensitive(lowercase),must have proper tags and nesting must be properly closed.

Main differences is
  • Case Sensitive
  • Optional tags
  • Properties of Root Element

Monday, January 2, 2012

CILENT-SERVER SIDE SCRIPTING LANGUAGES

CILENT SIDE SCRIPTING LANGUAGES(EMBEDDED SCRIPT):
  • HTML(HYPERTEXT MARKUP LANGUAGE)
  • CSS(CASCADING SYTLE SHEET)
  • DHTML(DYNAMIC HYPERTEXT MARKUP LANGUAGE)
  • JAVA SCRIPT

SERVER SIDE SCRIP ING LANGUAGES:

  • ASP (ACTIVE SERVER PAGE)
  • PHP
  • JAVA
  • SERVERSIDE SCRIPTING
  • PERL
  • JSP(JAVA SERVER PAGES)
  • RUBY 
  • PHYTHON
  • SML(SERVER MACRO LANGUAGE)
  • LASSO
  • COLD FUSION MARKUP LANGUAGES
  • WEB DNA
  • LUA(LIGHT WEIGHT MULTIPROGRAMMING LANGUAGES)


Sunday, February 13, 2011

Input/Output Function

Input/Output Function

stdin
stdin
stdout
stderr
The input/output function are stream of characters,then character based input and output fucntion
getc()
putc()
getchar()
putchar()

this are all character based input and output functions, that is u need to some of the texts("strings") means u need to hatch these functions.


This is the program for accept/ display the characters

#include<stdio.h>
main()
{
char alph;
alph=getc(stdin);
fflush(stdin);
putc(alph,stdout);
}
this session to be continued..

Saturday, February 12, 2011

Let We C Session-3 [Structures]

Structures:

Function: 

  • Single level function
  • Multilevel Function
Single level function:

Sample program

main()       \*program start execution right over here,that is the compiler start run from here*\

{               \*start of the program*\

printf("hello"); \*to display the message*\

}                \*end of the program*\

this are all above are preceding functions.
; =>> implies that end of execution statement.
 

Multilevel Function:

Sample Program;

main()
{
printf("hello");
disp_msg();
printf("Welcome to World");
 }
disp_msg();
{
prinf("MR.XXX");
}

disp_msg(); =>> Programmer-defined function that can be independently called by other function
( )                =>>This is implies that passing values to the function,whether any receiving function is excepting any parameter.

Next session is Input/Output functions....

Friday, February 11, 2011

Let We C Session-2 [Types of Data Structures]

Types of Data Structures:
  • Fundamental Data types.
  • Derived Data types.
Fundamental Data types:                            
  •   Data types at a lowest level.
  •   Base for Other data types.
  •   Machine depend storage requirement. 
char                    deaf

int                       22223


Float                   324.242

Derived Data types:
  
Little same as function data type.

Declaration done at beginning.
  •   short int 
  •   long int  
  •   double int   
  •   define data                                                                                                                

 short => data type

 long => variables


Strings:


Syntax
 
char(variable) [(number of bytes)];

Example:
char string  10;       




Next Session is Structures.........