Skip to content
View FlameWolf's full-sized avatar

Block or report FlameWolf

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse
FlameWolf/README.md

FlameWolf

Developer with a focus on building reliable APIs and modern web applications.

Skills:
C#, NodeJS, REST API, SQL Server, MongoDB, SolidJS, Angular, HTML, CSS, Vanilla JavaScript

Notable Projects:

I enjoy solving real-world problems with efficient code and clean architecture.

Pinned Loading

  1. quick-pad quick-pad Public

    Vue

  2. quip-api-v2 quip-api-v2 Public

    TypeScript 1

  3. formzilla formzilla Public

    A Fastify plugin to handle multipart/form-data content.

    TypeScript 14 4

  4. jsCrop jsCrop Public

    A simple, plain JavaScript library to crop images.

    JavaScript 2 1

  5. Performance difference between inser... Performance difference between insertAdjacentHTML and appendChild
    1
    ~~`Element.prototype.insertAdjacentHTML` can be up to 4 times slower than `Node.prototype.appendChild`. So use the latter wherever possible for best performance.~~ (See comment from @frankbakulov below!)
  6. Vanilla-JS-equivalent-for-jQuery.rep... Vanilla-JS-equivalent-for-jQuery.replaceWith.js
    1
    Element.prototype.replaceWith = function(html) { this.insertAdjacentHTML("afterend", html); this.remove(); };