Skip to content
View marianz-bonfire's full-sized avatar
Block or Report

Block or report marianz-bonfire

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
marianz-bonfire/README.md
  • 👋 Hi, I’m @marianz-bonfire
  • 👀 I’m interested in ...
  • 🌱 I’m currently learning ...Flutter nd Dart
  • 💞️ I’m looking to collaborate on ...
  • 📫 How to reach me ...

Pinned Loading

  1. Tarsier.ShareScreen Tarsier.ShareScreen Public

    A simple desktop application that can share the screen, application window, and also web camera over the network.

    C# 1

  2. FluentBlazorApp FluentBlazorApp Public

    A simple application that uses *Microsoft Fluent UI Blazor components*.

    HTML

  3. flutter_mqtt flutter_mqtt Public

    Simple example flutter project that uses MQTT package

    C++

  4. C# convert Excel column index into l... C# convert Excel column index into letter
    1
    private static string ColumnIndexToColumnLetter(int columnIndex)
    2
    {
    3
        var index = columnIndex;
    4
        var columnLetter = string.Empty;
    5
        var mod = 0;
  5. Collection of helper function Collection of helper function
    1
    function generateGuid() {
    2
        return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, c => {
    3
            const r = Math.random()*16|0, v = c == 'x' ? r : (r&0x3|0x8);
    4
            return v.toString(16);
    5
        });