Skip to content
View itsprofcjs's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report itsprofcjs

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. cjs-rb cjs-rb Public

    Modern React UI components using bulma

    TypeScript

  2. Rxjs http fetch call with retry and ... Rxjs http fetch call with retry and backoff feature
    1
    import { fromFetch } from 'rxjs/fetch';
    2
    import { catchError, delay, mergeMap, retryWhen, switchMap } from 'rxjs/operators';
    3
    import { from, Observable, of, throwError } from 'rxjs';
    4
    
                  
    5
    const retryWithBackOff = (delayMs: number = 0, maxRetry: number = 0, backOffMs: number = 0) => {
  3. nginx config sample nginx config sample
    1
    server {
    2
        listen                  443 ssl http2;
    3
        listen                  [::]:443 ssl http2;
    4
        server_name             website;
    5
        root                    /srv/sites/website;