Skip to content

Instantly share code, notes, and snippets.

View kakashysen's full-sized avatar
🎯
Focusing

Jose Aponte kakashysen

🎯
Focusing
View GitHub Profile
@kakashysen
kakashysen / git-clean-branches.sh
Last active May 14, 2019 03:19
Clean local branches that was deleted from remote repo
git branch -vv | grep 'origin/.*: gone]' | awk '{print $1}' | xargs git branch -d
@kakashysen
kakashysen / azure-download.java
Created October 9, 2019 06:31
Download files from azure
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
public class Main {