MOBILE ICONS

Added on 2012-02-26 Under:

Glyphish
Pro Icons: 400 Icons @ $25; Free Icons: 200 Icons w/ CC Attribution License

Android Icons
Pro Icons: 125 Icons @ $45; Free Icons: 50 Icons w/ CC Attribution License

TWG iPhone Toolbar Icons
160 Icons w/ CC Attribution-ShareAlike License

Gesture Cons
$100-$130; Free w/ CC Attribution-Non-Commerical License

Pixel Press iPhone Toolbar Icons
Free w/ CC Attribution License

tutorial9 Mono Icons
108 Icons Free w/ no licensing requirements

JQUERY MOBILE PAGE EVENTS

Added on 2012-02-25 Under:
$('div[data-role="page"]').live('pagebeforeload', function (ev) {
    console.log('pagebeforeload');
});
$('div[data-role="page"]').live('pageload', function (ev) {
    console.log('pageload');
});
$('div[data-role="page"]').live('pageloadfailed', function (ev) {
    console.log('pageloadfailed');
});
$('div[data-role="page"]').live('pagebeforechange', function (ev) {
    console.log('pagebeforechange');
});
$('div[data-role="page"]').live('pagechange', function (ev) {
    console.log('pagechange');
});
$('div[data-role="page"]').live('pagechangefailed', function (ev) {
    console.log('pagechangefailed');
});
$('div[data-role="page"]').live('pagebeforeshow', function (ev) {
    console.log('pagebeforeshow');
});
$('div[data-role="page"]').live('pagebeforehide', function (ev) {
    console.log('pagebeforehide');
});
$('div[data-role="page"]').live('pageshow', function (ev) {
    console.log('pageshow');
});
$('div[data-role="page"]').live('pagehide', function (ev) {
    console.log('pagehide');
});
$('div[data-role="page"]').live('pagebeforecreate', function (ev) {
    console.log('pagebeforecreate');
});
$('div[data-role="page"]').live('pagecreate', function (ev) {
    console.log('pagecreate');
});
$('div[data-role="page"]').live('pageinit', function (ev) {
    console.log('pageinit');
});
$('div[data-role="page"]').live('pageremove', function (ev) {
    console.log('pageremove');
});

KENDO UI MOBILE ICONS

Added on 2012-02-18 Under:

I started messing around with Kendo UI Mobile for creating a mobile app and couldn't find any visuals of the available Kendo UI Mobile Icons (I didn't search too hard). I created my own Kendo UI Mobile app that shows the icon next to its name.

You can access it here: http://snippets.bstruthers.com/kendo-ui/icons.html

UNICORNED?

Added on 2010-02-16 Under:

I just stumbled on this post from meta stackoverflow. http://meta.stackoverflow.com/questions/37328/my-godits-full-of-unicorns

wow...

Here's my gravitar unicornified.

Me Unicorned

TRUST NOT GRANTED WHEN RUNNING WPF IN IE

Added on 2009-12-22 Under:

At work, we were getting a few users who were unable to run our deployed WPF application. When running under https, a Windows Presentation Foundation Host error would occur with the following message:

Trust Not Granted
The application cannot be deployed because it is not trusted and possibly unsafe.

Recorded in the Error Log were the following messages:

System.Deployment.Application.TrustNotGrantedException (Unknown subtype)

and

User has refused to grant required permissions to the application.

A blog entry on MSDN suggested modifying the CASPOL. After modifying the CASPOL by giving the site FullTrust, the WPF would run in the browser, but it still wasn't working 100%. Our application makes several web service calls, and the application was erroring when making those calls.

Running ProcMon and filtering for ACCESS DENIED showed that PresentationHost.exe was denied several spots under HKCU.

Running the WPF XBAP Permission Error Tool fixed some of the ACCESS DENIED errors. For others, the user account had to explicitly have read permission to the registry keys and subkeys. It doesn't matter if the user account is in the Administrators group.

In our case, the problematic key was

HKCU\Software\Policies\Microsoft

Without explicit read access, PresentationHost.exe couldn't determine what Security Zone the xbap was running under in IE. This in turn caused the WPF to execute under the Nothing Permissions Set.

Once the user account had explicit read permissions to the registry keys, our WPF application ran with no issues.