Skip to content

Instantly share code, notes, and snippets.

View Thorium's full-sized avatar

Tuomas Hietanen Thorium

View GitHub Profile
@Thorium
Thorium / rss.fs
Last active September 10, 2016 13:54
Generate RSS feed from a list of F# record items using Linq2Xml. To use e.g. to generate feeds from your web server.
#if INTERACTIVE
#r "System.Xml.Linq.dll"
#else
module Rss
#endif
open System
open System.Xml.Linq
type NewsItem = {
@Thorium
Thorium / ecb.fs
Created June 7, 2016 09:55
Fetch EUR based currency rates of the day and parse currency conversion rates from European Central Bank
#if INTERACTIVE
#r "System.Xml.dll"
#r "System.Xml.Linq.dll"
#endif
open System
open System.Net
open System.IO
open System.Xml.Linq
@Thorium
Thorium / Rijndael.fsx
Created May 25, 2016 09:06
Encrypting a Rijndael string, counter part for https://gist.github.com/Thorium/1972253
open System
open System.IO
open System.Security.Cryptography
open System.Text
open System.Diagnostics.Contracts
let EncryptStringWith (plain:string) (key:string) (iv:string) =
let enc = new ASCIIEncoding()
use encrypted = new MemoryStream()
use encode = new ToBase64Transform()
@Thorium
Thorium / post.fs
Created May 20, 2016 11:58
Send async HTTP POST request
open System.Net
open System.IO
let makePostRequest (url : string) (requestBody : string) =
let req = WebRequest.CreateHttp url
req.CookieContainer <- new CookieContainer()
req.Method <- "POST"
req.ProtocolVersion <- HttpVersion.Version10
let postBytes = requestBody |> System.Text.Encoding.ASCII.GetBytes
req.ContentLength <- postBytes.LongLength
@Thorium
Thorium / transactions.fs
Created May 20, 2016 10:46
Way to wrap methods to transactions
// 1) Create TransactionScope, on Mono and in .NET, and the later one supports TransactionScopeAsyncFlowOption.
// 2) Then, complete the transaction automatically if no exceptions has been thrown.
// If Async or Task, then automatically await the result before complete without blocking the thread.
#if INTERACTIVE
#r "System.Transactions.dll"
#endif
open System
open System.Threading
open System.Threading.Tasks
@Thorium
Thorium / MemoizeWithTimeout.fs
Created May 3, 2016 12:04
This is variant of https://gist.github.com/Thorium/df46659348b0e2146cf6 that is having a time-out. You may want to use this if you e.g. cache a database query result or other mutable data source.
open System
open System.Collections.Concurrent
let cache = ConcurrentDictionary<(string * obj),Lazy<obj>>()
let cacheTimes = ConcurrentDictionary<string,DateTime>()
let cacheTimeSeconds = 30.
let memoizeConcurrent (caller:string) (f: ('a -> 'b)) = fun x ->
match cacheTimes.TryGetValue caller with
| true, time when time < DateTime.UtcNow.AddSeconds(-cacheTimeSeconds)
-> cache.TryRemove((caller, x|>box)) |> ignore
| _ -> ()
@Thorium
Thorium / gist:eef69eb53cb6cb7746d985119228a787
Created April 13, 2016 15:02
Calculate distance between two GPS latitude-longitude points.
open System
let ``calculate distance`` (p1Latitude,p1Longitude) (p2Latitude,p2Longitude) =
let r = 6371.0; // km
let dLat = (p2Latitude - p1Latitude) * Math.PI / 180.0
let dLon = (p2Longitude - p1Longitude) * Math.PI / 180.0
let lat1 = p1Latitude * Math.PI / 180.0
let lat2 = p2Latitude * Math.PI / 180.0
let a = Math.Sin(dLat/2.0) * Math.Sin(dLat/2.0) +
@Thorium
Thorium / gist:17184252d0284b78b63ef65e692d670b
Created April 13, 2016 14:57
Get local IPv4-address of the computer
open System;
open System.Net;
open System.Net.NetworkInformation;
let GetLocalIpv4Address() =
let interfaces = NetworkInterface.GetAllNetworkInterfaces()
let unicastAddresses =
interfaces |> Seq.map (fun i -> i.GetIPProperties().UnicastAddresses) |> Seq.concat |> Seq.toList
let item =
unicastAddresses |> Seq.find (fun a -> a.IPv4Mask.ToString() <> "0.0.0.0" && a.IPv4Mask.ToString() <> "255.0.0.0")
@Thorium
Thorium / phpmd5.fs
Created April 13, 2016 14:46
Calculate MD5 hash that can be used when interacting with a PHP-website. Note: MD5 has been cracked and shouldn't be used in new systems.
let phpMd5 (dataToHash:string) =
use md5 = new System.Security.Cryptography.MD5CryptoServiceProvider();
let encodedBytes = dataToHash |> System.Text.ASCIIEncoding.Default.GetBytes |> md5.ComputeHash
System.Text.RegularExpressions.Regex.Replace(System.BitConverter.ToString(encodedBytes), "-", "").ToLower()
@Thorium
Thorium / server.fs
Created April 8, 2016 18:05
Simple OWIN Self-Host web-server with static files support and request deflate/gzip compression.
// Nuget packages: Owin, Microsoft.Owin, Microsoft.Owin.Hosting, Microsoft.Owin.Host.HttpListener, Owin.Compression, Microsoft.Owin.StaticFiles, Microsoft.Owin.FileSystems
#if INTERACTIVE
#I @"./packages/Owin/lib/net40"
#I @"./packages/Owin.Compression/lib/net45"
#I @"./packages/Microsoft.Owin/lib/net45"
#I @"./packages/Microsoft.Owin.Hosting/lib/net45"
#I @"./packages/Microsoft.Owin.Host.HttpListener/lib/net45"
#I @"./packages/Microsoft.Owin.StaticFiles/lib/net45"
#I @"./packages/Microsoft.Owin.FileSystems/lib/net45"