by nolovelust
17. December 2011 00:03
User interface is rubbish :) My head hurts at the moment! It is not natural and I don't like it. I'll probably get used to it but shouldn't first impressions be better
98f69c74-a5e0-42d5-b3b4-a82ffbbac14c|0|.0
Tags:
by nolovelust
16. December 2011 23:01
0c29b4e2-e1d1-4ae3-ab7c-b840a6d600a0|0|.0
Tags:
by nolovelust
24. September 2011 18:15
Somebody built VLC for Android pre-alpha from VLC's GIT repository.
I have tested it on Nexus S and although it is pre-alpha, it works very nicely.
You can download it from http://cvpcs.org/blog/2011-09-18/videolan_for_android_pre-alpha
There are 2 versions of the VLC pre-alpha build, try NEON version first

by nolovelust
3. September 2011 12:35
Today, I've received below email. Although they've closed my account they thought I would be interested with whats going on!!!
It looks like Google shifting all the mobile web ads from Admob to Adsense. It was clear that they wanted to use Admob for in app advertising and below email confirms this.
Not sure how long this will last but Google have a long habit of closing down startups it bought.
Dear AdMob Mobile Web Publisher:
Following the acquisition of AdMob by Google,
we have continued to operate parallel products for mobile web publishers on both the AdSense and AdMob platforms.
To ensure we offer a single best solution for mobile web publishers, we will be focusing our efforts on the AdSense platform going forward.
On September 30, 2011, we are beginning this transition to the AdSense platform and will discontinue support for WAP mobile web on the AdMob network.
All publishers who are currently using AdMob's WAP mobile web solution are asked to register for an AdSense account and begin using the Google AdSense for mobile content.
This change enables Google to offer our mobile web publishers an industry leading content monetization solution with access to advertisers interested in reaching your mobile audience.
We encourage you to use Google AdSense to
monetize your mobile webpages going forward. Google AdSense for mobile provides you many of the same features with more flexible reporting tools.
Implementing Google AdSense now will allow you to continue monetizing your mobile content after September 30 without disruption.
To get started using Google AdSense for mobile, visit google.com/adsense and log in with a Google Account.
If you don’t have a Google Account, you can create an account for free at https://www.google.com/accounts/NewAccount.
Once you have been approved as an AdSense publisher, simply log in to your account to create a new mobile ad unit and generate ad code for your site. If you are already an existing AdSense publisher, you can create a new mobile ad unit to start monetizing your mobile site right away.
For questions about this transition, please visit http://helpcenter.admob.com/content/admob-mobile-web-sunset.
For additional support on Google AdSense, visit the Help Center at http://www.google.com/support/adsense/.
Sincerely,
The Google AdMob Team
by nolovelust
21. July 2011 15:26
There is a nice jQuery plugin called TouchWipe to obtain touch gestures from iPhone, iPod Touch and iPad and Android phones. Simple example below shows how to trigger an ajax load with left or right swipe on certain element
<!DOCTYPE html>
<html>
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script src="http://www.netcu.de/templates/netcu/js/jquery.touchwipe.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#list").touchwipe({
wipeLeft: function () { loadData(); },
wipeRight: function () { loadData(); },
preventDefaultEvents: true
});
});
function loadData() {
$.ajax({
type: "GET",
url: "AjaxLoad.htm",
dataType: "html",
success: function (result) { $('#listul').html(result); },
error: function (err) { }
});
}
</script>
</head>
<body>
<div id="list" class="list" title="Swipe your finger left or right on the thumbnails below to load next set video set.">
<ul id="listul"></ul>
</div>
</body>
</html>