New England GiveCamp 2011: What A Weekend!
Last weekend was New England GiveCamp 2011, in which 100+ developers, designers and other volunteers gathered to donate time and skills to some 30 charities who needed IT help.
This year, I was project lead for Alex’s Team Foundation, based in Andover, Mass. Our team was Saurabh Moondhra and William Wade, both experienced ASP.NET developers.
Alex’s Team Foundation, named after 16-year-old Alex Miliotis, who passed away from leukemia in 2002, raises money to support nurses and other oncology professionals, and supports youth sports. The foundation is largely the labors of Patti Rae Miliotis, Alex’s mother, and a handful of reliable volunteers. Like every small nonprofit, Alex’s Team doesn’t have a lot of money.

From the right to left: William Wade, Doug Vanderweide, Saurabh Moondhra and Patti Rae Miliotis of Alex's Team Foundation. The lady with her feet up is Deanna Lohnes, who worked on another project; the woman in green, whose name I do not know, was her charity's contact person.
Like every other leader of a small nonprofit, Patti is pulled in a lot of different directions and has all she can do to keep track of the people with whom she comes in contact, nonetheless all the donations she gets. Patti also hosts a few events every year. She basically needs a way to keep track of who attends those events or otherwise supports her organization, and to mail merge thank-you notes.
So that was the project I led this weekend: Converting a bunch of data stored in (of course!) Excel spreadsheets into a more relational database, with the ability to export that data in order to mail merge thank-you and fundraising letters.
Continue reading: New England GiveCamp 2011: What A Weekend! »
Automatically Hash Tagging Text With ASP.NET Web Forms (VB.NET)
I had previously blogged a solution in PHP to automatically hash tag an input string with various terms stored in a database. Here’s an ASP.NET Web Forms version of the same solution (this one should work for ASP.NET 2, 3.5 and 4).
To review, a hash tag is a bit of text, led with a hash mark (#), that serves to indicate to some Web sites / services — notably, Twitter — that the word thus marked should be treated as a tag. This code will take some piece of input text, search it for terms we generally want to tag, and mark the instances in that input string with hash tags.
As in the previous solution, we’ll define a “word” for the purposes of this demo to be any alphanumeric character sequence that is followed by a space or a newline. Also, this demo will only tag text; it won’t automatically add new terms to the database. That will be the subject of an upcoming post.
I’m going to use three ArrayLists as the workhorses for this solution. One will hold the terms from the database; the second will contain all the distinct words in the input string; and the third, the words from the input string that are hashtag terms.
Continue reading: Automatically Hash Tagging Text With ASP.NET Web Forms (VB.NET) »
Automatically Hash Tagging Text With PHP And MySQL Part 2: Adding New Hash Tags To The Database Table
Yesterday I wrote a short script that will automatically tag a subject string with terms contained in a database table. Today, I’m going to alter that script, so that user-designated hash tags will be added to the database.
For example, suppose we have a hash tag database table that contains the terms winter, summer and sun. If we apply those to the opening line of Richard III, it looks like this:
Now is the #winter of our discontent made glorious #summer by this #sun of York; and all the clouds that lour'd upon our house in the deep bosom of the ocean buried.
But what if we decided we wanted to also hash tag clouds, now and in the future? We can certainly manually do so every time, but having a convenient way to add that text to the database would be quite helpful.
That’s what today’s script will do: Find all the words we have manually hashtagged in the subject string and add them to the database, if they are not in the database already and we confirm we want them added.
Continue reading: Automatically Hash Tagging Text With PHP And MySQL Part 2: Adding New Hash Tags To The Database Table »
Automatically Hash Tagging Text With PHP And MySQL
My recent work on the Google Reader to Twitter interface led me to recognize a serious shortcoming of such a basic system: A lack of support for hash tags.
For those unfamiliar with Twitter, hashtags are basically words proceeded by a hash mark (#). When a word is “tagged”, it becomes a hyperlink to content also containing that term.
Tagging isn’t unique to Twitter. It’s integral to WordPress, Tumblr and many other blogging platforms; Google uses tags (which they call “labels”) in most of their major applications, including GMail and Google Documents.
The reason is simple: People tend to organize information in terms of categories, so interrelating content by linking items that belong to the same categories to one another makes it easier on us to find and process that information.
So here’s a quick and easy script that lets you take keywords / tags / labels / categories / what have you from a MySQL table, run those terms over a string / subject text, and automatically tag that string with those terms.
(In a later tutorial, I will describe how to add new terms to the database.)
Continue reading: Automatically Hash Tagging Text With PHP And MySQL »
Wordle, The Cool New Tag Cloud Visualization Toy
I recently discovered Wordle, a clever Web site that accepts pasted text, an RSS URL or delicious user name, and creates graphic “word clouds” for that content. Very cool.
All links in this post on delicious: http://www.delicious.com/dougvdotcom/wordle-the-cool-new-tag-cloud-toy


