Skip to content

Piero Bosio Social Web Site Personale Logo Fediverso

Social Forum federato con il resto del mondo. Non contano le istanze, contano le persone

How to report ICE:#Activism #FuckIce #Protect #Community

Uncategorized
1 1 14

Gli ultimi otto messaggi ricevuti dalla Federazione
  • @oblomov Having foo be a class and not a struct would make some things a lot more complicated. If there's no other way, I'd probably prefer to generate automatically the procedures that take struct bar *, invoke the converter explicitly, and then call the hand-written procedures, over doing multiple inheritance.

    @lesley

    read more

  • @ananas You're thinking about something weird.

    I want to do something like this, which, as you can see, is so perfectly cromulent than it compiles and runs:

    #include <stdio.h>
    #include <stdlib.h>

    struct bar {
    int paydirt;
    };

    struct foo {
    int some_field_here;
    struct bar cheap_dirt;

    operator bar &() {
    return cheap_dirt;
    }
    };

    void work_on_paydirt (struct bar &object) {
    printf("Teh paydirt is %i\n", object.paydirt);
    }

    struct foo the_foo;
    struct bar the_bar;

    int main () {
    work_on_paydirt(the_foo);
    work_on_paydirt(the_bar);
    return EXIT_SUCCESS;
    }

    I just want work_on_paydirt, for historic compatibility reasons, to take struct bar * rather than struct bar & as its argument. Logic-wise, maintenance-wise, there's no difference. Even the generated code is exactly the same (modulo the mangled names). But C++ syntax is only happy to let me define an explicit conversion operator for a struct-to-struct-reference, and not for the same struct's pointer to a struct pointer. I'm not trying to do anything exotic here, or type punning or obfuscatory stuff; I just want the translator to implicitly invoke my type converter for a pointer-to-struct type, just like it can for a referenced-struct type.

    read more

  • Hudson Valley vs ICE: no al detention center a Chester
    @anarchia
    Juan è in America da diciotto anni. Viene da Puebla, Messico. Ogni mattina scende dalla collina dove sorge Chester per raggiungere le serre a valle, dove raccoglie i frutti che finiranno sulle tavole di New York City. Tutti lo https://www.rivoluzioneanarchica.it/hudson-valley-vs-ice-no-al-detention-center-a-chester/

    read more

  • Our latest blog post has all the information and updates about the program:

    ➡️ https://www.sovereign.tech/news/2026-fellowship-applications-open

    Spread the word, share this post, and tag each other in the comments. We look forward to receiving your applications!

    (2/2)

    read more

  • A lovely person shared about this company Apipana in when I asked about an internship for a friend.

    Gonna check it out

    read more

  • 🎉 Applications for the Sovereign Tech Fellowship are officially open!

    What’s new? For the first time, community managers, and technical writers can apply alongside open source maintainers until April 6, 2026, to become Fellows.

    The invests directly in the people behind the code, supporting key experts whose work underpins the health and stability of critical components in the ecosystem.

    (1/2)

    read more

  • Helloooo.

    I am looking for companies in Spain or online.

    Ethical, size of 10 to 50, with an uplifiting mission.
    Who want to clarify resources of each member but don't know how to proceed.

    I am proposing one offer for free/pwyw basis to 3 companies in exchange of their feedback, testimonials and possibility to put their name when promoting my services.

    Thank you for caring and sharing.

    You can DM me for more infos.

    Thank youuu

    read more

  • @riley @lesley the only way to avoid explicit casts is inheritance. Can you make foo inherit from both whatever you want it to inherit from AND bar? Or is multiple inheritance a no-no in your project?

    read more
Post suggeriti