Monday, December 27, 2010

Happy Holidays

Have a safe and fun holiday season!

Thursday, December 23, 2010

Second Email Update Using Gmail

Can you see this?

First Post by Email

Can you see this?

Happy Holidays

Wishing you and your family a safe and happy holiday season!

Sunday, November 21, 2010

Cutting Trees

Today is a good day for cutting trees. All leaves are gone and the weather is perfect.

Tuesday, September 7, 2010

Digg Down

For real.

digg_not_available

Tuesday, August 24, 2010

Visual C# 2010 Step by Step

Won at CapArea.Net Users Group Meeting tonight. :)

visualcsharp2010

Thursday, July 22, 2010

Mindless The

A friend sent this to me.

mindless_the

Saturday, May 22, 2010

Got Engaged

Yup. Saturday 5/22/2010.

Monday, April 26, 2010

Do Not Save ASP Files in UNICODE Format

Issue:

Active Server Pages error 'ASP 0239'

Cannot process file

UNICODE ASP files are not supported.

Root Cause:

File was encoded in UCS-2 Little Endian

Fix:

Encode in ANSI

Friday, April 23, 2010

ADODB.Recordset error '800a0cb3'

Issue:

ADODB.Recordset error '800a0cb3'
Current Recordset does not support bookmarks. This may be a limitation of the provider or of the selected cursortype.

Root cause:

rsSearch.Open Session("varSQL"), objConnection, _
   'adOpenStatic, adLockReadOnly, adCmdText

rsSearch.AbsolutePage = CInt(Session("CurrPageNo"))

Fix: add CursorLocation property

Set rsSearch = Server.CreateObject("ADODB.Recordset")
  with rsSearch
    .CursorLocation = 3 'adUseClient   
    .Open Session("varSQL"), objConnection, _
        adOpenStatic, adLockReadOnly, adCmdText   
end with

rsSearch.AbsolutePage = CInt(Session("CurrPageNo"))

Tuesday, March 2, 2010

pgAdmin PostgreSQL Tools

Needed for Decision Guidance Systems Course.

pgAdminIII

Sunday, January 31, 2010

Spring 2010 Class: Decision Guidance Systems

Increasing number of applications require predicting behavior of a complex system and making decisions to move the system towards desirable outcomes. Examples include finding the best course of action in emergency, deciding on business transactions within a supply chain, making a patient treatment plan for the best prognosis, and deciding on public policies guided by most positive outcomes.

In these applications, predictions and decisions are to be made in the presence of large amounts of dynamically collected data and learned uncertainty models. In many cases, it is also necessary to acquire additional data in order to reduce uncertainty and make better decisions. We call such a system, which supports a closed-loop data acquisition, learning, prediction and decision optimization, a decision-guidance application.

The focus of this research seminar is on studying models, languages, and algorithms toward building a decision-guidance management system (DGMS), which is a productivity tool for fast development of decision-guidance applications in a seamlessly integrated environment.

Significant advances have been made in the areas of operations research, mathematical and constraint programming, machine learning and data mining, and database systems. These advances can all contribute to a DGMS. However, there are no cohesive frameworks, algorithms and systems that unify the models and computational paradigms of all the components. A unified framework in the form of a DGMS, which is the focus of this class, is necessary for decision guidance in complex systems. In addition, the integration of multiple components from different areas in a unified DGMS brings new computational challenges and new optimization opportunities.

Class website: http://classweb.gmu.edu/brodsky/cs795infs797/