Latest Blog Posts From: Web Development / SEO Blog

Mac Performance Benchmark App
For support, pre-sales inquiries, or any other questions please get in touch on Twitter by sending an @ to: @CodingRecipes. You can expect a quick response to your questions via Twitter because we receive our @s in real time with Tabs Plus desktop pop-up notifications. This data will be updated daily as we receive more [...]
Published 2 weeks ago

ShareOver â“ A Social Sharing App For Mac OS X
- If this is your first time opening ShareOver click here. - Get ShareOver from the Mac App Store for free for a limited time! The fastest way of getting support is via our Twitter page: https://twitter.com/#!/Codingrecipes Setup You can setup ShareOver easily, take a look at the left menu, you will see a list [...]
Published 1 month ago

Introducing Tabs and Tabs Plus for Mac OS X
- Buy Tabs Plus from the Mac App Store for only $0.99 - Download Tabs for free from the Mac App Store. The fastest way of getting support is via our Twitter page: https://twitter.com/#!/Codingrecipes Tabs Plus sits conveniently in your top menu bar â“ youâre one click away from your personalized bookmarks. Features - Many [...]
Published 2 months ago

DirectorySync
Download DirectorySync on the Mac App Store Like DirectorySync on Facebook DirectorySync is an app that I’ve actually wanted for my own use for a long time. I was tired of having to manually copy my work over to multiple directories, or scheduling back ups. Existing back up software was either too slow and clumsy, [...]
Published 2 months ago

jQuery click() not working
Try mouseup() instead of click()…
Published 3 months ago

jQuery html() method IE; unexpected call to method or property in Internet Explorer
Make sure you are using jQuery’s html() to change the contents of an element that supports it, for example, for an input field you must use val() instead, but for a div, you can use jQuery’s html() method without getting this error in Internet Explorer: unexpected call to method or property I hope this helps…
Published 3 months ago

Cocoa: Determining Size Of a NSTextView’s Content
You can do this: textView layoutManager usedRectForTextContainer:textView textContainer.size
Published 3 months ago

Animation Curves and Tweening; Understanding Animation Curves
These equations are by Robert Penner, you can find a document here that explains this in much greater detail: http://www.robertpenner.com/easing/ The correct linear tween function looks like this: float linear_tweenfloat t, float start, float end if t > 1.0f return end; return t * end + 1.0f - t * start; t is [...]
Published 11 months ago

JavaScript: setTimeout doesn’t work in IE
The only way this could happen is if you try to send extra arguments, so you can’t do: setTimeout(‘func()’, 1000, param); you have to manage with something like: setTimeout(‘func(“‘ + arg + ‘”)’, 1000);
Published 11 months ago

iPhone: libpng error: CgBI: unknown critical chunk
If you get this error when trying your app on the device, you have PNG compression on in Xcode, in Xcode 4 goto “Build Settings” search for PNG in the search box and turn off PNG compression…
Published 12 months ago