Windows 8

Kiss Flash and Silverlight Goodbye on Windows 8

Did you ever think you’d live to see the day when you’d read this headline? Here, wait, let’s hear it in OSNews’ own words first:

“The world’s most popular operating system will not be receptive to Flash, and Microsoft openly stating Flash is history pretty much means that as a platform for the web, it’s done. Flash may still serve a purpose in other ways, but the Flash most of us know and hate – that’s gone.”

Wha… ? Done? Gone? Flash? DOA? Belly-up? Bereft of life, resting in peace?

Yes, the MSDN developer website seems pretty sure about this. HTML5 is where it’s at now. Throw away those O’Reilly Actionscript manuals and beef up on your HTML5. Meanwhile, Apple Insider can barely keep the gloating out of its coverage of the story.

The hilarious irony in all of this? Linux, the platform the Adobe despised the most, is now the only platform that will give the time of day to Adobe. So, ah, Adobe, do you suppose Firefox Ubuntu users can expect their Flash plugin update on time for a change?

Kiss Flash and Silverlight Goodbye on Windows 8 Read More »

Instaview: Instagram to the Macs

InstaviewIconIt’s time to reveal what we’ve been working on these last few months, but first a little background. Instagram, an app available for iPhone is in the words of its creators at Burbn, “a fast, beautiful and fun way to share your life with friends.” The number of people who have adopted this service as their favorite way to share photos has been nothing short of amazing. A recent article puts its userbase at 5 million.

We too have enjoyed using the app over the last several months and have decided to provide a way for Instagram users to view these photos with a native Mac application.

Instaview allows you to easily set up one or more windows which will each show an Instagram photo stream. You can choose from several picture frames styles to showcase each photo stream. An overlay appears when you mouse over each stream window, allowing you to see more information about the photo being displayed. At that point you’re a click away from viewing who has liked or commented on the photo, further information about the Instagrammer, the ability to like the photo, follow the contributor or add your own comment. Our badging feature lets you know when new photos are available for viewing. Finally, each window can also become its own slideshow which will cycle through its stream’s photos.

Instaview: Instagram to the Macs Read More »

online business

Running your online business like a rock star?

An interesting pocket of web design is found on Naldz Graphics, with a gallery of 40 websites of rock bands. Now, the point of this post is “look at designs, be inspired in your own designs” and in fact some of these might work better for businesses other than a band.

We asked our own resident rock ‘n’ roll expert (he has a Frank Zappa poster in his cubicle) to rate how these designs work for a band as a business case.

Here’s some of the verdicts:

Running your online business like a rock star? Read More »

Internet Usage

Your Wealth Affects Your Internet Usage

A stunning new report from Fast Company asks Why Are the Rich So Good at the Internet? It kind of seems obvious at first, but even within the tiers of people well-able to afford technology, there’s a difference in how much you use the Internet depending on your income.

The report is fascinating, and puzzling. But we think we can make some guesses as to what’s going on (take these with a grain of salt; they’re just theories):

  • The rich have more leisure time, so more time to play online.
  • The rich got that way through being thrifty, so they’re keener to use online shopping to find a bargain.
  • The rich have higher-tech jobs, so they’re naturally more Internet-savvy.
  • The rich are better educated, so they know more about what computers can do.
  • The rich have been able to afford computers for a longer time and so are more experienced. This is a little Easter egg – a $40,000/year and $80,000/year salary can afford the same computer – in 2010. In 1990, computers were much more expensive compared to the cost-of-living then, so only the richer household could have afforded them then. The poorer users have to catch up in learning.

Your Wealth Affects Your Internet Usage Read More »

An enhancement for UIAlertView

I like objective-c protocols, and I am a fan of the interface oriented designs that it allows for. But, sometimes the indirection of using a selector with a defined signature just works better, and the problem is that UIAlertView does not take a selector. Instead, UIAlertView defines a protocol, UIAlertViewDelegate, that the alert’s delegate adopts to receive notification of the user intent. To be fair, UIAlertView communicates a bit more information back to it’s delegate than the target of an NSAlert, and the UIAlertViewDelegate protocol does a fine job achieving that goal. 99% of the time, however, I want to show an alert and have it call my named selector when it is done. To that end, I finally busted out the admittedly tiny class that does the job.

Now in my client code I show an alert like this:

RSAlert* alert = [[RSAlert alloc] initWithTitle: @“Title” message: @“Message!” target: self selector: @selector(dismissedAlert:buttonIndex:) cancelButtonTitle: @“OK” otherButtonTitles: nil];

 

and handle the result with a selector, similar to NSAlert:

An enhancement for UIAlertView Read More »

hiring an online freelance web designer

Hmmmm, Good Advice For Being A Good Client

We jumped when we saw the title of the post: How to be a good client, but then when we read the content, it wasn’t what we had in mind. Don’t get us wrong, it’s all good advice, but we’d really like to take this time to advise readers on how to get the most out of hiring an online web design agency:

1. Link to an example of what you want. As they say, a picture is worth a thousand words. You can talk to a designer all day, “I want an arty header and a side link bank, but it should move with the scrollwheel and have green and blue colors…” That can still be interpreted 100 different ways. Find a picture to start with, then detail how you want it different.

2. Take the designer’s / developer’s word for it. We don’t know how many clients out there have made their own lives miserable by saying “I want the whole site in Flash.” or “Can I get it with animated GIFs and use this big image as the background?” You hire an expert; if they say that something isn’t a good idea, listen to them. That’s what you’re paying them for is to know their stuff!

Hmmmm, Good Advice For Being A Good Client Read More »

Mashups and APIs

The Irresistible Draw of Mashups and APIs

It’s worth checking in over at Programmable Web once in awhile just to see what they’re up to, with their API discoveries. Google, Twitter, Flickr, and all, the defining mark of a popular Web 2.0 service is whether people do things with your API.

Notable developments from just one recent week:

  • Comedy on Spotify – A directory of comedians and their albums, with video clips for sampling, mashed up out of Freebase and Last.fm. Just dive right in and look for the wit who tickles you the right way.
  • Today’s Special – A Google Wave bot serving up quotes, words, horoscopes, sports scores, and whatnot.
  • Tickets Suck – A Twitter and Twilio mashup that reminds you to move your car so you don’t get a ticket.
  • Quote Relish – A real-time news ticker using the Freebase and Moreover APIs.

Mashups and APIs are an exciting tech trend that’s worth keeping track of, because new gizmos are getting invented every day. This is something we couldn’t do only a decade ago. But even more fascinating is the potential that mashups have; they represent evolution at a lightning pace. Ideas build on ideas, just the way innovation is supposed to work!

The Irresistible Draw of Mashups and APIs Read More »

iPhone Animation Sequence

When writing Postage and WORD SPIN we encountered the same problem again and again: the need to chain a sequence of animations together. For example, when the user navigates to the next page we first animate away the controls for the current view, switch views, then animate the controls in for the new view. Initially, we set the UIView delegate and then in our specified selector implementation kicked off the next animation which itself would eventually call back into a completion selector, and so on. But it’s largely the same code over and over, and you either need a bunch of similar looking animationDidStop implementations, or a single implementation that branches based on the animation identifier. For example:

iPhone Animation Sequence Read More »

Warning : Love hurts…

Sometimes the ones you love reject you. If you are an iPhone developer this is probably a concept with which you are already intimately familiar. We love developing for the iPhone, but sometimes the App Store and its app review process leaves us feeling a little dejected.

One of our applications was just rejected about halfway through the review process and it seemed like a unique enough situation that it was worth sharing as a warning to our comrades in the trenches.

Over the past couple of weeks, there have been several reports of iPhone Apps being rejected for use of private APIs. Many of the rejections are from developers that have used the extremely popular Three20 library from ex-iPhone developer Joe Hewitt. The developing consensus is that recently Apple has started using a static code analyzer to flag applications that have used private API calls.

Warning : Love hurts… Read More »

Illustrator

Mock-Up Solutions That Are Not Photoshop

This may come as an astonishing shock to some people, but Adobe Photoshop is not the only application in the world!

Perhaps we could bring some fresh viewpoints to our design process, if we tried another tool just once…

  • Illustrator – Scalable Vector Graphics, for instance. That’s actually closer to what the final product looks like anyway, and SVG editors are ever so much more graceful handling text than Photoshop. You might also try the free (and excellent) Inkscape.
  • Fireworks – Superior for some functions, such as object handling, vectors, and the slicing/exporting of images.
  • Xara Xtreme – Never heard of it, did you? Check it out, it’s a vector editor on steroids. It can even handle Flash and build web prototypes right in the app!
  • Balsamiq Mockups – Another new player in the field, this one was designed by an ex-Adobe employee. It’s specialized to just do web design mock-ups.
  • Pen and Paper! – Too many people knock this. Drawing on paper lets you stop thinking about the interface and tap your artistic thinking. People forget that creating a web document is an art. It’s also much more satisfying to tear up a design you don’t like than it is to delete it!

Mock-Up Solutions That Are Not Photoshop Read More »