• 0 Posts
  • 67 Comments
Joined 1 year ago
cake
Cake day: June 23rd, 2024

help-circle




  • Git was Made for the Linux kernel. The kernel is pretty much only text files. For the complete decentralisation git achieves an easy diffing and merging operations needs to be defined. It is working for what it was made.

    Large files don’t work with git, as it always stores the whole history on your drive.

    For files that are large and not mergeable SVN works better and that is fine. You need constant online connectivity as a trade of though.

    Some build tools for software being the option to define a dependency as a git path +commit or a local path. That works quite well but is in the end just a workaround.












  • I got something better for you.

    namespace 🔵 = std;
    using 🔢 = int;
    using 💀 = void;
    using 🕖 = time_t;
    using 👌 = bool;
    #define 👂 auto
    #define 🎌 enum
    #define 👎 false
    #define 👍 true
    #define 👹 "evil"
    #define 💪 🔵::make_shared
    #define 🍸 virtual
    #define 🖥️ 🔵::cout
    #define 🔫 🔵::endl
    template<class 🔮>
    using 📚 = 🔵::vector<🔮>;
    template<class 🔮>
    using 👇 = 🔵::shared_ptr<🔮>;
    
    🎌 🐒 { 🐵, 🙈, 🙉, 🙊 };
    🔢 🎲() { return 🔵::rand(); }
    👌 😎() { return 👎; }
    
    struct 🍴 { 🍸 💀 👀() = 0; };
    struct 🍊 : 🍴 { 🍸 💀 👀() { 🖥️ << "🍊" << 🔫; }; };
    struct 🍉 : 🍴 { 🍸 💀 👀() { 🖥️ << "🍉" << 🔫; }; };
    struct 🍒 : 🍴 { 🍸 💀 👀() { 🖥️ << "🍉" << 🔫; }; };
    struct 🍓 : 🍴 { 🍸 💀 👀() { 🖥️ << "🍓" << 🔫; }; };
    struct 🍍 : 🍴 { 🍸 💀 👀() { 🖥️ << "🍍" << 🔫; }; };
    struct 🍅 : 🍴 { 🍸 💀 👀() { 🖥️ << "🍅" << 🔫; }; };
    
    🔢 main()
    {
        if(😎() == 👎)
            🖥️ << "💩" << 🔫;
    
        📚<👇<🍴>> 🍛 = { 💪<🍊>(), 💪<🍉>(), 💪<🍒>(), 💪<🍍>(), 💪<🍅>() };
     
        for (👂 🍏 : 🍛)
            🍏->👀();
    
        return 🎲();
    }