Tuesday, November 04, 2014
Send Encrypted Messages That Expire
Monday, October 06, 2008
Submit a Form with Multiple Buttons in Monorail
$Form.FormTag("%{id='myform'}")
$Form.TextField("email")
<button id="addbutton">Add</button>
<button id="removebutton">Remove</button>
$Form.EndFormTag()
<script>
Event.observe(window, 'load', function() {
Event.observe('addbutton', 'click', function() {
$('myform').action = '$Url.For("%{action='addemail'}")';
$('myform').submit();
return false;
});
Event.observe('removebutton', 'click', function() {
$('myform').action = '$Url.For("%{action='removeemail'}")';
$('myform').submit();
return false;
});
});
</script>
I used http://www.manoli.net/csharpformat/ to format the code.
Thursday, June 12, 2008
Generalizing the ELO Rating System for Multiple Players
The ELO system assigns a pool of players various ranks based on their abilities. These ranks can be used to estimate the likelihood for a player to win a given game.
For a given game, each player is assigned an estimated score which is roughly equivalent to the chance that the player has of winning the game. After the game, each player's actual score is compared to his estimated score and his rating will be updated.
There are a series of math equations that govern the system.
Let's start with a two player game, and then generalize from there.
For two players with rankings R1 and R2, the estimated scores E1 and E2 are computed:
Once the game is finished, a scoring function determines each player's actual score Sx. A common scoring function for games such as chess where a player x may win, lose, or tie against another opponent is:
Note that:
Player x's new rating Rx is then calculated:
Now we would like to generalize this system for N number of players with ratings R1, R2, ..., RN-1, RN.
We can make the observation that a game with greater than two players is nearly approximated by a set of games where every player is participating in a two-player game with every other opponent.
The number of games this represents is expressed by:
The estimated score for a player x Ex can then be computed:
Now we would like a scoring function for the result of a game with more than two players. In a game where each player is assigned a place p (e.g. first, second, third) we might choose the following function:
Note that:
Finally, every player's actual score is compared to his estimated score and the ratings updated using equation described earlier.
There are two terms D and K that are in the equations above but they have not been explained yet.
The D term is a number that roughly represents the weight given to a player's rating when determining their estimated score. The superiority of a player over another represented by his superior rating will mean less for higher values for D. That is to say that for higher values of D, the fact that one player has a much higher rating an another is less significant in estimating the outcome of a game. In games where luck more influences the outcome of a game than does skill, a higher value of K is more appropriate.
The K term is a factor that scales the magnitude of the change to a player's rating after a given game. A player's rating after a game will change more for higher values of K. Generally, the value of K should be higher when a player's rating is less certain. This may be because the player has not participated in many games. As players play more games and their rating becomes more representative of their skill level, the value of K should be reduced.
Tuesday, May 13, 2008
Registering MonoRail Extensions Programatically
public void Configure(IMonoRailConfiguration configuration)
{
configuration.ViewEngineConfig.ViewPathRoot = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Views");
configuration.ViewEngineConfig.ViewEngines.Add(new ViewEngineInfo(typeof(NVelocityViewEngine), false));
configuration.ConfigurationSection = new MutableConfiguration("monorail");
configuration.ConfigurationSection.Children.Add(
new MutableConfiguration("exception")
.CreateChild("exceptionHandler")
.Attribute("type", typeof(EmailHandler).AssemblyQualifiedName)
.Attribute("mailTo", "to@email.com")
.Attribute("mailFrom", "from@email.com"));
configuration.ExtensionEntries.Add(
new ExtensionEntry(typeof(ExceptionChainingExtension), new MutableConfiguration("")));
}
This code sets up the EmailHandler that comes with MonoRail.
Monday, November 19, 2007
Comparing Production and Development Schemas
I know this works with SQL Server 2005, but I think it should also work with SQL Server 2000. The idea should work on almost any database system that allows you to query for table and column metadata.
Here's the query I run on the databases:
SELECT table_name, column_name
FROM information_schema.columns
WHERE table_name IN
(
SELECT table_name
FROM information_schema.tables
WHERE table_type = 'BASE TABLE'
)
ORDER BY table_name, column_name
Then, I just take both outputs of this query and stick them into WinMerge to get a schema comparison. I then proceed to update the staging or production database by hand, as is often necessary.
Take note that this query will only return columns that are in base tables, as you probably noticed by taking a look at the where clause. If you want to include the columns of views, just take out the where clause like so:
SELECT table_name, column_name
FROM information_schema.columns
ORDER BY table_name, column_name
Thursday, October 18, 2007
MonoRail Routing Upgrade Coming
Looks like we may be seeing improved routing capabilities in MonoRail soon. Isn't open source grand?
Wednesday, October 17, 2007
Castle MonoRail vs Microsoft MVC
The most talked about features seem to be:
- Routing
- Mockable IHttpRequest/IHttpResponse
- Type-checked views
The routing feature seems pretty nice, but how far is MonoRail from having this feature? I think that MonoRail is missing this feature mainly because it wasn't developed in the era of IIS6.
IIS7 as I understand it gives the web application access to the web request earlier than IIS6, which gives it more control over the routing capabilities. Currently, IIS6 is not really well suited to be able to handle routing requests when there's no file extension on the URL. I imagine that this feature could be added fairly quickly once there's more motivation and more adoption of IIS7.
The mockability of IHttpRequest and IHttpResponse is a pretty nice feature as well, but couldn't MonoRail do this? Scott Guthrie said that they didn't change ASP.NET at all to get this feature.
Couldn't MonoRail wrap the standard HttpResonse and HttpRequest objects with adapters that implement a similar interface? The major hurdle with this seems to be that this wasn't done in the first place, and there's a lot of code out there that would have to change to use the new interfaces.
I have to admit that type-checked views sound enticing. It would be pretty cool to have refactoring operations automatically change things in the views.
But I've lived in a compiled view world and I really don't want to go back. If I have to recompile my project because I changed something in the view I would be pretty annoyed. It's already a huge annoyance to have to wait for the AppDomain to reload when I change something in a controller. I really don't want to wait for it to reload when I change a view as well.
I remember back in my Java/Struts days, I welcomed a switch in our project to Velocity over JSP files. There was a huge increase in productivity and I really didn't miss the type checking at all.
I love being able to submit a patch or jump on the Castle mailinglist to discuss a quick change that would help my own project and have the change implemented within hours or days. Wouldn't you lose that ability if you switched to Microsoft's MVC?
I guess that's a standard issue when deciding between open source and commercial frameworks. I'm really not ready to give that up, and I think that's one of the main reasons I'll be sticking with MonoRail as long as the project remains as active as it is.
Overall, I am pleased with the announcement. It seems that Microsoft is watching what is going on the community and trying to deliver a better platform for developing web applications.
My main point is that MonoRail is already a great platform that's in use by many, it's actively developed, and I'd be surprised if this new platform from Microsoft doesn't push it to greater heights. As always though, I'll be keeping an open mind as things unfold.