Skip to content
View monsieur-ricky's full-sized avatar

Block or report monsieur-ricky

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 Loading

  1. ng-credit-card-ui ng-credit-card-ui Public

    A simple Credit Card UI component

    TypeScript 6 1

  2. stoXevo stoXevo Public

    A simple financial asset manager with privacy and simplicity in mind.

    TypeScript 4

  3. stoXscraper stoXscraper Public

    Web API that scrapes the internet for information related to financial assets.

    TypeScript 1

  4. This interceptor intercepts HTTP req... This interceptor intercepts HTTP requests and responses, handles any errors that occur during the process, extracts error messages, and throws them as new errors. It's a generic error handling mechanism that can be extended with custom logic if needed.
    1
    import { HttpErrorResponse, HttpInterceptorFn } from '@angular/common/http';
    2
    import { catchError, throwError } from 'rxjs';
    3
    
                  
    4
    /**
    5
     * Interceptor to handle HTTP errors and display notifications.
  5. Service that provides a clean and re... Service that provides a clean and reusable way to interact with local storage in your Angular application. It ensures type safety for retrieved values and handles potential invalid JSON data.
    1
    import { Injectable, inject } from '@angular/core';
    2
    import { WINDOW } from '@shared/providers';
    3
    
                  
    4
    @Injectable({
    5
      providedIn: 'root'
  6. Angular Authentication Interceptor Angular Authentication Interceptor
    1
    import { HttpInterceptorFn } from '@angular/common/http';
    2
    
                  
    3
    /**
    4
     * Adds an authorization header to requests if a token is present in localStorage.
    5
     *