As the article below states, Boston College has stopped offering e-mail accounts to new students, as of 2009. They have, instead, created an e-mail forwarding service so, for example, josh@mandala-designs.com would forward to my hotmail, gmail, yahoo, whatever account I wanted to use.
This is an interesting trend. I wish I were at the meetings [...]
When setting up passwordless logins I always seem to miss a step. The following link is a useful resource.
I need to find all the records that were last modified more than one month ago, and delete them. How do I create the date dynamically with MS SQL?
dateadd(month, -1, current_timestamp)
To see it in action run this:
select dateadd(month, -1, current_timestamp)
For more information, see the MS docs: http://msdn.microsoft.com/en-us/library/ms186819.aspx
This little script will remove all SVN dirs from a directory tree:
find . -name “.svn” -type d -exec rm -rf {} \;
Credit to http://snippets.dzone.com/posts/show/2486
According to Pingdom, Amazon S3 uptime for 8/9/2009 was 32.84%! Downtime today is already at 12h 44m. That’s pretty disturbing. I ran a google news search and found nothing related to this outage: http://news.google.com/news?q=amazon%20s3%20downtime&oe=utf-8&rls=org.mozilla:en-US:official&client=firefox-a&um=1&ie=UTF-8&sa=N&hl=en&tab=wn
Here are some links that were forwarded from my colleague, Len.
Regarding a PayPal outage: http://www.businessinsider.com/outage-costs-paypal-users-at-least-7-million-2009-8
Regarding an Amazon [...]
SugarCrm is one of the most recent software apps to catch my attention. I’ve heard a lot about it in the past, but until recently have not played with it. Recently, we installed on our server garden and I’ve been very impressed. While it starts as a contact management system, it has some design features [...]
Introduction
PayPal is depracating their old PayFlowPro API’s and so we needed to upgrade to the new SDK. Despite PayPal’s efforts, this is not a simple task.
First I reviewed PayPal’s docs: https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/gateway_update_custom_dev . The PayPal link walks you through determining if you need to upgrade, and then directing you to the correct SDK.
[...]
-
Meta
