Blog
Learn with me, fresh contents everyday...

iPad short review

Hee ya, Just got an iPad from friend traveling to US. From what I have played about a week. I found it really attracted me much more than I think. – very fast responsive. – rich of content through iTunes. – big screen expand the opportunities to do things on the device. Anyway, from my …

Read More

My Lovely Slideshow!

Click to see my family inside this post!

Read More

Complete Guide to use IoC with ASP.NET MVC (Using Castle Windsor and MVCContrib) Part #1

Hi guys, Today I’m going to share with you if you get stuck trying to learn IoC and implement it into your own ASP.NET MVC application. I’ll not going to write a deep content about IoC but somehow I will share the short brief of the concept of IoC and how you can easily implement …

Read More

The most easiest method to implement a SEO-friendly URL for ASP.NET application

Well, as a ASP.NET developer. You and me know that it’s a bit hard to apply what we called SEO-friendly URL for ASP.NET applications. What is SEO-friendly URL? It’s a URL that search engine love and will result in a better ranking for your web pages/site. Let’s say you have an accounting system software and …

Read More

The top conversion buying button for your sales copy

Hi friend, I just want to share with you that after I’ve changed my ‘buy now’ button to the Belcher button, it converts like crazy. Here you can see how it looks like… So, quick note here. If you never heard about the Belcher button. Here is a short brief… The Belcher button is one …

Read More

Hey guys! How you work with copywriters?

Hi guys, I just want to know how you work with copywriters in this situation? In my case, I’ve written a draft copy of my sales page and I want to find a copywriter to work for me to… Critique my sales page Optimize it Proof reading So far so good, I’ve a deal to …

Read More

Are you in the deep enough niche?

Hi fellow marketer, After I’ve spend my last 1 year and half to learn and implement Internet marketing knowledge from bad to great marketers, I found that the first thing made you not achieve success is… you are working on not deep enough niche. Speak simply, it’s a niche that too broad. I’ll give you …

Read More

Decode HTML characters in iPhone SDK with Objective-C

Just create an interface by following this code. @interface MREntitiesConverter : NSObject { NSMutableString* resultString;}@property (nonatomic, retain) NSMutableString* resultString;- (NSString*)convertEntiesInString:(NSString*)s;@end @implementation MREntitiesConverter@synthesize resultString;- (id)init{ if([super init]) { //resultString = [[NSMutableString alloc] init]; } return self;}- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)s { [self.resultString appendString:s];}- (NSString*)convertEntiesInString:(NSString*)s { if(s == nil) { NSLog(@”ERROR : Parameter string is nil”); } …

Read More

Showing UIAlertView on cocos2d Scene/Layer

This can be done easily just like when you are working with the standard ViewController. Here is the sample code… UIAlertView *alert = [[UIAlertView alloc] init]; [alert setTitle:@"My Title"]; [alert setMessage:@"My message"]; [alert setDelegate:self]; [alert addButtonWithTitle:@"OK"]; [alert addButtonWithTitle:@"Cancel"]; [alert show]; [alert release]; With this, you can detect which button was pressed by handling the alertView …

Read More

The most easiest method to add a splash screen for your iPhone application

Well done, I don’t know if there is any other framework that let you add a splash screen easier than the iPhone SDK or not. I never see it. What you want to do is just creating your splash screen image in PNG format which have 320×480 resolution for portrait or 480×320 if your app …

Read More
Page 1 of 512345»