Skip to content
View me2resh's full-sized avatar
🐪
🐪
  • London, UK
Block or Report

Block or report me2resh

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
me2resh/README.md

Hello!

I am a software craftsman, tech lead, and relentless pursuer of value and quality.

With over 18 years of engineering experience and a proven track record of designing high-throughput applications, my expertise lies in domain-driven design, cloud-native solutions, event-driven architectures, and serverless architecture design patterns.

I've been writing software professionally since 2004 and leading teams since 2009 at both startups and well-established companies. My recent experience includes working as a Senior Solutions Architect at Zavamed, Systems Architect at TimeDoctor, and Tech Lead/Co-founder at camelCaseTech.

My passion lies in designing solutions and architectures for business domains that make a difference in people's lives and tackle challenging technology problems.

Anurag's GitHub stats

Pinned Loading

  1. How to use lambda provisioned concur... How to use lambda provisioned concurrency in aws sam
    1
    Parameters:
    2
      FnName:
    3
        Type: String
    4
      ProvisionedConcurrency:
    5
        Type: String
  2. How to pre-sign AWS API gateway requ... How to pre-sign AWS API gateway requests invoking lambdas
    1
    <?php
    2
    use Aws\Credentials\Credentials;
    3
    use GuzzleHttp\Psr7\Request;
    4
    use Aws\Signature\SignatureV4;
    5
    use Aws\Sts\StsClient;
  3. SAM Template for creating API Gatewa... SAM Template for creating API Gateway with AWS_IAM authorizer
    1
    AWSTemplateFormatVersion: '2010-09-09'
    2
    Transform: AWS::Serverless-2016-10-31
    3
    Description: >
    4
      
    5
      go-sam-bootstrap
  4. Attach Event to a bucket in a differ... Attach Event to a bucket in a different stack, Sometimes you need to attach an event to a bucket that don't exist in your project stack, You can run this shell script to achieve that
    1
    #!/bin/bash
    2
    
    
    3
    # Get function ARN from stack
    4
    FUNCNAME="MyFunctionName"
    5
    FUNCARN=$(aws cloudformation describe-stacks \
  5. Replace multiple substrings in a str... Replace multiple substrings in a string using reducer
    1
    const originalString = "I would love to eat apple and banana."
    2
    
    
    3
    const wordsMap = {
    4
        'apple' : "mango", 
    5
        'banana' : "grapes",
  6. healthbridgeltd/golang-sam-bootstrap healthbridgeltd/golang-sam-bootstrap Public template

    Cloneable bootstrap for AWS SAM and Golang setup

    Go 15