• 0 Posts
  • 46 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.







  • No, they are not. I really suggest you look at an European map. Algeria/Mali are in the center of the map, depending on how much Antarctica is included.

    Maps are normally centered roughly around the region you buy them in. European maps are centered on the 0 meridian, because it fits so nicely while keeping the European countries around the center. The 0 meridian was just defined by the Brits as going through Greenwich.

    The bottom is cut of more, because Antarctica is less interesting than Canada, Greenland and Siberia.











  • 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 🎲();
    }