Skip to content

Instantly share code, notes, and snippets.

View sanjaykumar81's full-sized avatar
🏠
life is like program, code it properly πŸ˜„

sanjay kumar sanjaykumar81

🏠
life is like program, code it properly πŸ˜„
  • India
View GitHub Profile
@sanjaykumar81
sanjaykumar81 / curl.md
Created November 28, 2018 04:31 — forked from btoone/curl.md
A curl tutorial using GitHub's API

Introduction

An introduction to curl using GitHub's API.

The Basics

Makes a basic GET request to the specifed URI

curl https://api.github.com/users/caspyin
@sanjaykumar81
sanjaykumar81 / Git.java
Created November 27, 2018 12:44 — forked from Crydust/Git.java
run git commands from java
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Objects;