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

Block or report manstie

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
manstie/README.md

manstie's github stats

Pinned

  1. vsinder-obfuscated-c vsinder-obfuscated-c Public

    A C program which outputs "Hello, vsinder!"

    C 1

  2. Trim all whitespace Trim all whitespace
    1
    /**
    2
     * Trims https://invisible-characters.com/
    3
     */
    4
    function trimAllWhitespace(string $str): string
    5
    {
  3. Manual search highlighting Manual search highlighting
    1
    search(elements: HTMLElement[], value: string) {
    2
        value = value.toLowerCase();
    3
        for (const el of elements) {
    4
            el
    5
                .querySelectorAll('mark')
  4. Generic Axum Error Handler Generic Axum Error Handler
    1
    use axum::{
    2
        http::StatusCode,
    3
        response::{IntoResponse, Response},
    4
    };
    5
    use std::{fmt, panic::Location};