Skip to content
View santoshphegde's full-sized avatar
:octocat:
wip
:octocat:
wip

Block or report santoshphegde

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

    Open Source Software as a Service

  2. db-vcs db-vcs Public

    Database Version Control System

  3. Clone all public Github repos of user Clone all public Github repos of user
    1
    #!/bin/bash
    2
    
    
    3
    for row in $(curl -s 'https://api.github.com/users/sphgd/repos?per_page=200' | jq -r '.[] | select(.private==false) | select(.fork==false) | .html_url'); do
    4
        _clone() {
    5
         git clone $row
  4. kelseyhightower/confd kelseyhightower/confd Public

    Manage local application configuration files using templates and data from etcd or consul

    Go 8.3k 1.4k

  5. Go routine to load http endpoint wit... Go routine to load http endpoint with different ua string
    1
    package main
    2
    
    
    3
    import (
    4
    	"fmt"
    5
    	"net/http"
  6. Download S3 files matching wildcard Download S3 files matching wildcard
    1
    import boto3
    2
    import re
    3
    import os
    4
    
    
    5
    class S3Pull: