Bibliographies, citations and dotnet programming
Helping out a friend to get a Matura thesis completed, I stumbled onto the topics of citations and bibliographies. In the end, I wanted to get a handle on bibliographies using dotnet code. ...
Helping out a friend to get a Matura thesis completed, I stumbled onto the topics of citations and bibliographies. In the end, I wanted to get a handle on bibliographies using dotnet code. ...
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. ...
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. ...
Machine learning with ML.NET is documented in a confusing way, in particular when it comes to F#. Some resources I found are: ...
This post shows various ways to handle input using WebSharper. Client side There are two basic approaches: using HTML templates or using Websharper’s HTML. ...
Installing WebSharper I’m developing web applications using WebSharper on macOS Monterey. To install the the templates, use: % dotnet new -i WebSharper.Templates The following templates are installed: ...
WebSharper allows several ways to instatiate HTML, and It took me some thinking to get these terms right: ws-replace ws-hole ws-template ws-template-children Replace Replace the given node with the provided string or list of docs. ...
Websharper Shopping cart I found an interesting article from 2020 by Adam Granizc on the implementation of a WebSharper shopping cart in WebSharper Shopping Cart ...