Asus Zenfone 4 A450CG is on Stock Order Now

Monday, August 25, 2014


KEY FEATURES OF ASUS ZENFONE 4 A450CG (CHARCOAL BLACK, WITH 8 GB)
Expandable Storage Capacity of 64 GB
4.5-inch Capacitive Touchscreen
8 MP Pixel Master Camera with Auto Focus
Intel Atom Processor with Hyper-Threading Technology
1 GB RAM
Android v4.3 (Jelly Bean) Upgradeable to v4.4 (KitKat) OS
Powerful Corning Gorilla Glass 3

Read more...

How to configure google prettify.js to blogger

Thursday, August 21, 2014

Adding prettify.js to your blogger is very simple. Go to your blogger.com page then login, Template>Edit HTML>then search for the </head> tag and paste the below code before to it.
<script language="javascript" src="http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.js" type="text/javascript"></script>
<script language="javascript" src="http://google-code-prettify.googlecode.com/svn/trunk/src/lang-css.js" type="text/javascript"></script>
<script type="text/javascript">
function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      if (oldonload) {
        oldonload();
      }
      func();
    }
  }
}
addLoadEvent(function() {
    prettyPrint();
});
</script>

<style type="text/css">
/* Pretty printing styles. Used with prettify.js. */

.str { color: #080; }
.kwd { color: #008; }
.com { color: #800; }
.typ { color: #606; }
.lit { color: #066; }
.pun { color: #660; }
.pln { color: #000; }
.tag { color: #008; }
.atn { color: #606; }
.atv { color: #080; }
.dec { color: #606; }
pre.prettyprint { padding: 2px; border: 1px solid #888; }

@media print {
  .str { color: #060; }
  .kwd { color: #006; font-weight: bold; }
  .com { color: #600; font-style: italic; }
  .typ { color: #404; font-weight: bold; }
  .lit { color: #044; }
  .pun { color: #440; }
  .pln { color: #000; }
  .tag { color: #006; font-weight: bold; }
  .atn { color: #404; }
  .atv { color: #060; }
}
</style>
Done..1st part is completed. Then while you post html or java or some code snippet in your blogger you should use the code tag to insert java or c or html code inside these tags.. Copy the below code snippet and paste it in your blog posts.Before putting your java code you can parse it and paste the java code into the pre tags. Parse your java code here: http://www.blogcrowds.com/resources/parse_html.php
<pre class="prettyprint">
your code here......
</pre>
Check your updated post with the code and change the css styles as you need. Below is the test code to run the prettify.jsp
import java.util.HashSet;
class ConvertHashSettoArray{ 
  public static void main(String[] args) {
     // Create a HashSet
     HashSet hset = new HashSet();
 
     //add elements to HashSet
     hset.add("Element1");
     hset.add("Element2");
     hset.add("Element3");
     hset.add("Element4");
 
     // Displaying HashSet elements
     System.out.println("HashSet contains: "+ hset);
 
     // Creating an Array
     String[] array = new String[hset.size()];
     hset.toArray(array);
 
     // Displaying Array elements
     System.out.println("Array elements: ");
     for(String temp : array){
        System.out.println(temp);
     }
  }
}

Read more...

Asus ZenPhone 5 Available on Flipkart

Monday, August 18, 2014

Asus ZenFone 5 now via Flipkart. It was announced by Asus that it will put 10,000 units of this smartphone on sale for an exclusive sale on Flipkart Go and Check it now...
<a href="http://www.flipkart.com/asus-zenfone-5-a501cg/p/itmdxza4ystyqnrf?pid=MOBDXZ9WZZGHFMTG&affid=muralidhar">Buy Asus Zenfone 5 A501CG from Flipkart.com</a>

<a href="http://www.flipkart.com/asus-zenfone-5-a501cg/p/itmdxza4ystyqnrf?pid=MOBDXZ9WZZGHFMTG&affid=TrackingID">Buy Asus Zenfone 5 A501CG from Flipkart.com</a>

The ZenFone 5 is available in both 8GB and 16GB versions. Currently some colour variants like Gold and Red have already gone 'out of stock' on Flipkart and users are asked to register their email ids to inform about the next availability of the same. The 8GB version costs Rs 10,000 while the 16GB phone costs Rs 12,999. As Asus launched a series of other Zenfone models like Zenfone 4, 4.5 and 6, last month the company claimed to have sold 40,000 Zenfone units in just four days in India.

The dual-SIM facilitated Zenfone 5 sits between high-end Zenfone 6 and low-end Zenfone 4 and it sports a 12.7-cm (5-inch) screen. It also features 1280 x 720 pixel IPS display, 8MP rear camera, 2MP front camera for selfies and video calls, 2GHz Intel Atom dual-core processor and expandable memory up to 64GB via microSD card. 

Read more...

  © MyClipta Reserved by myclipta.blogspot.com 2009

Back to TOP