Skip to content

Instantly share code, notes, and snippets.

View gianlucaparadise's full-sized avatar
🙌
Hooray! I'm Helping

gianlucaparadise

🙌
Hooray! I'm Helping
View GitHub Profile
@gianlucaparadise
gianlucaparadise / big-repo-cloner.sh
Last active June 2, 2023 10:21
Big repo cloner - Script to clone a git repository bigger than 1GB
# 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
@gianlucaparadise
gianlucaparadise / ObjectDumper.cs
Created November 11, 2018 22:15
This class is used to create a string description of an object. This can be used in a PCL Project of a Xamarin Solution.
/// <summary>
/// Based on: https://stackoverflow.com/a/42264037/6155481
/// </summary>
public class ObjectDumper
{
public static string Dump(object obj)
{
return new ObjectDumper().DumpObject(obj);
}