Skip to content
View anandkunal's full-sized avatar

Block or report anandkunal

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

    Toro is a PHP router for developing RESTful web applications and APIs.

    PHP 1.2k 173

  2. goq goq Public

    A persistent queue implemented in Go.

    Go 29 6

  3. vakuum vakuum Public

    A collection of code snippets and rough ideas - mostly junk. vakuum is Swedish for vacuum.

    Python 4 1

  4. trashie trashie Public

    Monitor the OS X trash from menu bar

    Python 5 2

  5. AWS SigV4 & SES Walkthrough in Go AWS SigV4 & SES Walkthrough in Go
    1
    # AWS SigV4 & SES Walkthrough in Go
    2
    
    
    3
    A few years ago, I helped a non-profit organization build and deploy a series of web applications and micro-services on top of AWS. One of the services was responsible for sending out email notifications to people via AWS SES.
    4
    
    
    5
    Back then, I wrote a really simple program in Go that made direct calls to the AWS API. Instead of using an official library, I read the API specification, learned how to authenticate requests, and implemented a fairly trivial SDK. The code was succinct, readable, and worked perfectly for 3 years without any issues.
  6. Simple reverse proxy in Go. Simple reverse proxy in Go.
    1
    package main
    2
    
    
    3
    import (
    4
      "log"
    5
      "net/http"