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

Block or report aschen-builder

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

Pinned

  1. LuvlyClans LuvlyClans Public

    Valheim clans mod

    C# 4 1

  2. luvly-luvs/packer-builder-pi luvly-luvs/packer-builder-pi Public

    Python

  3. Bash script with reboot lock Bash script with reboot lock
    1
    #!/usr/bin/env bash
    2
    # Debug options
    3
    # set -o noexec
    4
    # set -o verbose
    5
    
                  
  4. React 16 `useInterval` Hook with tests React 16 `useInterval` Hook with tests
    1
    import { renderHook } from "@testing-library/react-hooks";
    2
    import useInterval from "./useInterval";
    3
    
                  
    4
    describe("useInterval", () => {
    5
      let callback: jest.Mock;
  5. ModelViewerElement with reducer ModelViewerElement with reducer
    1
    type ModelViewerState = {
    2
      canActivateAr: boolean;
    3
      isLoaded: boolean;
    4
      isError: boolean;
    5
      ref: ModelViewerElement;
  6. Focus Subscription Manager Focus Subscription Manager
    1
    import { fireEvent, render } from "@testing-library/react";
    2
    import React from "react";
    3
    import { FocusSubscriptionManager } from "./FocusSubscriptionManager";
    4
    
                  
    5
    const buildFocusEvent = (type: "focus" | "blur") => new FocusEvent(type);