spirinolas

joined 2 years ago
[–] spirinolas@lemmy.world 4 points 1 week ago (1 children)

That's what redundancy is for.

[–] spirinolas@lemmy.world 16 points 2 weeks ago* (last edited 2 weeks ago)

Pretty much this. The moment they actual reach end-game they'll tear themselves apart. Fascism requires an enemy to survive. If there's none available, they'll turn inwards and cannibalize.

[–] spirinolas@lemmy.world 19 points 2 weeks ago* (last edited 2 weeks ago) (5 children)

This scares the shit out of me. A hundred years ago we saw the rise of fascism. We saw freedom of expression being suppressed. But we had one thing going for us, which is the weakness of every dictatorship. The snitches are not enough and they can't be everywhere. You never know when they can be listening and chances are most times they aren't.

Now we are seeing the birth of a new fascism. Where AI can monitor ALL of us, ALL THE TIME. Not just our prompts. Everything. Everybody experienced talking about something with a friend and a few minutes later you are receiving ads about that thing, which you never searched before. Now imagine you are being monitored all the time for any kind of subsersive opinions. You won't have a window to fight. The moment you give the smallest hint of dissent, you are efficiently removed from society.

And forget just leaving smartphones. More and more all our services are associated with it. Very soon you won't be able to function in society without it.

AI won't rule us. AI will be the ultimate tool to help other humans rule us and fighting back will be almost impossible. I feel this isn't being talked enough and how eminent it is.

[–] spirinolas@lemmy.world 3 points 1 month ago

Washing machine producers hate them.

[–] spirinolas@lemmy.world 14 points 1 month ago (3 children)

Germany sure loves them genocides. It seems they are always on the side of one.

[–] spirinolas@lemmy.world 3 points 2 months ago

I'm about 500 meters from the place where the hospital I was born stood (the building still exists, but it's something else now).

I grew up in this city since my parents moved here before I was born. I also lived here half of my adult life and I'm thinking of leaving.

I have no emotional connection with this city. My family is from a different region of the country and we have a very different culture. My heart is with my parents hometown and I always identify myself with the region autonym.

[–] spirinolas@lemmy.world 5 points 2 months ago

Is that tariff in this room with us?

[–] spirinolas@lemmy.world 33 points 2 months ago

Saying the IDF are murderers is not antisemitism it's the truth. Equating the IDF with all Jews is antisemitism. So who's the antisemite here?

[–] spirinolas@lemmy.world 9 points 2 months ago* (last edited 2 months ago)

Portugal

If it doesn't require immediate attention I call my health center. I can get an appointment with my family pshysician in a few days or, if it's more urgent, some other doctor will see me the same day but I'll have to wait there until one is free (can go anywhere between 15mn and 2 hours). I'm lucky though, some health centers suck really bad. The ones in big cities are generally better.

If it's more urgent I call the national health line and they'll A: tell me how to treat it myself B: set up an appointment in my health center (or another if mine is not available) C: send me straight to the closest emergency room.

Wait times in the emergency room depend on the gravity and the hospital. My hospital sucks. Low priority you'll spend there the whole day, easy. 10+ hours. Medium priority you'll wait 4 or 5 hours. High priority about an hour, maybe two. Very high priority (head falling off) you go right in. In good hospitals those times are much lower. In the major city I used to live I never waited more than 2 hours for any priority. I also had surgery there and it was great.

Never paid a cent, I think it goes without saying.

[–] spirinolas@lemmy.world 28 points 2 months ago (4 children)

I had sex with a girl way out of my league. Usually I fuck down.

[–] spirinolas@lemmy.world 10 points 2 months ago

America: Come on, you're pulling that one out of nowhere. That can't be the reason, we bomb people all the time!

[–] spirinolas@lemmy.world 7 points 3 months ago

No problem, how much is "everything" in USD?

 

I've tried GetHomepage and while I've configured most of it I've had a few troubles due to the instructions being very incomplete and confusing.

The one problem that eluded me was setting paperlessngx widget. Worth nothing that, unlike the other services, paperlessngx is running on docker-compose on my server. While the widget detects the service, it never gets any information

Eventually it just gives an API error

# services.yaml (just the relevant part)
   
     - Paperless-ngx:
        href: http://<myserverhost:port>
        description: Document Management System
        icon: https://static-00.iconduck.com/assets.00/paperless-icon-426x512-eoik3emb.png
        server: paperless
        widget:
          type: paperlessngx
          url: http://<local-ip:port>
          token: <token-configured-inside-paperless>


    #docker.yaml

    paperless:
      host: <local-ip>
      port: <port>    

I'm out of ideas. Unfortunately the only instructions are on the site and they aren't easy to follow if you're not already familiarized with docker.

 

When I'm uploading a show to my server, or setting the subtitles or whatever, I'd like to have the show disabled and invisible to everyone until I have everything uploaded and set up at 100%. Is there a way to do this?

 

I developed an app in Laravel that uses Google authentication, it works perfectly on my localhost. When I deployed it in my nginx server (ubuntu 24.04) I get the Google login correctly and it proceeds to my main page as expected. But after that, no route is accessible. All of them throw me a 404. I've been googling it for ages but I can't for the life of me find the solution for this.

EDIT: The 404 comes from Laravel, not nginx. The weird part is if I try php artisan route:list on the ser the routes are indeed missing but on the localhost they all show. The code is pretty much the same.

Here's is my app conf file:

server {
    server_name partituras-cmcgb.duckdns.org;
    root /var/www/html/partviewer/public;

    index index.php index.html index.htm;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/var/run/php/php8.3-fpm.sock;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }

    location ~ /\.ht {
        deny all;
    }

    error_log /var/log/nginx/partviewer-error.log;
    access_log /var/log/nginx/partviewer-access.log;

    listen 443 ssl; # managed by Certbot
    ssl_certificate /etc/letsencrypt/live/partituras-cmcgb.duckdns.org/fullchain.pem; # managed by Certbot
    ssl_certificate_key /etc/letsencrypt/live/partituras-cmcgb.duckdns.org/privkey.pem; # managed by Certbot
    include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
    ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot

}
server {
    if ($host = partituras-cmcgb.duckdns.org) {
        return 301 https://$host$request_uri;
    } # managed by Certbot


    listen 80;
    server_name partituras-cmcgb.duckdns.org;
    return 404; # managed by Certbot


}
view more: next ›