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

Ogni volta che non c'è consenso da parte di una donna, c'è violenza.

Uncategorized
1 1 0

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • 0 Votes
    2 Posts
    0 Views
    @jerzone we have had rain and melting temps for a week now. Trails are gone, just slush. Waiting for freezing temps so I can go and ride anywhere and everywhere.
  • Proprietà transitiva

    Uncategorized
    1
    0 Votes
    1 Posts
    0 Views
    Proprietà transitiva?Chi decide la politica estera americana? E chi decide la politica estera dei paesi europei vassalli degli USA?@Nico_Piro@mastodon.uno https://nicopiro.substack.com/p/iran-giorno-4-ha-deciso-israele
  • 0 Votes
    1 Posts
    0 Views
    #Sheffield #coffee deliveries on the #cargobike done. Another #puncture though (4th one this year). 46km in about three hours https://www.strava.com/activities/17587682570 which isn't much slower than what the car would have been.Haven't recorded all the rides this year as there hasn't been many (fair weather cyclists) but an estimate including this one compared to a small sized petrol car is 64kg of #CO2 avoided by travelling by bike (using https://co2.myclimate.org calculator)Over the year it's usually over a tonne of CO2 (ie 1000kg) saved. Imagine if we built for #bikes instead of cars and how much cleaner the air would be if a few more of us felt safe cycling.
  • Hello #cpp / #cplusplus Fediverse,

    Uncategorized cpp cplusplus
    5
    0 Votes
    5 Posts
    2 Views
    @lesley yes, but in the case of @riley that's not the same issue: if foo has-a bar, there's no way to do the casting _implicitly_, as far as a I know. It would be possible with references by defining an implicit constructor of bar from foo, but this won't be applied to pointers.The only work around I can think of is to define an overloaded function bar * get_bar(bar * o) { return o; }bar * get_bar(foo * o) { return &o->bar_element; }and wrap pointer arguments with that function.