Skip to content
View Aberratio's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report Aberratio

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. choose-station choose-station Public

    This application is designed to optimize fueling for drivers based on their preferences and fuel type requirements.

    JavaScript 3

  2. race-betting race-betting Public

    Web-based application for entering bets on races.

    TypeScript

  3. github-finder github-finder Public

    GitHub repositories and users reusable and self-contained autocomplete component, which can fetch matching users and repositories for a given string of characters.

    TypeScript

  4. Play with grid Play with grid
    1
    CSS Grid is a two-dimensional grid-based layout. 
    2
    
    
    3
    # When to use CSS Grid?
    4
    - user interfaces;
    5
    - overall layout on website.
  5. [Sanity.io v2] Sort and filter eleme... [Sanity.io v2] Sort and filter elements in an array of references
    1
    The code allows for arbitrary sorting and filtering of elements in an array of references in Sanity.io. 
    2
    
    
    3
    Supports Sanity.io version v2. 
    4
    
    
    5
    In the example given an array of references for two types, but you can limit it to one type or extend it as desired. 
  6. An example of using quards in React. An example of using quards in React.
    1
    import React from "react";
    2
    import { BlogItem, isLongPostBody } from "./types";
    3
    
    
    4
    const BlogItemPreview = (blogItem: BlogItem) => {
    5
      const { body, author, title } = blogItem;