DotNetShoutout - Stories tagged with F#
7
shouts

"Hello world" F# + WPF | Channel 9 | Maurizio Colucci from tabbles.net

published 16 days, 20 hours, 45 minutes ago posted by TabblesTabbles 17 days, 22 hours, 8 minutes ago
Tuesday, March 02, 2010 3:18:28 PM GMT Monday, March 01, 2010 1:56:09 PM GMT
Tabbles is one of the few commercial products written entirely in F# - and all the GUI is done using WPF, making it pretty unique. This is the first of two posts about getting started with F# + WPF. Enjoy! (more)
category: UX | clicked: 15 | comment | | source: channel9.msdn.com
tags: .NET 3.5 SP1, F#, file tagging, tabbles, virtual file system, WinFS, WPF
6
shouts

Programming user interfaces using F# workflows

published 28 days, 21 hours, 58 minutes ago posted by sonukapoorsonukapoor 30 days, 12 hours, 48 minutes ago
Thursday, February 18, 2010 2:05:33 PM GMT Tuesday, February 16, 2010 11:15:35 PM GMT
F# asynchronous workflows can be used to solve a wide range of programming problems. In this article we'll look how to use asynchronous workflows for elegantly expressing the control flow of interaction with the user. We'll also look at clear functional way for encoding drag&drop-like algorithm. (more)
category: Foundation | clicked: 52 | comment | | source: dotnetslackers.com
tags: C#, F#, workflow
6
shouts

The F# Survival Guide

published 37 days, 1 hour, 34 minutes ago posted by KodefuGuruKodefuGuru 38 days, 11 hours, 42 minutes ago
Wednesday, February 10, 2010 10:29:29 AM GMT Tuesday, February 09, 2010 12:21:37 AM GMT
Welcome to the F# Survival Guide by John Puopolo with Sandy Squires. We wrote this book to introduce mainstream developers to the world of functional programming through the lens of F#, Microsoft's first fully-supported multi-paradigm language. In the spirit of a survival guide, this book covers all of the essential elements of functional programming and the F# language. In this regard, the book i... (more)
category: Foundation | clicked: 43 | comment | | source: www.ctocorner.com
tags: Ebook, F#
1
shouts

Accelerator and F# (IV.): Composing computations with quotations

posted by http://tomaspetricek.pip.verisignlabs.com/http://tomaspetricek.pip.verisignlabs.com/ 66 days, 9 hours, 28 minutes ago
Tuesday, January 12, 2010 2:35:33 AM GMT
In this article series we're talking about the Accelerator project, which can be used from F# to write code that runs in parallel on GPU or multi-core CPU. In this article, we'll look at building complex data-parallel programs with F# quotations, we'll implement blur filter and we'll also discuss architecture and performance. (more)
category: Foundation | clicked: 6 | comment | | source: tomasp.net
tags: Accelerator, calculations, F#, FSharp, GPGPU, meta-programming
7
shouts

Rick Minerich's Development Wonderland : Steepest Ascent Hill Climbing in C# and F#

published 78 days, 21 hours, 50 minutes ago posted by http://radicalreinvention.blogspot.com/http://radicalreinvention.blogspot.com/ 79 days, 20 hours, 42 minutes ago
Wednesday, December 30, 2009 2:13:47 PM GMT Tuesday, December 29, 2009 3:21:31 PM GMT
Recently I’ve been working with some local search techniques and wanted to share my Steepest Ascent Hill Climbing solution. The general idea of Steepest Ascent Hill Climbing is that in each iteration of the hill climbing process you apply a set of transforms to your input data and select the best result via a fitness function.  This result, or the transform which created it, is then the input for your next iteration.  The process stops when no transform in an iteration scored higher than the previous ge... (more)
category: Foundation | clicked: 68 | comment | | source: www.atalasoft.com
tags: algorithms, C#, F#
9
shouts

Mike Chaliy: FsSpec: Introducing yet another Unit Testing/BDD framework for F#

published 80 days, 22 hours, 44 minutes ago posted by http://chaliy.name/http://chaliy.name/ 85 days, 1 hour, 4 minutes ago
Monday, December 28, 2009 1:19:46 PM GMT Thursday, December 24, 2009 10:59:37 AM GMT
Syntax is inspired by RSpec, so specification looks like: do describe "Calculator" [ it "should add two integers" (fun unit -> let res = Calc.Add 2 2 res.should_be_equal_to 4 ); it "should devide two integers" (fun unit -> let res = Calc.Div 2 2 res.should_be_equal_to 1 ); ] (more)
category: Foundation | clicked: 82 | comment | | source: chaliy.name
tags: BDD, F#, Unit Tests
5
shouts

Accelerator and F# (I.): Introduction and calculating PI

posted by http://tomaspetricek.pip.verisignlabs.com/http://tomaspetricek.pip.verisignlabs.com/ 87 days, 22 hours, 33 minutes ago
Monday, December 21, 2009 1:30:46 PM GMT
This article shows how to write F# programs that run in parallel as shader programs on GPU or on multi-core CPU using Microsoft Research Accelerator project. (more)
category: Foundation | clicked: 11 | comment | | source: tomasp.net
tags: Accelerator, F#, multi threading, Parallel Programming
2
shouts

WPF, F# and Utopia: the evolution of the Tabbles GUI (and of the philosophy behind it)

posted by TabblesTabbles 94 days, 8 hours, 55 minutes ago
Tuesday, December 15, 2009 3:08:31 AM GMT
Hello world. this a little illustrated story of how the Tabbles GUI evolved, from paper sketches to the latest version (1.3.9). For those who don't Tabbles GUI is done using WPF and coded in C# while the core logic is written in F# wherever possible (that excluding the GUI and those time when and old API had to be called in C). [...] (more)
category: UX | clicked: 20 | comment | | source: tabbles-dev.blogspot.com
tags: C#, F#, GUI, tabbles, UX, WPF
5
shouts

Are you ready to learn F#? Concepts to be familiar with before learning the F# language

posted by bartczernickibartczernicki 102 days, 9 hours, 48 minutes ago
Monday, December 07, 2009 2:15:29 AM GMT
This article covers the concepts (i.e., immutability, recursion, data structures) a developer should know before starting to learn the new F# functional language. (more)
category: Architecture | clicked: 16 | comment | | source: silverlighthack.com
tags: .NET, F#, FSharp, Functional languages
7
shouts

Lessons learned in porting C# to F# (WPF) - Matt

posted by StevesSteves 123 days, 20 hours, 21 minutes ago
Sunday, November 15, 2009 3:42:45 PM GMT
I encountered a ton of difficulties while porting code from C# to F#. Fortunately / unfortunately, so have many other people. Thankfully they took the time to write about these problems so my solutions were often only a quick search away. Here is a collection of some of the finds that were able to help me in my endeavors. I have done my best to attribute sources, a... (more)
category: Foundation | clicked: 21 | comment | | source: www.mattssoftwareblog.com
tags: C#, F#, WPF
12
shouts

Connecting to SQL Azure Using ADO.NET in F# - Matt

published 123 days, 2 hours, 15 minutes ago posted by StevesSteves 123 days, 20 hours, 26 minutes ago
Monday, November 16, 2009 9:48:51 AM GMT Sunday, November 15, 2009 3:37:58 PM GMT
This is a very straightforward port of SQL Azure code from msdn: open System open System.Collections.Generic open System.Linq open System.Text open System.Data.SqlClient open System.Data // Provide the following information let userName = " (more)
category: Architecture | clicked: 45 | comment | | source: www.mattssoftwareblog.com
tags: ADO.NET, Azure, F#, FSharp, SQL, SQL Azure
11
shouts

Silverlight 3 and F# Support in Visual Studio 2010

published 129 days, 1 hour, 6 minutes ago posted by bartczernickibartczernicki 129 days, 20 hours, 32 minutes ago
Tuesday, November 10, 2009 10:58:11 AM GMT Monday, November 09, 2009 3:31:53 PM GMT
Learn about F# support with Silverlight in Visual Studio 2010. F# Async workflows are used to show a powerful example of declarative multithreading that can be used as a substitute to PLINQ in Silverlight. (more)
category: Silverlight | clicked: 61 | comment | | source: silverlighthack.com
tags: F#, FSharp, Functional languages, Silverlight
8
shouts

completely unique view : Awesome F# - Decision Trees – Part I - Chris Smith

published 135 days, 23 hours, 44 minutes ago posted by HusseyHussey 136 days, 19 hours, 24 minutes ago
Tuesday, November 03, 2009 12:19:23 PM GMT Monday, November 02, 2009 4:39:53 PM GMT
Programming F# is out! Meaning you can, and should, go to the store and pick up a copy today. With Programming F# serving as a solid guide for the F# Language, I’d like to start posting less about languagefeatures and more about applications. That is, what can you do with this awesome language. This is the first blog post in a series titled Awesome F#. These posts will provide advanced, real-world applications of the F# language to do awesome things. This post i... (more)
category: Foundation | clicked: 43 | comment | | source: blogs.msdn.com
tags: F#, Programming
11
shouts

Visual Studio 2010 and .NET Framework 4 Training Course | Learn | Channel 9

published 139 days, 15 hours, 48 minutes ago posted by iftekharahmedamitiftekharahmedamit 140 days, 14 hours, 47 minutes ago
Friday, October 30, 2009 8:16:05 PM GMT Thursday, October 29, 2009 9:16:30 PM GMT
The Visual Studio 2010 and .NET Framework 4 Training Course includes videos and hands-on-labs designed to help you learn how to utilize the Visual Studio 2010 features and a variety of framework technologies including: C# 4.0, Visual Basic 10, F#, Parallel Computing Platform, WCF, WF, WPF, ASP.NET AJAX 4.0, ASP.NET MVC Dynamic Data... (more)
category: Screencast | clicked: 28 | comment | | source: channel9.msdn.com
tags: .NET Framework 4.0, ASP.NET, ASP.NET AJAX 4.0, ASP.NET MVC, C# 4.0, F#, Visual Basic 10, Visual Studio 2010, WCF, WF, WPF
9
shouts

Language Integrated Query Support in the F# Power Pack - Don Syme

published 142 days, 23 hours, 4 minutes ago posted by StevesSteves 143 days, 23 hours, 47 minutes ago
Tuesday, October 27, 2009 12:59:23 PM GMT Monday, October 26, 2009 12:16:42 PM GMT
In this post I thought I would give some simple, up-to-date examples of writing queries using the F# Power Pack and executing them via LINQ. The techniques described here also apply to querying any obejcts that support the IQueryable interface.   My aim here is not to give a complete guide to "doing everything you can do in SQL" or "everything you can do with LINQ and F#". Instead, I just want to bring some of the material you might find on the w... (more)
category: Foundation | clicked: 59 | comment | | source: blogs.msdn.com
tags: F#, FSharp
12
shouts

Silverlight and ViewModel meet F# - Davide Zordan

posted by AndrewAndrew 150 days, 12 hours, 17 minutes ago
Monday, October 19, 2009 11:46:32 PM GMT
Many MVVM implementations are available on the net, personally I love the approach used by Laurent Bugnion in the MVVM Light toolkit and Michael Sync in the Silverlight MVVM toolkit (Jeremiah Morril have posted a great article about this pattern, don’t forget to read it here). All these examples use C#, what about F# for describing ViewModel classes? F# is a very powerful and readable language and permits to perform operations using a small amount of code. Last, but not least, at this time it’s a first ... (more)
category: Silverlight | clicked: 11 | comment | | source: www.davidezordan.net
tags: F#, Silverlight, Silverlight 3, SL, ViewModel
11
shouts

Visual Studio 2010 Beta2 with F# is now available, plus matching F# CTP Update for VS2008 - Don Syme

posted by StevesSteves 150 days, 14 hours, 11 minutes ago
Monday, October 19, 2009 9:53:15 PM GMT
The latest release of F# is now out! This is included in Visual Studio 2010 Beta2 , released today for MSDN Subscribers, and with the matching release of the F# CTP for Visual Studio 2008. The detailed release notes are here, and general download availability of Visual Studio 2010 Beta2 will begin in the next few days.   This is an incremental release, supporting the vision outlined by the F# team, the Microsoft ... (more)
category: Foundation | clicked: 11 | comment | | source: blogs.msdn.com
tags: F#, Visual Studio 2010, visual studio 2010 beta 2, VS 2010, VS2008, VS2008 SP1, VS2010
9
shouts

F# First Class Events – Composing Events Until Others - Matthew Podwysocki - CodeBetter.Com

posted by impaimpa 150 days, 20 hours, 39 minutes ago
Monday, October 19, 2009 3:24:28 PM GMT
After a comment on my last post in regards to First Class Events in F#, I thought I’d revisit them briefly before going back to the Reactive Framework series. In particular, this comment was in regards to implementing the until combinator using F# First Class Events. As part of my hacking during this series, I came across a rather identical solution to the one that was posted, so I thought it’d be worth exploring... (more)
category: Foundation | clicked: 6 | comment | | source: codebetter.com
tags: F#
5
shouts

F# in VS2010 - Somasegar

posted by KluggerKlugger 158 days, 15 hours, 6 minutes ago
Sunday, October 11, 2009 8:57:48 PM GMT
With Visual Studio, we strive to give your organization the tools to tackle a broad range of software problems with the interoperability and efficiency that you need and have come to expect from software based on the .NET Framework.   As part of this, Visual Studio 2010 marks the first release to directly support functional programming through the F# programming language.   F# is a highly productive .NET programming language combining functional programming and object-oriented progra... (more)
category: Foundation | clicked: 6 | comment | | source: blogs.msdn.com
tags: F#, Visual Studio 2010, Visual Studio 2010 Beta 1, VS 2010, VS2010
10
shouts

Functional Programming Fundamentals Video Starts Lecture Series on Channel 9 - Bruce D. Kyle

published 163 days, 23 hours, 14 minutes ago posted by impaimpa 165 days, 1 hour, 35 minutes ago
Tuesday, October 06, 2009 12:50:04 PM GMT Monday, October 05, 2009 10:28:30 AM GMT
A talk on functional programming on Channel 9 begins a series is a new format for Channel 9 called C9 Lectures. A lot of Channel 9 is about a conversation with developer. But this series is entirely focused on education. It;s a series of high quality technical lectures on a single topic; a lecture can span several videos. The functional language purist and high priest of the lambda calculus Dr. Erik Meijer starts off the s... (more)
category: Screencast | clicked: 75 | comment | | source: blogs.msdn.com
tags: Channel 9, F#, Funcational Programming
Previous 1 2 3 4 5 6 7 Next