projects:fsharp_workshop
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
projects:fsharp_workshop [2015/04/17 23:03] – mkucia | projects:fsharp_workshop [2015/05/02 12:45] (current) – [hello(x)] mkucia | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== F# workshop ====== | ====== F# workshop ====== | ||
+ | {{: | ||
===== Prerequisites ===== | ===== Prerequisites ===== | ||
* https:// | * https:// | ||
Line 22: | Line 22: | ||
hello | hello | ||
</ | </ | ||
+ | |||
+ | F# (pronounced “F Sharp”) is | ||
+ | |||
+ | <WRAP group> | ||
+ | <WRAP half column box> | ||
+ | * Open Source | ||
+ | * Multi platform | ||
+ | * Modern, rising popularity | ||
+ | * Lazy evaluated | ||
+ | * Reusable | ||
+ | * Concise (See [[http:// | ||
+ | * Strongly typed | ||
+ | * Functional first | ||
+ | * Use functional to write easy to test and understand code | ||
+ | * Use imperative for performance and compatibility | ||
+ | * Use objective for organization and encapsulation | ||
+ | * Compiled | ||
+ | </ | ||
+ | |||
+ | <WRAP half column box> | ||
+ | * Not suitable for real time (unpredictable performance) | ||
+ | * Hard to optimize (Functional languages fundamentally don't model how your computer works) | ||
+ | * Functional first (different thinking process, you will need to re-learn) | ||
+ | </ | ||
+ | </ | ||
+ | programming language for writing simple code to solve complex problems. | ||
<code fsharp> | <code fsharp> | ||
Line 28: | Line 54: | ||
</ | </ | ||
+ | Introducing pipeline operator: | ||
<code fsharp> | <code fsharp> | ||
let hello x = printfn "Hello %s" x | let hello x = printfn "Hello %s" x | ||
" | " | ||
</ | </ | ||
- | '' | + | |
+ | <hidden pipeline operator definition> | ||
+ | How to define | ||
+ | <code fsharp> | ||
+ | let inline (|>) x f = f x | ||
+ | </ | ||
+ | </ | ||
<code fsharp> | <code fsharp> | ||
Line 57: | Line 90: | ||
</ | </ | ||
- | ===== Why? ===== | + | Note that F# uses indentation to indicate block structure. Find out more [[http:// |
- | <WRAP group> | + | ===== Getting data ===== |
- | <WRAP half column box> | + | |
- | Pros: | + | |
- | * Open Source | + | |
- | * Multi platform (Mono, .NET core) | + | |
- | * Modern, rising popularity | + | |
- | * Lazy evaluation | + | |
- | * Reusable | + | |
- | * Reduced code (See [[http:// | + | |
- | * Strongly typed | + | |
- | </ | + | |
- | <WRAP half column box> | + | The following example loads data from webpage and stores it in CSV file. |
- | Cons: | + | |
- | * Not suitable for real time (unpredictable performance) | + | <hidden> |
- | * Functional languages fundamentally don't model how your computer works ⇒ harder to optimize. | + | <code fsarp> |
- | * Different thinking process | + | open System.Net |
- | </WRAP> | + | open System |
- | </WRAP> | + | open System.IO |
+ | |||
+ | let myURL = @" | ||
+ | |||
+ | let fetchUrl callback url = | ||
+ | let req = WebRequest.Create(Uri(url)) | ||
+ | use resp = req.GetResponse() | ||
+ | use stream = resp.GetResponseStream() | ||
+ | use reader = new IO.StreamReader(stream) | ||
+ | callback reader url | ||
+ | |||
+ | let myCallback (reader:IO.StreamReader) url = | ||
+ | let htmlSource = reader.ReadToEnd() | ||
+ | | ||
+ | |||
+ | let getWebpageHTML = fetchUrl myCallback myURL | ||
+ | |||
+ | type FirstOrLast = | ||
+ | | GetFirst | ||
+ | | GetLast | ||
+ | |||
+ | let getDataFromHTML (rawHTML: | ||
+ | let split (split_point: | ||
+ | let array = text.Split([|split_point|], | ||
+ | match firstOrLast with | ||
+ | | GetFirst -> array.First() | ||
+ | | GetLast | ||
+ | rawHTML | ||
+ | |> split @"< | ||
+ | |> split @"</ | ||
+ | |||
+ | let removeAllTags text = | ||
+ | Regex.Replace(text, | ||
+ | |||
+ | let getCSVfromHTML rawHTML = | ||
+ | let mutable | ||
+ | text <- rawHTML | ||
+ | text <- text.Replace(@"</ | ||
+ | text <- text.Replace(@"</ | ||
+ | text <- text.Replace(@"</ | ||
+ | text <- text.Replace(',', | ||
+ | text <- text.Replace(' | ||
+ | text <- removeAllTags text | ||
+ | text | ||
+ | |||
+ | let CSVresult = getCSVfromHTML (getDataFromHTML getWebpageHTML) | ||
+ | CSVresult.Dump() | ||
+ | </code> | ||
+ | </hidden> | ||
+ | > An F# **type provider** is a component that provides types, properties, and methods for use in your program. | ||
+ | > The key to information-rich programming is to eliminate barriers to working with diverse information sources. One significant barrier to including a source of information into a program is the need to represent that information as types, properties, and methods for use in a programming language environment. | ||
+ | > Writing these types manually is very time-consuming and difficult to maintain. A common alternative is to use a code generator which adds files to your project; however, the conventional types of code generation do not integrate well into exploratory modes of programming supported by F# because the generated code must be replaced each time a service reference is adjusted. | ||
===== References ===== | ===== References ===== | ||
* http:// | * http:// |
projects/fsharp_workshop.1429304614.txt.gz · Last modified: 2015/04/17 23:03 by mkucia