Motivational Quotes for Android is here!

0

motiv

Download

Motivational Quotes for Android  NOW!

Over 1000 of the best inspirational and motivational quotes for Android.
Great quotes from leaders, authors,philosophers and people from all walks of life.
Share on Facebook, Twitter or anywhere you like.
Beautifully presented.
Full text search, lets you quickly find the quote you need.
Use these quotes to inspire, motivate and enlighten you.

“Winning is not everything but wanting to win is.” – Vince Lombardi

Authors include:
Shakespeare
Socrates
Plato
Nietzsche
Gandhi
Deepak Chopra
Tony Robbins
Albert Einstein
Aristotle
Ayn Rand
And dozens more..

Download

Motivational Quotes for Android

qrcodemotivational

How to fix ACRA Spreadsheets getting to large in Google Docs and not opening.

2

If you are an Android developer, you might be familiar with the excellent ACRA library which allows you to receive your Apps crash reports into your Google Docs account as a spreadsheet.

The only problem is Google Docs Spreadsheets fail catastrophically once they get to a certain size, you cant open them therefore you cant reduce their size, you cant download or export them. And if you choose to delete them then you will lose the connection between the App and the spreadsheet thus loosing any future crash reports (the spreadsheet and the app are linked by a form key imbedded in the App and unique on Google Docs).

After some Googling and a bit of script programming I have managed to find a fix that will allow you to reduce a spreadsheet without needing to open it!

This is mainly a modification of the Script by user Ronen I found on Accra-Discuss Google Group which works only from within the Spreadsheet which is impossible once you have already run into problems.

DATA LOSS:!! THIS SCRIPT WILL DELETE ROWS FROM THE SPREADSHEET TO HELP GET IT TO A WORKING SIZE.

How to fix:

  1. Go into any working Spreadsheet or create a new one.
  2. Go to Tools –> Script Editor…
  3. Select Blank Project
  4. A new empty Script is created, delete everything, paste in the code bellow. Get the code here: http://pastebin.com/vVasrXy1 , take the RAW one, copying the code bellow leads to errors because of html formatting!! 
  5. Change the SPREADSHEET_KEY value to the value for the spreadsheet you are trying to fix, this can be obtained from the browser URL when trying to open a spreadsheet, or if you share a spreadsheet via a link this key is included in the link.
  6. SHEET_NAME is the name of the actual sheet within the spreadsheet, this is “Sheet1” unless you changed it.
  7. rowsToKeep is the number of Rows that will be left in the spreadsheet after the cleanup is done, in this case 1000.
  8. Save the Script by hitting the save button, Script will be saved to this Spreadsheet, not the broken one.
  9. Click the Play button to Run the Script, it can take a while.\
  10. Go and open the previously broken Spreadsheet, it has been fixed!!

function acraCleanup() {
var SPREADSHEET_KEY = “AABVGGHJGFGDFG4GFD65GHDF56HGFHG53″;

// Replace with your spreadsheet Key,

//you can find this by trying to share the Spread sheet

// and getting the key between the “=” and the “&”
var SHEET_NAME = “Sheet1″; //Sheet1 unless you changed sheet name
var rowsToKeep = 1000; //Will keep bottom 1000 Rows
var sheet  = SpreadsheetApp.openById(SPREADSHEET_KEY).getSheetByName(SHEET_NAME);
var rows = sheet.getLastRow();
var numToDelete = rows – rowsToKeep  -1;
if (numToDelete > 0) sheet.deleteRows(2, numToDelete);
}

Programming for Android, Installing everything you need, NEW Simpler Process

0
ADT Bundle installation and setup

We go through setting up your development environment using the just release ADT Bundle which simplifies the installation process tremendously! And we end by running a simple Hello World App in the emulator.
Links
Java Verifier
http://www.java.com/en/download/installed.jsp
JRE and JDK Download
http://www.oracle.com/technetwork/java/javase/downloads/index.html
ADT Bundle Download
http://developer.android.com/sdk/index.html#download

Elections Map 2012

0

Android App for the 2012 elections

Tanzania Football Scores Android App

0

device-2012-11-03-001758device-2012-11-03-001728device-2012-11-03-001811

Coming soon!

Bongo Cinema Android App

0

popcorn

device-2012-11-02-171803device-2012-11-02-171907device-2012-11-02-171842

Coming to soon to the Vodacom App store and the Android Market.

SQL Server 2012 Trial Checksum x64

2

As of September 2nd 2012

Tip: Use Internet Explorer when downloading SQL Server 2012 Trial and allow the Akamai Download Manager to install, this way you will not get bad downloads and it has resume support.

Link: http://www.microsoft.com/sqlserver

SQLFULL_x64_ENU_Core.box

MD5 Checksum: 45ec814de98df7764c1a421571dac585

SHA1: b06e3ca729d3337d91396cc9a966be04ad83f223

CRC32: 43c2220e

SQLFULL_x64_ENU_Install.exe

MD5 Checksum: 95e26fbfccaaba59d7c30d7ddc73152a

SHA1: 8bab67be8017e9ba8279b726407650468c7b93f8

CRC32: c6a6c7e0

SQLFULL_x64_ENU_Lang.box

MD5 Checksum: 1f3eedbe14b8e683502604ab4d55b6dd

SHA1: b6393abeacb461cd6ef332b842c2b236cef3f988

CRC32: d3569abf

Android Jelly Bean (4.1) aims to kill Notification Ads

0

Annoying pop ups on your Android phone notification area? Jelly Bean to the rescue!

The new version of the Android OS 4.1 codenamed Jelly Bean introduces new features that allow the user more control over what apps can show notifications.

Improvements to the notifications allow the user to quickly find out what App displayed a notification by simply long clicking a notification, this allows the user to either uninstall the App or disable all notifications coming from the App.

Once notifications are disabled for an App that app has no way of knowing that the notifications are disabled, so as far as the App is concerned it is still showing notifications.

notifications

Google I/O 2012, what’s new in Android.

A little background on notification Ads.

Notifications Ads, which periodically pop up a Notification in the users notification bar have been popular with some developers as they provide much better revenue compared to traditional in App banner Ads, however a lot of users seem them as SPAM because they can pop up at anytime even when the not using the App and it is not always easy to identify what App actually produced the Add. These Ads are provided by advertising networks including:

AirPush
Appenda
LeadBolt
Moolah Media
TapIt
Urban Airship
Xtify

As a result a whole bunch of Apps have been produced simply to counter and identify Apps which show Notification Ads these include:

Lookout Ad Network Detector.

AirPush Detector

Addons Detector.

How to convert an Android App into a Blackberry Playbook App for fun and profit! (Video)

0

How to use the Blackberry Plugin for Eclipse to convert your Android Apps to run on the Blackberry Playbook.

This video tutorial will walk you through the steps required to get up and running in converting your Android Apps into Blackberry Playbook Apps and submit them to the Blackberry AppWorld for fun and profit!

Video Tutorial: Convert an Android App to a Blackberry Playbook App

 

Links mentioned in the video.
Tools: https://bdsc.webapps.blackberry.com/android/tool/
Keys: https://bdsc.webapps.blackberry.com/android/signingkey
AppWorld: https://appworld.blackberry.com/isvportal/login_input.do?pageId=0

MW3 Weapons Stats for Android

0

 

Grab it from the Android Market: MW3 Weapons Stats

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

I am exited to announce MW3 Weapon Stats for Android! My latest Android App, if you are a fan of Call of Duty Modern Warfare 3 you should definitely give this App a try, it is free and lets you view the stats for all the weapons in MW3, and even better lets you compare them side by side.

Grab it from the Android Market: MW3 Weapons Stats

Christopher Hitchens Quotes for Android (Hitch)

1

Market Link: http://bit.ly/hitchapp

Christopher Hitchens Quotes

Dedicated to the Great Christopher Hitchens 1949 – 2011.
A collection of quotes from a great man.

hitch3     hitch1

Go to Top