Skip to content
View apal21's full-sized avatar
:octocat:
Web development | DevOps
:octocat:
Web development | DevOps

Organizations

@hyperverge @Sink-In

Block or report apal21

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. nextjs-progressbar nextjs-progressbar Public

    A simple Next.js progressbar component using NProgress.

    TypeScript 780 61

  2. SQS-Delayed-Notification SQS-Delayed-Notification Public

    Amazon SQS wrapper for delayed notification that can be used for exponential back off for applications such as custom callbacks or webhooks

    TypeScript 1

  3. Example for blog to show the differe... Example for blog to show the difference between ES5 and ES6 javascript classes using inheritance and prototypes use cases.
    1
    'use strict';
    2
    
                  
    3
    /**
    4
     * Person class.
    5
     *
  4. Vue.js-VueRouter-multiple-subdomains Vue.js-VueRouter-multiple-subdomains Public

    A sample Vue template to use single Vue.js application over multiple domains/subdomains.

    JavaScript 19 8

  5. AWS S3 getObject using async/await AWS S3 getObject using async/await
    1
    const s3 = new AWS.S3(accessparams);
    2
    
                  
    3
    (async () => {
    4
      try {
    5
        const file = await s3
  6. Sample code to assume role and gener... Sample code to assume role and generate temporary credentials using async/await
    1
    const AWS = require('aws-sdk');
    2
    
                  
    3
    const sts = new AWS.STS();
    4
    
                  
    5
    (async () => {