iOS Development Tips I Would Want If I Was Starting Out Today
Found at Stuart Hall’s blog
Found at Stuart Hall’s blog
I have posted an entry on the flickrdownloadr.com blog, about how the single click deployment came about.
Check it out here…
UPDATE (02/24/2013):
I did manage to figure out (thanks to Jon Skeet answering my question on SO) how to tackle the async/await scenario for a AOP logger using StructureMap and DynamicProxy. Check outthe tag v0.2the tag v0.3 1 on GitHub for the source.
Implementing the AOP pattern into a C# .NET application is something I always wanted to do. I had tried PostSharp with a few other team members, a while ago, but could not get it working soon enough, that we quit the attempt after a while.
After reading up a little more (here, here and here) I am now trying it all over again in the flickr downloadr that I am now working on.
I still haven’t completely cracked it, because the Flickr Downloadr WPF app heavily uses the new asynchrony features (async/await etc.) from .NET 4.5. I hope to somehow adapt the dynamic proxy based intercept paradigm to make it work with the new asynchronous model soonand I shall follow this up here then with the details.
The application that I am working on now is a nice little ASP.NET MVC4 web app, whose target audience will access it on some of the popular tablets of the day - iPad, Android and Windows 8 Surface etc.!
The USP of the otherwise regular data entry app is that it has an offline mode, so that the data collection can happen even when there is no connectivity. Even with ubiquity of the data networks, this proved to be the critical aspect of the app for the client. And among the things being cached for offline mode, there is some really hefty business look-up/metadata, that has to be there for the app to function. The fact that the app would be targeting multiple devices, and because the HTML5 recommended IndexedDB API is still not implemented by some of the major players (Opera or Safari or any iOS6 browser), we had to fall back to the better/older/more-robust and now-deprecated Web SQL database as well.
1 | git log --graph --left-right --cherry-pick --oneline master...experiment |
1 | git log --all --decorate --oneline --graph |
1 | # create new remote branch on push |
This little JS file helps in minifying and expanding JSON by replacing the keys with numbers:
Note to self: this below function has some useful stuff
A little interesting snippet: