Bolero hosting Razor page

In this post we investigate how to use Razor pages on the host and Bolero WebAssembly on the client side. The final code can be found on My github - Tutorials - BoleroAppRazor. ...

April 11, 2023 · 4 min · Markus Greiner

Miscellaneous

This is a list of reminders and open questions I still wanted to look at in more detail. CSV conversion Next to FSharp.Data there is CSVHelper. However, it does not support FSharp types intrinsically. A stackoverflow article describes the details. ...

March 18, 2023 · 2 min · Markus Greiner

RESTful API

This contains some thoughts how to implement RESTful APIs. Background tbd Best practices A search for RESTful API best practices reveals many sites: ...

March 15, 2023 · 3 min · Markus Greiner

Github resources

Some of my codes are documented on my Github with description in the readme files. Take a look there. Github Description BoleroApp A simple Bolero app with file upload and data repository using dependency injection StringAlgorithms Some string algorithms in F# to measure string similarity WebAPI A net7.0 based RestAPI in F# DependencyInjection simple attempts at dependency injection in F# MinimalAPI Minimal API with a file upload example BoleroAppRazor Bolero App, but using Razor pages on the server

February 10, 2023 · 1 min · Markus Greiner

Operation research

Operation Research is defined in Wikipedia as Operations research (British English: operational research) … , often shortened to the initialism OR, is a discipline that deals with the development and application of analytical methods to improve decision-making. It is considered to be a subfield of mathematical sciences. ...

December 31, 2022 · 15 min · Markus Greiner

PDF to text conversion

There is once in a while the need to extract pure text from PDF files. This blog shows some attempts to do it with dot, with ruby, and with command line utitilites. ...

December 1, 2022 · 3 min · Markus Greiner

Input file element with Bolero

Bolero is a set of free and open-source libraries and tools to write web applications in F#. With it, you can write fully dynamic client-side web applications from the comfort of a strongly-typed functional language, all with great performance. ...

October 20, 2022 · 2 min · Markus Greiner

Static templating with handlebars, liquid and others

Templating is an proofen method to create static web pages. Typically, you write your html pages and fill in some parameters at page assembly time. Well-known templating languages are Liquid, which is written in ruby and used by Jekyll, and Handlebars, which calls itself minimal templating on steroids. ...

August 29, 2022 · 6 min · Markus Greiner

Bolero Hints

This blog contains some experiences working with Bolero. Bolero is a set of free and open-source libraries and tools to write web applications in F#. With it, you can write fully dynamic client-side web applications from the comfort of a strongly-typed functional language, all with great performance. ...

August 21, 2022 · 6 min · Markus Greiner

Machine Learning with ML.NET

Machine learning with ML.NET is documented in a confusing way, in particular when it comes to F#. Some resources I found are: ...

April 8, 2022 · 4 min · Markus Greiner