Skip Navigation
Anon challenges a fine
  • French guy here: I went to court once because the cop lied and needed tickets for his quota. I had all the proofs. The judge basically told me “I don’t give a fuck, you pay.” It’s useless.

  • Battery electric vehicles lose their spark in Europe as hybrids steal the show
  • What’s a cager? I can’t give up my car because I can’t bike to work, buses go way too fast on the highway which is dangerous and illegal, and I don’t earn enough to buy an EV or to relocate near my job.

    You must understand that poor people can’t live in the EV utopia right now. Car makers will have to sell small and cheap EVs.

  • Why Americans aren’t buying more EVs
  • My car cost 10k€, the equivalent EV is 20k€. Why don’t I buy more EVs? That’s a mystery, let’s call McKinsey to understand why.

    Also let’s double the price of more affordable foreign cars to increase the amount of mystery. Sometimes I wonder if governments do this to make fun of us because it’s so stupid.

  • With GPL, you're programming Freedom. With MIT, you're programming for free.
  • that would limit my own option to make a version of the software and sell it under a more limited license in the future

    Nope. As the author you're free to license your stuff however you want. You can use 10 different licenses for 10 clients if you want. You could write a custom version of your application and give a non-free license to a specific client if you want.

  • Is there a "markup language" to describe a debugging session?

    cross-posted from: https://sh.itjust.works/post/19440902

    > I want to document my debugging sessions in a text file but I don't know if anyone did this before. > > I came up with this kind of "language" that is a mix between Markdown and C++, but I still wonder if something equivalent exists already. > > > // When you click on the button > # [click button] > - A::f() > // - ... other method calls, don't document if you don't need to > > # A::f() > // "..." for "parameters" where you don't need the details > - Stuff::g(...) > - Stuff::h(...) > > // <Class> is a fake template thing to show the possible types of an object > # <SubStuffA | SubStuffB> Stuff::g(...) > - Stuff::g() {} // empty but I use v/=> for virtual call > v/=> SubStuffA::g() > v/=> SubStuffB::g() > > # SubStuffA::g() > > # SubStuffB::g() > > # Stuff::h(...) > > > I document methods in the order of appearance in the code. > > If you have any good idea about a reliable way to document a list of function calls, I'm interested!

    1
    Is there a "markup language" to describe a debugging session?

    I want to document my debugging sessions in a text file but I don't know if anyone did this before.

    I came up with this kind of "language" that is a mix between Markdown and C++, but I still wonder if something equivalent exists already.

    ``` // When you click on the button

    [click button]

    • A::f() // - ... other method calls, don't document if you don't need to

    A::f()

    // "..." for "parameters" where you don't need the details

    • Stuff::g(...)
    • Stuff::h(...)

    // <Class> is a fake template thing to show the possible types of an object

    <SubStuffA | SubStuffB> Stuff::g(...)

    • Stuff::g() {} // empty but I use v/=> for virtual call v/=> SubStuffA::g() v/=> SubStuffB::g()

    SubStuffA::g()

    SubStuffB::g()

    Stuff::h(...)

    ```

    I document methods in the order of appearance in the code.

    If you have any good idea about a reliable way to document a list of function calls, I'm interested!

    10
    InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)BE
    best_username_ever @sh.itjust.works
    Posts 2
    Comments 239