Sign in
|
Join
.NET at 9.400 ft above sea level
Programming in Quito, 2.860 m above sea level
This Blog
Home
About
Syndication
RSS
Atom
Comments RSS
Search
Go
Tags
.NET
.NET Framework 4
ADO.NET
ASP.NET
avalon
Biztalk Server 2006
C#
C# 3.0
CLR
CMMI
Community News
Entity Framework
Excel
Expression
F#
Fortran
Functional Programming
Gadget
General Software Development
Haskell
Imagine Cup
infocard
IronPython
Java
LINQ
Linux
Longhorn
Math
Mono
Numerical Analysis
Office
Open source
Oracle
Orcas
ParallexFX
Popfly
Postgresql
Programming Languages
Project Euler
Project Management
Python
Robotics Studio
Ruby
Scrum
Sharepoint
Silverlight
Sql Server 2005
Team System
TechEd 2006
TFS
VB.NET
vista
Visual Basic
Visual Studio
Visual Studio 2005
Visual Studio 2008
Visual Studio 2010
VSTO 2005
wcf
Web Services
wf
WideOpen Web
Windows Forms
Windows Vista
WindowsForms
WinFx
wpf
Navigation
Home
Blogs
Archives
August 2010 (2)
July 2010 (2)
October 2009 (1)
March 2009 (1)
November 2008 (2)
September 2008 (1)
August 2008 (1)
July 2008 (1)
May 2008 (4)
April 2008 (6)
January 2008 (1)
December 2007 (3)
November 2007 (4)
October 2007 (1)
July 2007 (1)
June 2007 (1)
May 2007 (1)
April 2007 (1)
March 2007 (2)
February 2007 (1)
January 2007 (2)
December 2006 (1)
August 2006 (2)
July 2006 (4)
June 2006 (16)
May 2006 (4)
April 2006 (10)
March 2006 (14)
February 2006 (5)
January 2006 (2)
August 2005 (4)
July 2005 (6)
June 2005 (5)
April 2005 (4)
February 2005 (5)
January 2005 (4)
December 2004 (8)
November 2004 (6)
October 2004 (3)
September 2004 (5)
August 2004 (14)
July 2004 (2)
June 2004 (3)
May 2004 (6)
April 2004 (4)
March 2004 (6)
February 2004 (5)
January 2004 (7)
October 2003 (10)
June 2003 (2)
May 2003 (2)
April 2003 (5)
March 2003 (9)
Blogs I (try to) read
Roy Osherove
Scott Guthrie
Neopoleon.com
Places
Logic Studio
MS RDs
CodeSmith
Browse by Tags
All Tags
»
F#
(
RSS
)
.NET
.NET Framework 4
C#
C# 3.0
Entity Framework
Excel
Functional Programming
Haskell
Java
LINQ
Mono
Numerical Analysis
Open source
Orcas
Programming Languages
Project Euler
Python
Visual Studio
Visual Studio 2008
Visual Studio 2010
WideOpen Web
Windows Forms
Sunday, August 08, 2010 11:24 PM
A quick and dirty implementation of Excel NORMINV in F#
A couple of weeks ago I posted an example implementation of Excel NORMINV function in C#, in there I mentioned that what I actually needed was an F# version, but I used C# as an stepping stone moving from the C++ version I originally found. Well, here...
Posted by
Edgar Sánchez
|
2 comment(s)
Filed under:
Functional Programming
,
Numerical Analysis
,
F#
,
Excel
Friday, August 06, 2010 12:23 PM
F#, the ACM, and the SEC
It all started with a twit from @mulambda: “Phil Wadler lists #fsharp as a candidate for SEC regulation spec language: http://tinyurl.com/2edfxka ” I downloaded the, nonetheless, Association for Computer Machinery answer to the Securities and Exchange...
Posted by
Edgar Sánchez
|
4 comment(s)
Filed under:
Java
,
C#
,
Functional Programming
,
Python
,
F#
,
.NET Framework 4
Monday, October 19, 2009 11:31 AM
Visual Studio 2010 and .NET Framework Beta 2 available on Wednesday
This blog has been abandoned for the longest time :-$ but I’ve got great news to try and re-inaugurate it (again): it’s just been announced that beta 2 for Visual Studio 2010 and .NET Framework 4 will be available the day after tomorrow, i.e. on October...
Posted by
Edgar Sánchez
|
1 comment(s)
Filed under:
C#
,
Functional Programming
,
Visual Studio
,
.NET
,
F#
,
Entity Framework
,
.NET Framework 4
,
Visual Studio 2010
Thursday, March 12, 2009 11:57 PM
Distance between adjacent points in F#
Let’s say you are given a list of data points: [7;5;12;8;5] And you are asked to find the distance between every adjacent pair, that is: [(7-5);(5-12);(12-8);(8-5)] = [2;-7;4;3] It turns out that there is an elegant solution to this problem: let rec pairs...
Posted by
Edgar Sánchez
|
7 comment(s)
Filed under:
Functional Programming
,
F#
Monday, November 10, 2008 11:36 PM
Free F# libraries (well, almost)
In what was one of the very last PDC2008 sessions, Luca Bolognese did an encore presentation of F#, instead of trying to tell you what it was all about I invite you to watch the video (Luca is engaging and funny, and the session is so packed with information...
Posted by
Edgar Sánchez
|
1 comment(s)
Filed under:
Functional Programming
,
F#
Thursday, September 18, 2008 10:58 PM
Point distance, imperative vs. functional style
Let’s consider a silly simple algebra problem: given a specific point and a set of several other points, find the closest point in the set to the given point. One C# solution is: 1 static class PointMath ...
Posted by
Edgar Sánchez
|
27 comment(s)
Filed under:
Functional Programming
,
F#
Sunday, August 31, 2008 11:35 PM
The first Visual F# CTP is here!
You leave on vacation for one short week and a lot happens... for example, Don Syme & co. have released the first F# CTP , well on the way (hopefully before this year's end) to put F# on the same level as C#, C++ or VB.NET. As far as I know, this...
Posted by
Edgar Sánchez
|
2 comment(s)
Filed under:
Functional Programming
,
F#
,
Visual Studio 2008
,
Open source
Monday, July 14, 2008 11:25 PM
F# 1.9.4.19 runs out of the box with Mono in Linux
Don Syme just announced a minor update to the F# environment , minor may be but of great interest to a certain community: it so happens that at some point F# stopped working properly in Linux, a workaround was published (and it actually works, but you...
Posted by
Edgar Sánchez
|
4 comment(s)
Filed under:
Functional Programming
,
Mono
,
F#
,
Programming Languages
Tuesday, May 06, 2008 1:40 AM
A cool way to find out whether a number is palindromic
In this blog entry I proposed a solution to Problem 4 at Project Euler , a crucial element of the problem is to find out whether a number is a palindrome (909 is, 809 isn't), a bit out of laziness and a bit in order to reuse existing methods, I decided...
Posted by
Edgar Sánchez
|
4 comment(s)
Filed under:
C#
,
Functional Programming
,
F#
,
C# 3.0
,
Project Euler
Saturday, May 03, 2008 1:26 AM
New version of F# just released
In its way from research language to commercial language, Don Syme just announced that, silently, on May the 1st version 1.9.4.15 of F# was released . This new version incorporates a number of specific enhancements (F# is now basically in stabilization...
Posted by
Edgar Sánchez
|
2 comment(s)
Filed under:
Functional Programming
,
F#
,
Project Euler
More Posts
Next page »