Tuesday, September 25, 2012

PageSpeed Insights, Make your web site faster

PageSpeed Insights analyzes the content of a web page, then generates suggestions to make that page faster. Reducing page load times can reduce bounce rates and increase conversion rates.

PageSpeed Insights


Visit: https://developers.google.com/speed/pagespeed/insights


Monday, September 24, 2012

Free online eBook: Kindle Fire Development Essentials



Techotopia provide a online ebook, Kindle Fire Development Essentials, for FREE.

The Kindle Fire is the latest addition to Amazon.com’s Kindle family of devices. Unlike previous Kindle models, however, the Kindle Fire is the first device from Amazon to move beyond ebook reading and provide a full tablet experience with a multitouch color screen and the ability to watch movies, read books and magazines, play music and install applications from the Amazon App Store. This book will cover the development of applications for the Kindle Fire.


Table of Contents
  • An Overview and History of the Kindle Fire
  • Setting Up a Kindle Fire Android Development Environment
  • Creating a Kindle Fire Android Virtual Device (AVD)
  • Creating an Example Kindle Fire Android Application
  • Testing Android Applications on a Physical Kindle Fire Device
  • An Overview of the Kindle Fire Android Architecture
  • The Anatomy of an Android Application
  • Understanding Android Application and Activity Lifecycles
  • Handling Android Activity State Changes
  • Android Activity State Changes – An Example Application
  • Saving and Restoring the User Interface State of an Android Activity
  • Understanding Android Views, View Groups and Layouts
  • Designing an Android User Interface using the Graphical Layout Tool
  • Creating an Android User Interface in Java Code
  • An Overview and Example of Android Event Handling
  • Android Touch and Multi-touch Event Handling
  • Android Gesture and Pinch Recognition on the Kindle Fire
  • An Overview of Android Intents
  • Android Explicit Intents – A Worked Example
  • Android Implicit Intents – A Worked Example
  • Android Broadcast Intents and Broadcast Receivers
  • A Basic Overview of Android Threads and Thread handlers
  • An Overview of Android Started and Bound Services
  • Implementing an Android Started Service – A Worked Example
  • Android Local Bound Services – A Worked Example
  • Android Remote Bound Services – A Worked Example

Read Kindle Fire Development Essentials online.

Friday, September 21, 2012

Code Converter, to Convert VB to C# or C# to VB

Code Converter is a free and simple VB to C# and C# to VB code converter, aims to provide the best free .NET converter available on the web.

Code Converter, to Convert VB to C# or C# to VB


Maps on the iPhone 5



iPhone 5 Teardown



Set text shadow using CSS

Set text shadow using CSS


<!DOCTYPE html>
<html>
<head>
<style type="text/css">

h1 {
 font-size:250%; 
 color:#ff0000; 
 text-shadow: #000000 5px 5px 5px;}

h2 {
 font-size:200%; 
 color:green; 
 text-shadow: red 2px 2px 1px;}

p {
 font-size:100%; 
 color:rgb(0,0,255); 
 text-shadow: rgb(50,50,50) 2px 2px 5px;}
 
</style>
</head>

<body>
<h1>Mobile-Web-App</h1>
<h2>Example CSS Text</h2>
<p>http://mobile-web-app.blogspot.com/</p>
</body>

</html>


Set text color using CSS

Set text color using CSS


<!DOCTYPE html>
<html>
<head>
<style type="text/css">
h1 {font-size:250%; color:#ff0000;}
h2 {font-size:200%; color:green;}
p {font-size:100%; color:rgb(0,0,255);}
</style>
</head>

<body>
<h1>Mobile-Web-App</h1>
<h2>Example CSS Text</h2>
<p>http://mobile-web-app.blogspot.com/</p>
</body>

</html>