Yummy vegetarian curry
Red lentil and spinach curry
stupid ms tfs
http://geekswithblogs.net/jakob/archive/2010/05/14/building-visual-studio-setup-projects-with-tfs-2010-team-build.aspx
hack to make msi’s get built on tfs
The greatest show on earth has arrived
New beanie!
Jeffersons Tea
so i found this cute little tea place in Bank Arcade. you’ve gotta hit it up.
i snapped up some chai and some indian summer with a sample of flanagan’s blend thrown in for good measure.
there are LOTS of interesting looking teas. my mission might be to try one of everything over the next year or 2.
the indian summer was nice with a subtle flavour. a bit citrusy maybe.
London Calling SQL Stored Procedure from Excel
well, i think its a horrible horrible thing to do, but apparently engineering types like it.
so i learned how to do it in VBA
Private Sub CallStoredProc()
‘call stored proc
Sheet1.Range(“ResultSet”).ClearContents
Dim cmd As New ADODB.Command
Dim conn As ADODB.Connection
Dim prm As ADODB.Parameter
Dim strConn As String
Dim strSQL As String
strConn = “” ‘your connection string (go to www.connectionstrings.com to get all your connection goodness)
Set conn = New ADODB.Connection
conn.Open strConn
Set cmd = New ADODB.Command
cmd.CommandText = “” ‘the name of your stored procedure to call
cmd.CommandType = adCmdStoredProc
cmd.ActiveConnection = conn
Set prm = cmd.CreateParameter(“startdate”, adDate, adParamInput)
cmd.Parameters.Append prm
cmd.Parameters(“startdate”).Value = ’2007-1-1′ ‘or use a sheet cell (Sheet1.Range(“B3″).Value)
Set prm = cmd.CreateParameter(“string1″, adVarChar, adParamInput, 6)
cmd.Parameters.Append prm
cmd.Parameters(“string1″).Value = ’booyeah’
Set prm = cmd.CreateParameter(“number”, adInteger, adParamInput)
cmd.Parameters.Append prm
cmd.Parameters(“number”).Value = 10
‘Execute the Stored Procedure
‘and populate the result set
Dim Recordset As ADODB.Recordset
Set Recordset = cmd.Execute
Call Sheet1.Range(“A1″).CopyFromRecordset(Recordset)
’Close the connection
conn.Close
End Sub
yes, im a squealer. and im squealing. crazy sql at work. sigh.
Gospel of Luke
Just saw Bruce Kuhn present the Gospel of Luke. It was super funny and super good. Highly entertaining and brought the story back to life.
Chocolate Balls!
Ingredients:
- 250gm packet of Arnotts Milk Arrowroot
- 395gm condensed milk
- 1 cup of coconut
- 1/4 cup of cocoa powder
- 1/2 cup of coconut for rolling balls
what to do:
- mix ingredients together
- roll small balls from mixture
- roll in extra coconut
- stick in the fridge
Ripping CDs sucks
that is all. goodbyeandgoodnight.


