This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Script hosted here: https://gist.github.com/gianlucaparadise/10286e0b1c5409bd1049d67640fb7c03 | |
# A repository bigger than 1 GB can't be cloned normally. | |
# In order to clone it, you need to follow the instructions from: | |
# https://stackoverflow.com/a/53068021/6155481 | |
# To execute: | |
# sh big-repo-cloner.sh <repo_uri> <repo_destination_folder> [<checkout_branch_name>] | |
# repo_uri and repo_destination_folder are mandatory | |
# checkout_branch_name is optional |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// Based on: https://stackoverflow.com/a/42264037/6155481 | |
/// </summary> | |
public class ObjectDumper | |
{ | |
public static string Dump(object obj) | |
{ | |
return new ObjectDumper().DumpObject(obj); | |
} |