Archive for the ‘Featured’ Category
Monday, April 11th, 2011
Designers, Developers, System Administrators and companies spend a lot of time trying to optimize their networks and content delivery systems to achieve optimal performance with the minimum resources possible. At first, there was a simple browser/proxy cache schema, then the “If-Modified-Since” and ETags HTTP headers where introduced. Nowadays CDNs seem to blooming and all the […]
Posted in Apple, Featured, I'm an Idiot, Monologue, Personal, Security, Web | No Comments »
Thursday, August 12th, 2010
I recently started a new project called libanim (home page) which aims at providing support for animated file formats on the iOS and perhaps Android at a later stage. The problem doesn’t seem to be limited to any one platform, support for animated file formats is usually limited to gif files but on some places (e.g. […]
Tags: apng, Cocoa, gif, ios, ipad, iPhone, libanim, libpng, mng, Objective C, png
Posted in Apple, Cocoa, Development, Featured, iPhone, Monologue, Objective C | 3 Comments »
Tuesday, July 27th, 2010
If you’re using the iOS 4 SDK then by default your app will be assumed to support multitasking even though you actually need to add support for it and you might not have done that (e.g. updating an old application). While multitasking seems nice it isn’t always the best scenario for your app, specially when […]
Tags: ios4, iPhone, multitasking
Posted in Apple, Featured, iPhone, Monologue, Objective C | 5 Comments »
Thursday, November 12th, 2009
Displaying a details view to show data after the user selects something from a table on the iPhone is pretty much the standard and it sure is useful in many cases. Fact is that it’s not always the fastest or correct way of showing details, specially if the amount of details left to show is […]
Tags: Cocoa, expand/collapse, iPhone, Objective C, Tricks, uitableview, uitableviewcell
Posted in Apple, Cocoa, Featured, iPhone, Objective C | 10 Comments »
Tuesday, October 27th, 2009
I got tired of visiting the AdSense page all the time, well from time to time. I already have done an iPhone app so now I created a iGoogle gadget to display the most important stats and also a chart! So, with the help of Mono I was able to have everything setup and tested […]
Tags: AdSense, gadget, Google, Mono
Posted in .Net, ASP.Net, Cocoa, Featured, Mono, Monologue | No Comments »
Tuesday, September 8th, 2009
While working on a particular UISearchBar I ran into 2 little problems, both easy to fix but I thought of posting them in case someone is stuck. What I needed was to make the cancel button and the scope bar to be displayed only while editing. I believe that this should be a pretty common […]
Tags: Tricks, UISearchBar
Posted in Apple, Cocoa, Featured, iPhone, Objective C | 11 Comments »
Monday, August 24th, 2009
I’ve been developing a large application with ASP.Net Ajax and ExtJS. It all works great together and in fact ASP.Net is just a easy way to access my .Net code/web services because the whole UI done with ExtJS constructed/controlled by javascript/Ajax. When it comes to a 100% javascript UI there are some cases where you’ll […]
Tags: ajax, ASP.Net, ExtJs
Posted in .Net, ASP.Net, Featured, Mono, Monologue, Web | 1 Comment »
Wednesday, August 19th, 2009
ASP.Net Ajax features are very good, even great if you consider the useful integration with other ASP.Net constructs. PageMethods are one of the easiest ways to implement an AJAX call without too much trouble or the need to implement a complete web service page if you’re only going to use this particular Ajax call from […]
Tags: ajax, ASP.Net, PageMethods
Posted in .Net, ASP.Net, Featured, Mono, Monologue, Publish, Web | 4 Comments »
Wednesday, May 6th, 2009
During the past week I’ve been writing a tutorial about Chipmunk, a physics engine very popular among 2D games. The article’s focus is mainly for the iPhone but the Chipmunk code itself is portable to any platform because it’s pure C. I’m thinking about giving the new preview of Monodevelop for OS X release a […]
Tags: Article, Chipmunk, Game Development, iPhone, Mono, Monodelop, Tutorial
Posted in Apple, Cocoa, Featured, Game Development, Games, I'm an Idiot, iPhone, Monologue, Objective C, Physics | 7 Comments »
Friday, April 10th, 2009
There are a lot of new features being introduced into programming languages and platforms every year. Somethings seem to never change tough. I think there is a lot of room for improvement in the way programmers work and in this post I’ll try to explain some of my view points on how to improve things. […]
Posted in Development, Featured | No Comments »
Thursday, March 5th, 2009
I’ve been working at a new project that requires me to save a whole lot of data into a database. Without giving too much details right now (I’m not quite ready for that yet :)) I would say a good replacement would be to think I’ve developing something like Google Analytics. So, there are a […]
Posted in .Net, Development, Featured, Linux, Mono, Monologue, Web | 2 Comments »
Tuesday, November 25th, 2008
Updated on 23/10/2009: I’ve updated the code to fix the bogus regex expressions (wordpress editor striped some bits from them) and also to fix the code since Google changed the signin process slightly. For the more interrested, Google now has 2 cookies/hidden vars instead of 1, the code is almost the same though. A simple […]
Tags: AdSense, C#, Cookies, HttpFox, Login, Objective C, Sign in, WebClient
Posted in .Net, Featured, Linux, Mono, Monologue, Security, Web | 9 Comments »
Monday, November 17th, 2008
ASP.Net provides out-the-box several nice (although not new) features to manage your application’s state, the Session and Application objects. The Session and Application objects are also among the first things learned by students of almost any web programming framework but while they are true in their usefulness it doesn’t mean you should use them directly, […]
Tags: application, ASP.Net, session, state management
Posted in .Net, ASP.Net, Featured, Mono, Monologue, Security, Web | 5 Comments »
Monday, November 10th, 2008
How does diff/patch work? When I first started to do research on this problem I had no idea about the complexity of the math involved and the lack of C# examples around. It turns out that finding the right resources can make life easier, and in the end the Wikipedia entry and this screencast did […]
Tags: .Net, C#, Diff, LCS, Longest Common Subsequence, Mono, Sample Code
Posted in .Net, Featured, Mono, Monologue | 10 Comments »