Removing Chatter feed from the home page

March 31, 2011

Holy cow I’m actually alive, although I can’t say the same for my blog. I finally decided to put something up here on the blog again to help a fellow force.com user. This code can be applied to your home page via an HTML home page component to remove the Chatter feed at the top [...]

4

Chaining executions with actionFunction

April 28, 2010

A problem was posed recently for another developer in the forcedotcom community where he was running out of http callouts while trying to use a REST API service. I figured this is the perfect reason to take a break and post a new blog post. One solution I’ve used in the past to get around [...]

0

Converting string to decimal character array in Apex

April 26, 2010

Recently I had to find a way to convert strings into their ascii decimal value. I solved this by converting to hex first, and then using some simple math to get the decimal value of each character. This won’t work on double byte characters, but that wasn’t my use case so for now this will [...]

0