Skip to content
View arvsr1988's full-sized avatar
  • Chennai
Block or Report

Block or report arvsr1988

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. node-js-webapp-starter node-js-webapp-starter Public

    A starter kit for a nodejs webapp based on express js, handlebars, webpack and babel. See the demo.

    JavaScript 4 1

  2. snail-mail snail-mail Public

    Bringing back personalisation to bulk emails through a web application that allows you to personalise emails. Emails can be sent from any gmail/google app account or your own smtp mail server. Live…

    JavaScript 5 2

  3. terraform-aws-cloudfront-waf-secretsmanager terraform-aws-cloudfront-waf-secretsmanager Public

    Forked from aws-samples/amazon-cloudfront-waf-secretsmanager

    Enhance Amazon CloudFront Origin Security with AWS WAF and AWS Secrets Manager

    Python 2

  4. openpy_excel_export_auto_adjust.py openpy_excel_export_auto_adjust.py
    1
    #auto adjusting column width of cells for openpyxl 3.0
    2
    
                  
    3
    for column_cells in ws.columns: 
    4
      unmerged_cells = list(filter(lambda cell_to_check: cell_to_check.coordinate not in ws.merged_cells, column_cells)) 
    5
      length = max(len(str(cell.value)) for cell in unmerged_cells) 
  5. deploying a node app using a CI syst... deploying a node app using a CI system to a new directory.
    1
    #bin/bash
    2
    CURRENT_DATE=`date +%s`
    3
    echo "current date is $CURRENT_DATE"
    4
    DEPLOYMENT_DIR='{deployment directory}'
    5
    CURRENT_DEPLOYMENT_DIR=$DEPLOYMENT_DIR$CURRENT_DATE