My Problems with “Brogrammer”

I wish I had not navigated to CNN today, but since I did, I feel I have to participate in the debate.

I don’t like the term Brogrammer, and here are my reasons.

1. It’s ambiguous, like “metrosexual” (remember that!?). Pretty soon, there will be quizzes on Facebook titled, “Are you a Brogrammer?”

2. Am I the only one that sees extroversion as the key distinction between a programmer and a brogrammer? Just seems that brogrammers like to hang out with people from beyond their highly technical fields.

3. By creating a generic label, we’ve eased the transition to intolerance (think N-word or “bible beater”). It facilitates the stereotype that extroverted programmers are all sexist, racist, and/or drunks.

C’mon bro, that’s not cool. Man.

Posted in Uncategorized | Leave a comment

Access Database Join on Memo Column

Yes, I occasionally have to use Microsoft Access. Sometimes, this pain is self-inflicted. Ran into an error today that I had not seen before:

SELECT SomeField FROM ATable LEFT JOIN AnotherTable ON ATable.SomeField = AnotherTable.SomeField;

Cannot join on Memo, OLE, or Hyperlink Object (...)

The error message was spot-on, one of those join fields did happen to be a Memo-type field. It was only a minor annoyance. I attempted to convert the memo field to a regular ‘ole text field using the LEFT function.

SELECT SomeField FROM ATable LEFT JOIN AnotherTable ON ATable.SomeField = LEFT(AnotherTable.SomeField, 255);

And that worked.

Posted in Uncategorized | 1 Comment

New Means of Contacting Us

Our phone number is now toll-free (866) 535-3874. Hope to hear from you soon!

Posted in Uncategorized | Leave a comment

uptime

Got stability?

17:27:59 up 220 days, 59 min, 2 users, load average: 0.36, 0.17, 0.09

Posted in Uncategorized | Leave a comment

Unsolicited Feedback

A friend went to my website today and had a few excellent comments. Although I often ask friends for feedback on my work, but I find that, like subatomic particles, their opinions change when prodded. But today, my friend’s comments were unsolicited. It’s my favorite kind of feedback, but very difficult to encourage and, sometimes for me, difficult to recognize.

Continue reading

Posted in Uncategorized | Comments Off

Minoff4Constable.com Is Live!

A Candidate Rises

About a month ago, we were approached by Barry Minoff, a referral in need of a website. He knew of the work we did for A & R Motorsports, liked the style, and needed a website for his election (he’s running for Constable in Denton County, Texas). It’s Barry’s first-ever run for political office, and we were proud to have the opportunity to help him in the process.

Continue reading

Posted in Uncategorized | Comments Off

Benchmark Building and Construction Deployed!

We just launched Benchmark Building and Construction’s first website. Check it out here: http://www.bbctexas.com.

At Benchmark Building & Construction, our primary focus is quality custom buildings and light-to-medium industrial construction. Whether you are building a new workshop, a home, a commercial facelift, new restaurant, or even a small barn, we have the experience and the resources to get the job done right the first time.

Continue reading

Posted in Uncategorized | Comments Off

Configuration of Ruby On Rails ActionMailer for Microsoft Exchange SMTP

You may find that your Microsoft Exchange server is not configured for AUTH LOGIN over STMP, and only supports the Microsoft-specific AUTH NTLM. When trying to use the default Net/SMTP library with an AUTH NTLM server, you’ll receive the 5.7.4 unrecognized authentication type error. Thanks to the ruby-ntlm gem, you can still authenticate.

Continue reading

Posted in Code | Comments Off

Creating a rotating banner for CS-Cart with bxSlider – Part 1: Creating the block code

Everything that you need to create a rotating banner in CS-Cart 2 can be created from existing open-source resources. Here, I describe how to create a rotating banner using bxSlider that integrates well with the existing banner management component in CS-Cart.

Continue reading

Posted in Code | 5 Comments

Upgrades to St. Rita Readers

After a lengthy upgrade and redesign period, the latest version of St. Rita Readers has been released. The site underwent an upgrade of the existing Rails 3.0.3 codebase to 3.0.5, with some minor tweaks to the Controllers and Models to improve efficiency. However, the interface is completely new and, I dare say, attractiver.

Continue reading

Posted in Products | Comments Off