While developing one of our iPad applications, we came across a scenario where we needed a way to simply reposition UIView objects on the screen. The Problem You have a View that has a big logo in the center towards the top, and two UITextFields right below it: one to enter your user name, another … Continue reading "iOS: Repositioning…
Read Article
Towards the end of last summer, in the middle of the work day, I received a call from a friend who is a professor at my alma mater. The call started with, “Hey, I know you’re busy, but…” I was busy. I had recently moved back to Buffalo, I was working on an awesome new … Continue reading "My First…
Read Article
Sorting values on the server side is usually pretty trivial. There are a lot of tools at your disposal, not the least of which is the data query itself. When it comes to sorting an element on the front end however, it can sometimes take a little bit of clever data value usage to accomplish … Continue reading "How to…
Read Article
Error handling and feedback for AJAX requests can be a tedious undertaking for JavaScript heavy web applications. Often the AJAX functions are spread out in your code and, if you’re like me, you may put off error handling until late in the game. In a significant web project we’re wrapping up, we were struggling to … Continue reading "Global AJAX…
Read Article
If you have ever worked on an iOS 5 application and came across a strange issue adding objects to a NSOrderedSet that is part of a NSManagedObject, you are not alone. This bug was reported on Open Radar on September 13, 2011, and was still reproducible in the latest versions of iOS5. Setting up the … Continue reading "NSInvalidArgumentException with…
Read Article
Earlier this week, I had the honor of sitting in as a panelist for a discussion on mobile marketing hosted by the Advertising Club of Buffalo. The talk, titled “Mobile Marketing: What is it and how we can utilize it?” focused on: Types of mobile strategies that companies could use as effective marketing tools The best … Continue reading "Mobile Marketing:…
Read Article
It’s always fun when I get to share two of our favorite things here at Cypress North: a brand new shiny website and great search traffic results. The second is a result of the first, but we’ll get into that later. New Website for Buffalo Niagara Medical Campus We”ll start with the new website. We’re … Continue reading "Buffalo Niagara…
Read Article
While ASP.NET MVC has a powerful routing engine for handling requests, there can be a scenario when you need to process a list of specific URL rewrites in your application. Often this can be due to a new version of an existing site going live where the URL structure has changed. Under Apache, this can … Continue reading "How to…
Read Article
Last month we launched a fully customized e-commerce shopping cart platform for CustomZilla.com, a drinkware solutions company that makes custom mugs and personalized glasses for brands and people. CustomZilla’s mission is to make custom products accessible to everyone. CustomZilla does everything from printing your logo on a wide selection of coffee mugs to engraving your … Continue reading "Cypress North…
Read Article
I’ve written previously on how to handle AJAX requests for Internet Explorer but recently we came across a strange issue where the requests were being aborted by IE before the response was finished being delivered. Using Fiddler and Firebug, we were able to see that the request was being made properly, and even the response … Continue reading "Internet Explorer…
Read Article