I’ve had the opportunity to work with Trinity Lutheran Church and West Center Baptist Church, both of Madison, SD, develop new web presences during the last several months.: Trinity Lutheran Church is an ELCA congregation. Their new website launched today. I had originally created them a website while I worked for Logic Lizard, a company …
Using SendGrid in ASP.NET
I recently launched a daily email newsletter on my company’s investing website, American Banking & Market News. The newsletter provides daily updates about ratings changes made by stock analysts. Initially, I planned on using my server’s local SMTP server to send out the messages, but realized that after getting more than 50 sign-ups the first …
Working with Committees: How to Build a Successful Website
Imagine that you and your ten closest friends are put into an industrial kitchen and told to make food item that contains everyone’s favorite ingredients. If you all like exactly the same types of food, you might wind up with something that’s not half-bad. Unfortunately, this is rarely the case. You would more likely end …
How to Optimize Your WordPress Blog for Performance
WordPress is an excellent blogging/news website platform as a whole, but has been criticized for being a bit of a performance dog. One of my websites which is powered by WordPress receives between 100,000 and 200,000 unique visitors a month. I’ve gotten a few nasty emails from the two hosts that I’ve had the site …
How to Make Use of Namespaces in C# and Visual Basic .NET
If you’ve written any sort of software application of decent size, you’ll know that you need to structure your code, most often using object oriented design techniques, to keep your code-base manageable. Some languages such as Java and C# enable developers to write object-oriented applications relatively well out of the box without much extra work. …
Arvixe’s Customer Service Has Won Me Over
For years, I had been a DreamHost customer. I had their standard shared reseller hosting account that costs peanuts. Every few weeks my sites would crash hard when they had any remote amount of significant traffic. Eventually it got to the point where I was losing out on ad-revenue because of DreamHost’s inability to keep …
Facebook Goes Live with Bookmark Prompt
A couple of months ago, Facebook announced some ambitious changes to their API. We’re now starting to see some of the first of the newly announced features be released into the wild. A couple of weeks ago, Facebook added the ability for developers to ask prompt to bookmark their application. Previously, users were only able …
How to Build a Code Igniter Development and Testing Environment on Windows
I’ve been playing around with the Code Igniter Framework for PHP over the last couple of weeks, primarily because Net Tuts has a series of 6 high-quality screencasts showing off some basic functionality of the framework. Essentially, Code Igniter provides some additional functionality and provides a standardized means of creating pages and methods using the …
How to Post to Facebook's "Stream" using Facebook Connect and XFBML
For my day job, I’ve been developing a facebook application to coincide with its annual SpayDay event. Developing the application has caused several headaches, but once I realized that the majority of the facebook integration wouldn’t happen from the Facebook Developer Toolkit (an ASP.NET Facebook Development Framework), and instead from JavaScript-based XFBML, life got a …
Fast and Efficient C# and Visual Basic String Concatenation
If you do any sort of web development work on the .NET platform, you are going to find yourself concatenating (connecting) strings together on a very regular basis. There are two ways to do this. The first is with a traditional string concatenation, which would look something like this: string MyString = String.Empty; MyString = …