Writing your first hello world code in AMP!
seen from Algeria

seen from T1
seen from Australia

seen from Russia

seen from T1

seen from T1

seen from Singapore

seen from Japan
seen from United States

seen from Singapore

seen from Uruguay
seen from Finland
seen from Russia
seen from Japan

seen from Finland

seen from T1
seen from United States

seen from United Kingdom

seen from United Kingdom
seen from T1
Writing your first hello world code in AMP!
You must always load Twitter media buttons on your website asynchronously. If you don't , then it will slow down loading of some important sections of your website. Note : The code that Twitter provides uses browser-native asynchronous mechanism to load the buttons. But you may use js.async = true; just after like js.src = p + '://platform.twitter.com/widgets.js'; to explicitly load it asynchronously.
<a href="https://twitter.com/share"
class="twitter-share-button"
data-url="http://code2care.org"
data-via="code2care"
data-size="large"
data-related="code2care"
data-hashtags="code2care">
Tweet
</a>
<script>
! function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0],
p = /^http:/.test(d.location) ? 'http' : 'https';
if (!d.getElementById(id)) {
js = d.createElement(s);
js.id = id;
js.src = p + '://platform.twitter.com/widgets.js';
js.async = true;
fjs.parentNode.insertBefore(js, fjs);
}
}(document, 'script', 'twitter-wjs');
</script>
INSTALL_FAILED_INSUFFICIENT_STORAGE Error Android Emulator
INSTALL_FAILED_INSUFFICIENT_STORAGE is a most common error that a Android Developer faces while trying to run a application on the Emulator. To fix this issue : 1. Right Click on your Android Project Folder, goto Run As -> Run Configurations
Select your Application at the left section Move to Target Tab In Additional Emulator Command Line Options add : -partition-size 2048
Apply the Changes are run the Emulator.
Does your Organization have a single Domain and still requires users to pass-in the Domain name in the credentials to login ? Well, there is a way to bypass it.
http://code2care.org/pages/bypass-domain-name-for-iis-site
Here is a tutorial on how to share contents on facebook wall from your app through native Facebook application integration (facebook SDK ver. 3.5.2), the tutorial covers solutions to most of the issues that one may get stuck
http://code2care.org/pages/integrating-facebook-sdk-version-3.5.2-with-android-app-tutorial
http://code2care.org/pages/sorry,-no-data-for-this-metric-android-statistics
Here is how we can get the value from a table element like td, th or tr having id or name attribute.
http://code2care.org/pages/how-to-get-table-td,-tr-or-th-inner-content-value-with-id-or-name-attribute
Here is how to fix the overlapping of facebook like box over a div element on a web page. The issue is faced while scrolling, the facebook box overlaps the fixed div.