

“Rather than try to fit our them into existing solutions we weren’t happy with, we decided to dream up our own.”

“We saw an incredible need in the market as businesses and organizations were realizing how critical it was to have a text strategy, but weren’t finding solutions to meet their needs,” said Amorim. Textify is an easy-to-use and affordable text marketing and fundraising platform that gives businesses, artists, churches, and nonprofits the ability to communicate with supporters, recruit volunteers, send out special offers, accept donations, and sell products, all from a phone. Texting is critical to reaching an audience wherever they are.” “Our phones are almost always within an arm’s reach, and most texts are read within minutes of being sent. “There are more cell phones than toothbrushes in the world,” said Maurilio Amorim, Founder and CEO of The A Group and Textify Mobile. Just weeks after launch, Textify is already witnessing great success, with nonprofit users raising thousands of dollars and acquiring hundreds of new donors using the texting platform. Textify was created through a unique entrepreneurial model that gave TAG employees the opportunity to be a part of the launch team in exchange for profit sharing.

(i.e., if somebody sets up ranges of 0-5, 6-10, etc., the if statements need to include a as part of the comparison or there will be a gap.News from the Wire TAG launches Textify Mobile text marketing and fundraising unit Friday, Ap11:28:00 (EDT)īrentwood, Tenn., Ap- The A Group (TAG), a marketing and technology agency in Nashville, Tennessee, announces the launch of a sister company, Textify Mobile, a software-as-a-service startup designed to provide businesses and organizations with an easy-to-use text marketing and fundraising solution. However, it has the added benefit of not leaving any holes. Below I'm using the ceilingEntry() method of TreeMap which could be argued is less readable than a multitude of if statements with explicit minimums and maximums. Now iterate over the map's entrySet(), and when a rule applies, you have your color name.Ĭreating an HSB class could definitely make the code more readable. MinB < hsb.getB() & hsb.getB() < maxB &Ĭonstruct them like this: Rule rule = new Rule().maxB(123).minH(45).maxH(122) Īnd keep them in a map together with the Strings (you'll probably want to implements equals() / hashCode() first). Return minH < hsb.getH() & hsb.getH() < maxH & Instead, what I would do is specify some kind of rule Object: public class Rule But for multiple range dimensions I don't really see how to make this happen. If you have a single range dimension, you can use a TreeMap with floorEntry() or ceilingEntry().
