Ahh, long URL are hard to share in a mobile world. I have always found it a bit cumbersome to have such a long URL (gregorybrickner.com 15 characters) which grows even longer when adding wordpress...
Setting Up OpenERP on Amazon EC2
Initial perusals of OpenERP 7 appeared to be quite impressive and offering a robust ERP package for small business. Here are the simple steps to test this out further using Amazon’s AWS cloud...
Forcing Excel to Recalculate
Occasionally your computer might run out of RAM, or Excel could just get bogged down because you have too much open and things just start to not calculate properly. Sometimes everything is working...
SQL Previous Business Day Function
This is a simple function for MS SQL that can make reporting so much easier by finding the previous business day.
Setup the function:
CREATE FUNCTION [dbo].[fn_prevbusday](@date DATETIME)
RETURNSDATETIMEAS
BEGIN
DECLARE...
Edit a Magento Configurable Product
Magento does not allow you to edit a configurable product once it has been created in order to add a new attribute to the product. This is quite annoying since ‘stuff comes up’ where this...
Searching within a Stored Procedure
Handy bit of code to search all of the stored procedures at one time:
SELECT Name
FROM sys.procedures
WHERE OBJECT_DEFINITION(OBJECT_ID) LIKE ‘%customer%’
GO
This will return the stored...