by Michael Roberts | Aug 29, 2010 | NCAA and NFL Football, Pro Cycling, Professional Soccer
I keep telling myself that today (yesterday actually) was a good day (Saturday, August 28th). I mean, the Tampa Bay Buccaneers won a pre-season game. Chelsea beat Stoke City 2-0, and the Phillies beat the Padres to stay in the chase for the payoffs. Plus, the Vuelta a Espana (Tour of Spain) started today too. So, I guess I should be somewhat happy. Not every day that sports go this well all on the same day…
by Michael Roberts | Aug 9, 2010 | NCAA and NFL Football
So I have a few wees before this has to be put out, but here is week 1. I’m not sure I’ll keep track of EXACTLY if I win or lose, but I figured I’d put it down on paper and see what the numbers are at the end of the year. Again, here is week 1. (more…)
by Michael Roberts | Aug 9, 2010 | NCAA and NFL Football
The link is here. I will also post my thoughts on wins/losses for each school in the coming week or so.
by Michael Roberts | Aug 4, 2010 | Technology
In a security review of some Windows machines here at work, I ran across a good article about hacking, which included a video on using several good tools to validate security on your publicly facing windows machines, which require RDP (Remote Desktop / Terminal Services) port to be open.
The video shows you how to us tsgrinder, and several other tools. Check out the video here
by Michael Roberts | Jul 29, 2010 | Technology
During my testing and working on something at work, I found some nice variable display info that can be used when trying to debug/troubleshoot some classic ASP code. Stuff I usually can’t find when I need it. So I’m posting it here.
<TABLE BORDER="1"> <TR><TD><B>Server Variable</B></TD><TD><B>Value</B></TD></TR> <% For Each strKey In Request.form %> <TR> <TD><%= strKey %></TD> <TD><%= Request.form(strKey) %></TD> </TR> <% Next %> </TABLE>
Also,
<TABLE BORDER="1"> <TR><TD><B>Server Variable</B></TD><TD><B>Value</B></TD></TR> <% For Each strKey In Request.ServerVariables %> <TR> <TD><%= strKey %></TD> <TD><%= Request.ServerVariables(strKey) %></TD> </TR> <% Next %> </TABLE>