Category: .NET
-
RSCG – BlazorOcticons
RSCG – BlazorOcticons name BlazorOcticons nuget https://www.nuget.org/packages/BlazorOcticons/ link https://github.com/BlazorOcticons/BlazorOcticons author Evgeniy K. Generates Blazor components for GitHub Octicons SVG icons or from svg. Easily integrate GitHub Octicons into your Blazor applications. This is how you can use BlazorOcticons . The code that you start with is The code that you will use…
-
Blazor Browser History–part 03–implementation
01 Introduction Because I said that I have 2 implementations for same sqlite database (SqliteWasmBlazor and BitBeSql), there will be interfaces . The first one is to save data and retrieve data – a CRUD 02 Interface IBrowserUserHistoryRepositoryDatabase Description: Base interface defining database operations for browser history. This is the core abstraction for data persistence.…
-
Blazor Browser History – part 02 – Database
To store data where the user have been it is not so complicated. However, the part of making querys – I do prefer old SQL . So the choice will be a database that runs into the browser- and Sqlite seems the choice – see https://sqlite.org/wasm/doc/trunk/index.md Now the only thing is to find a provide…
-
Blazor Browser History – part 1 – idea
Working with UI , I remember the old times where there was a MRU . So , why not do one for Blazor ? Especially for Blazor WASM . What should do: 1. See what URL’s have the user have been accessed . Retrieve URL and Page Title . 2. Store this into a browser…
-
RSCG – Imposter
RSCG – Imposter name Imposter nuget https://www.nuget.org/packages/Imposter/ link https://github.com/themidnightgospel/Imposter author Bitchiko Tchelidze Generate classes from interfaces and allows return of mock data. Useful for testing and prototyping. This is how you can use Imposter . The code that you start with is The code that you will use is The code…
-
RSCG – Monify
RSCG – Monify name Monify nuget https://www.nuget.org/packages/Monify/ link https://github.com/MooVC/monify author Paul Martin Generate primitive strongly typed wrapper around a single value object This is how you can use Monify . The code that you start with is The code that you will use is The code that is generated is Code…
-
RSCG – BoolParameterGenerator
RSCG – BoolParameterGenerator name BoolParameterGenerator nuget https://www.nuget.org/packages/BoolParameterGenerator/ link https://github.com/9swampy/BoolEnumGenerator author Justin Buchanan Generate boolean enum types This is how you can use BoolParameterGenerator . The code that you start with is The code that you will use is The code that is generated is Code and pdf at https://ignatandrei.github.io/RSCG_Examples/v2/docs/BoolParameterGenerator
-
Package analyzer and project references upstream and downstream
A project can have other projects as reference – or he can be a referee from another project. Initially , this was the image – to see every relation as a matrix But , I have had a better thought : I can count the upstream and the downstream references – and so I have…
-
Package Analyzer and show major versions differ
One of problems in software with packages is when you have 2 projects that reference the same package – but with 2 versions that differ. But it is often very difficult to understand the path that comes to this . PackageAnalyzer identifies this and generate an image for each package, showing the path : You…
-
Package Analyzer- showing stacks of projects
The package analyzer analyzes a solution and renders a HTML page that shows summary – see https://ignatandrei.github.io/PackageAnalyzer/ The relations between projects could be rendered as a mermaid flowchart – as an example, But … I have encountered another project https://github.com/matzehuels/stacktower – and the rendering is far more interesting. You can have the same output by…