I recently found out that macarons and macaroons are similar but at the same time different. “Hey Jackson, this is supposed to be a site for development, not home economics.” Well, touche. The real reason I bring this up is because of their statically placed background image. Just take a look at it, go to the page. As you scroll down, it scrolls left and right. What a great use of otherwise boring realestate! Continue reading
Nexus 7 Developer Mode
I was trying to figure out how to enable a nexus 7 device for development and it wasn’t like a lot of the other android devices. To unlock the Nexus 7 for Eclipse (or other) development you have to do this clever trick. Its kind of like finding an easter egg.
HTML Forms: Beat spam without using special software / captcha
On a website we do at work there is a contact form that keeps getting blasted by a spam bot. It’s useless because the spam only goes to two people but regardless it’s annoying so I’m looking for a way to remove spamability. During my research I found this article which explains a clever way to beat the spam bots without using captcha forms or any kind of special software.
WordPress Plugins
Today I was looking for good wordpress plugins and found this site which highlights 5-10 wordpress plugins every month.
Google Charts
I’m not sure how I missed this one, but Google does a Google Charts project which is a collection of html5 friendly charts. I’m glad to see someone maintaining a project like this.
Design Inspiration!
Today I am re-introduced to some designer favorites for good UI. One is awwwards.com and the other is dribbble.com. The page that got me started on this was a UI Design topic by awwards which I found during a morning peruse of the web.
Well Done Website
Today I stumbled across a really snazzy website. Once you go to it, scroll down slowly and watch what happens to their main image after a second. I love this kind of innovation!
VIM Shortcuts
If, like me, you’re only an occassional VIM user then you probably know that VIM comes with an outrageous amount of flexibility and is also loaded with shortcuts. You know these things about VIM, but have no clue on how to use the shortcuts and have no intention to figure them all out. Today I needed to yank (copy) 4 lines and had no idea how to. That’s where this handy list of VIM shortcuts comes in handy. I’ll be using that for some time now! Continue reading
XMLReader & NSDictionary
When being introduced to any language, one of the trickest parts for me is getting xml in an e4-like fashion. The closest thing I have found is this code that captures XML as a NSDictionary. I use it all the time at work and have even made my own spin-off of it that cleans white space off the strings as needed (you can find out more in the link).
Dynamic Width UILabel Truncate With Ellipsis
This morning I found myself with a little IOS problem when I wanted to truncate a UILabel’s text to a dynamic width. Forunately I found an article online about how to do just that – see “Truncate a String and Append an Ellipsis, Respecting the Font Size” by John Muchow