BlueGreenWeb.com Featured
.Android, Featured »
One of the issues you may have when installing an application, created, and signed, using Eclipse:
Parse Error
Problem Parsing Package
Things to check:
Are you using a compatible Android device?
You will have problems putting an app made with Android 4.0 on an Android 2.3.5 device.
Check the AndroidManifest.xml for theĀ miniSdkVersion!
Lower it to “3″ and try recreating the apk
<uses-sdk android:minSdkVersion=”3″ />
If these things are not the issue, try installing the apk on a different device – rule out the problem either being the device or the apk you are creating.
Articles, Featured »
In the lesson for Basic Functions: Javascript Quick Start: Start Guide, part 4, Return Values:
The presented problem:
// If value is falsy…
The instructions give a hint on what to add, or rather what NOT to add:
You do not need to have Return ‘undefined’; as part of the IF statement.
so,
if (is falsy and not a string){} // put NOTHING in the {}
else
return ‘good input!’;
http://www.codecademy.com/courses/javascript-intro/4#!/exercises/3
function detectGoodInput
Featured, Web News »
This event was announced at the Tampa IT Camp Saturday March 19, 2011.
Over 200 people attended this meeting held at KForce in Tampa Florida
Read more about this event on Twitter:
http://twitter.com/#!/search?q=%23spstampa
Read about the event on the official page:
http://www.sharepointsaturday.org/tampa
Books, Featured »
Learn how to master Microsoft’s SharePoint 2010 with this book by Stephen Cawood.
This guide covers everything from setting up a SharePoint site to using SharePoint with other applications such as Outlook and InfoPath.
The key focus is learning the document management functions.
About the Author of this SharePoint 2010 Book:
Stephen Cawood is a former Microsoft SharePoint Program Manager who wrote specifications for SharePoint. He is currently the Director of Community and Support Services at Metalogix Software. Stephen blogs about SharePoint at http://geeklit.blogspot.com/.
Articles, Featured »
On the User Profile Edit page there are fields which you may want to rename instead of removing:
AIM
Yahoo
Jabber
All three of those fields are outdated. You could remove the fields, and add new fields such as Twitter and Facebook, or you can just rename the visible words on the page without adding new custom fields.
To rename the words a user will see when editing their profile you need to create a function which you will add to your WordPress theme’s function file. Most all WordPress themes will have this as functions.php …
Articles, Featured »
The upgrade to WordPress 3.0 will cause the Profiler plug-in to no longer show newly added authors.
This is due to the new WordPress changing the wp_capabilities in the wp_usermeta field
Format for the previous versions of wordpress: a:1:{s:10:”subscriber”;b:1;}
Format for the new 3.0 version of wordpress: a:1:{s:10:”subscriber”;s:1:”1″;}
The $rolelist array searches for the previous version data for wp_usermeta.
The short solution is to add the new wp_usermeta format in the => none (see below)
Edit plugin: profiler/profiler.php
find $rolelist = … and replace with the code below
$roleslist = array(‘\’a:1:{s:13:\”administrator\”;b:1;}\”=>$administrator,
‘\’a:1:{s:10:\”subscriber\”;b:1;}\”=>$subscriber,
‘\’a:1:{s:6:\”author\”;b:1;}\”=>$author,
‘\’a:1:{s:6:\”editor\”;b:1;}\”=>$editor,
‘\’a:1:{s:11:\”contributor\”;b:1;}\”=>$contributor,
‘\’a:1:{s:10:\”subscriber\”;s:1:\”1\”;}\”=>$none);
The last element in the array is …

