Skip to content
View snghnishant's full-sized avatar
👨‍💻
Grinding
👨‍💻
Grinding

Highlights

  • Pro

Organizations

@codealgos
Block or Report

Block or report snghnishant

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. Wordly Wordly Public

    A word-finding app powered by Datamuse API. Open for collaboration.

    JavaScript 2

  2. vanillajs vanillajs Public

    Web applications written in HTML, CSS, and Modern JavaScript utilising browser APIs, DOM/BOM Manipulation, JS Requests, and some advance JavaScript concepts.

    CSS 2

  3. Latex Latex Public

    A custom Jekyll single-page theme inspired by LaTeX.css

    HTML 3

  4. Bash script to upload to S3 Bash script to upload to S3
    1
    #!/bin/bash
    2
    BUCKET_NAME="bucket_name_here" # "stratzy-logs"
    3
    FILE_UPLOAD_LOCATION="directory_name_inside_bucket" # "system"
    4
    
                  
    5
    FILE_TO_UPLOAD_LOCATION= "local_directory" #"/home/ec2-user/.pm2/logs/"
  5. Redis Scan Stream Node.js Redis Scan Stream Node.js
    1
    // Redis Client file
    2
    
                  
    3
    // const redis = require("redis");
    4
    // const { REDIS_HOST } = process.env;
    5
    
                  
  6. Express + Redis API Rate limiter Express + Redis API Rate limiter
    1
    const rateLimit = require("express-rate-limit");
    2
    const RateLimitRedis = require("rate-limit-redis");
    3
    const { REDIS_HOST } = process.env;
    4
    const RedisClient = require("ioredis");
    5