I did nothing and I’m all out of ideas!

  • 0 Posts
  • 33 Comments
Joined 2 years ago
cake
Cake day: June 11th, 2023

help-circle

  • Giorgia Meloni is trying to position herself as a mediator between America and Europe, which honestly I think is a fool’s errand, but it is in line with her Atlanticist foreign policy.
    I would have personally preferred a real, firm, statement towards Ukraine’s support but until we’ll have people like Salvini - a Putin’s lover - and his ‘Lega Nord’ party in the government it is infeasible to expect it.

    At the same time FdI (Meloni’s party) has historically been pretty pro-ukraine, so I will be very surprised if something is not going to happen in the next few days.

    Remember that this quote is from Crosetto, the current Minister of Defence, just a few days ago: “Peace, however, must not mean humiliating a free people who have done nothing but die and sacrifice to defend themselves.”

    I’m not in line with their national policies - by a wide margin - but currently Meloni’s party and the Partito Democratico are the only pro-ukraine voices in Italian politics with some weight

    It’s depressing.



  • This was all theatre where nothing in reality changed, to show how tough and intransigent this admin wants to be: the real problem is that if formally and informally allied nations start to think that the USA would really commit to bullying as a real negotiation tactic, they will start to divest from it and expand their pool of partners to make these tactics less impactful.

    This could be disastrous in the long run, with decades of integration and diplomacy going in smoke. But in the short term there will be a lot of “winning”, as they keep saying. I guess.

    The first Trump term was seen as a short term derailing. The second one has a complete different international impact.

    Goodwill is a real diplomatic form of currency and it is getting burned at a real fast pace.




  • Nice data, but I think we should take a broader view too:

    https://data.worldbank.org/indicator/NY.GDP.MKTP.CD?end=2023&locations=RU-IN&start=2019

    I semi randomly picked India because it is part of BRICS and had a similar economic trajectory: It is quite interesting playing with all those nobs and labels.

    In this context I think PPP - which you showed - is a good indicator of the internal quality of living, but as far as I understand it, it has an hard time showing the difference in quality and standards of the consumer products between countries, so a dip in nominal GDP is an interesting context with the PPP adjusted rise. Less expensive things, because they are less regulated?

    Aside from that Russia has almost completely pivoted to a war economy which, as far as I know, tends to give a big initial boost but it stresses and makes the real (for lack of a better term) economy crash in the long run.

    What do you think about this? It is an interesting topic.


  • I was reading @superkret@feddit.org and @MaggiWuerze@feddit.org exchange and I found it an interesting - albeit moot - topic. So I went and spent the last hour to download some data and filter it: I will post some numbers with no commentary. I will add my opinions after them in a spoiler.

    imf.org GDP, current prices, Billion of U.S. dollars

    2023 GDP Nominal
    NATO 52392,344
    BRICS 27330,345

    2024 GDP Nominal (estimates)
    NATO 55148,819
    BRICS 28442,630


    imf.org GDP, current prices, Purchasing power parity; billions of international dollars

    2023 GDP PPP
    NATO 63996,245
    BRICS 66010,889

    2024 GDP PPP (estimates)
    NATO 66812,821
    BRICS 70911,69


    imf.org GDP based on PPP, share of world

    2023 GDP PPPSH
    NATO 34,731
    BRICS 35,824

    2024 GDP PPPSH (estimates)
    NATO 34,339
    BRICS 36,446


    BRICS

    Brazil, People’s Republic of China, Egypt, Ethiopia, India, Iran, Russian Federation, South Africa, United Arab Emirates


    NATO

    Albania, Belgium, Bulgaria, Canada, Croatia, Czech Republic, Denmark, Estonia, Finland, France, Germany, Greece, Hungary, Iceland, Italy, Latvia, Lithuania, Luxembourg, Montenegro, Netherlands, North Macedonia, Norway, Poland, Portugal, Romania, Slovak Republic, Slovenia, Spain, Sweden, Republic of Türkiye, United Kingdom, United States

    MHO

    This comparison makes no sense for a multitude of reasons, starting from the difference in effective cohesion, motivation and raison d’être of the two organizations.

    Even if there were multiple tries, especially by Russia, to push for more integration in the economic and military structure, you can see how it is still incredibly fractured: if you are interested you can check on the current state of the SWIFT alternatives to see how much each of the big players still pull to be the leader.

    A more apt loose organization to compare BRICS to would probably be the G7, but even there it really is not the same, considering the member list and how integrated they are in other ways. Still, a better one.

    Aside from that the PPP is often touted as a great way to compare completely different economies, and it has its uses to understand how people live in different countries. Its use in a comparison like this one has, IMHO, no space.

    If someone comes to me with a one Billion random-currency investment, even if for them it only buys a loaf of bread but for me it means a new factory and 100 full-time employees, if they withdraw it it is a disaster.
    Then again GDP is not even the parameter we should be looking into, considering the article: We should check the international trade between China and the European Union, and make consideration about that.

    Last, but not least, I used the IMF numbers because they are easy to get in a nice format. They are not the best, but they are not the worst too. More info here, have fun.



  • This is getting weird.

    If I would generate an image with an AI and then take a photo of it, I could copyright the photo, even if the underlying art is not copyrightable, just like the leaves?

    So, in an hypothetical way, I could hold a copyright on the photo of the image, but not on the image itself.

    So if someone would find the model, seed, inference engine and prompt they could theoretically redo the image and use it, but until then they would be unable to use my photo for it?

    So I would have a copyright to it through obscurity, trying to make it unfeasible to replicate?

    This does sound bananas, which - to be fair - is pretty in line with my general impression of copyright laws.



  • While she has not been named in the police statement about the arrest, it is believed to be Bonnie Spofforth

    This, I don’t like. If you - the newspaper, the means of information - are not sure about a name you should really refrain from using it.

    It would be not the first time people get their lives ruined by some careless journalist because of a namesake or just an error.

    It’s not that different from “spreading rumors”.

    That aside, in this case, it is probably a rumor from an inside source. Still. Not a fan.




  • disable this system security feature temporarily,

    This should be - if I’m not mistaken - possible using the pip env var I posted about earlier, like this:

    PIP_BREAK_SYSTEM_PACKAGES=1 sudo apt install howdy

    Or exporting it for the current shell, before running the installation

    export PIP_BREAK_SYSTEM_PACKAGES=1

    But I personally highly discourage it, because - AFAIK - if it even works it will mess up the deps in your system.


  • I’m no python expert but reading around it seems your only real solution is using a virtual environment, through pipx or venv as you already had found out, or using the

    --break-system-packages
    
    * Allow pip to modify an EXTERNALLY-MANAGED Python installation
    
      (environment variable: `PIP_BREAK_SYSTEM_PACKAGES`)
    

    pip flag which, as the name suggest, should be avoided.

    EDIT: After rereading I got your problem better and I was trying to read the source for Howdy to see how to do it, so far no luck.