Welcome to

Magenic Technologies Community Blog

Sign in | Join | Help

Aaron's Technology Musings

Who let this guy on the podium?

Browse by Tags

All Tags » F#   (RSS)
F# Business Intelligence Case Study - XBox Live Trueskill
Some time ago, I speculated that F# should be the lingua-franca of BI . Well, had I done a little research, I would have found out that people are already doing BI using F#, namely Microsoft. On a recent podcast of The Thirsty Developer (to be published Read More...

by aarone | 6 Comments

Filed under: ,

The Summer F# Tour
This Summer, I am very excited to be doing a couple talks on F# around the midwest. On July 8th, I kick things off in Bloomington Illinois , where I will be covering the overview and the details about not only how to do useful things in F#, but why you Read More...

by aarone | 1 Comments

Filed under:

On Business Intelligence and F#
It is high time that Business Intelligence get the benefits of the language "Cambrian Explosion" and agile revolution. Think about BI for a second. Most of the talk around BI is oriented around tools - a stack that ties together presentation, Read More...

by aarone | 13 Comments

F# Oddities, the § symbol
I was looking for where the § is on my keyboard, as many of the Linq to SQL samples in F# use that in front of the database context variable. Strange enough, was looking on my keyboard for it, with no luck. The key does not exist, at least on my Read More...

by aarone | 6 Comments

Filed under:

ScandalGenerator.com - The F# Based Scandal Generator Website
Normally, I don't post here about "personal" projects, but since I needed a good reason to learn F#, and I am somewhat of a political junkie, I have launched scandalgenerator.com , a website that all the campaigns can use to streamline their Read More...

by aarone | 3 Comments

Filed under:

An F# Political Scandal Generator
Not content to remain silent this political season, as a service to all the campaigns, I am providing some source-code for a "scandal generator" - an automated tool the candidates can use to generate headlines and save needed campaign donation Read More...

by aarone | 4 Comments

Filed under:

F# Samples, Sum and Transform Sum
A couple of simple operations, count and transform sum, for your F# viewing pleasure: #light open System [<STAThread>] do let arrayOfNumbers = [1..500] let rec count list = match list with | h::tail -> (count tail) + 1 | [] -> 0 let rec transform Read More...

by aarone | 0 Comments

Filed under:

Functional Programming is Hard
I am in deep learn mode with F# - as in, going through Syme's Expert F# book and doing everything I can to understand it. As in, rather than doing my normal skimming of material, read it in detail, and "code along" with the examples. My Read More...

by aarone | 1 Comments

Filed under:

Coming to grips with F# and the Future
On an earlier post, I wrote about how in C#, you can do everything you can do in F#. I hate to say this, but I completley missed the point. Functional languages are about a lot of different things, but one of the most interesting to me is removal of side Read More...

by aarone | 3 Comments

Filed under: ,

Powered by Community Server, by Telligent Systems