Wednesday, March 19, 2014

Want to show your coding skills? Lots of contests now or soon!

Some of these (not all) have age restrictions.  Some have cash prizes, some have other items.  Compete for a chance to win, but also as a chance to try out something new.

1. March 22nd, one day, online coding challenges
http://www.codingame.com/kirk/
2. Build an AI for a racecar over two weeks, teams of up to 3, top six teams compete in Finland!
http://helloworldopen.com/
3. Warlight AI (strategy game like Risk), cash prizes
http://theaigames.com/competitions/warlight-ai-challenge
4. Create a HTML 5 game that also runs on mobile devices with touch.  Cash prizes up to $2500
http://clay.io/gotgame

Monday, March 17, 2014

Update: SkyDrive/OneDrive Browse Task

Well, the SkyDrive rename to OneDrive is a month or so old already, so I finally decided to update my file browser package on Nuget!  In addition to the renaming, I also added the ability to set/replace the images used for file types.  This could be useful if you are going for a specific look for your app, or just to show an image for a custom extension that you use.  I haven't renamed the package since that's how the lookup is done for updates, but I may create a second package soon with the new name.  Hopefully people will still find it!

UPDATE: I never mentioned how to set the file extension images!  It's pretty easy really.  Use the extension itself (not including the dot) and a URI pointing to the image:

SkyDriveBrowserTask.AddCustomFileTypeImage("xlf", new Uri("/Assets/xlf-icon.png", UriKind.Relative));

Notice that it's a static method on the task class, not on instances of the task.  Set it once for your app when it starts up, and any task in that session will use it.

Link: https://www.nuget.org/packages/ArianKulp.SkyDrive.BrowseTask/1.4.0