spirinolas

joined 2 years ago
[–] spirinolas@lemmy.world 5 points 4 days ago

Is that tariff in this room with us?

[–] spirinolas@lemmy.world 31 points 1 week 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 8 points 1 week ago* (last edited 1 week 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 27 points 2 weeks ago (4 children)

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

[–] spirinolas@lemmy.world 10 points 3 weeks 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 1 month ago

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

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

This is legit because he has a moustache.

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

Dude, she's the one coming on in YOUR dreams uninvited. She's the one obsessing!

[–] spirinolas@lemmy.world 121 points 1 month ago (9 children)

Calling it...Trump declares California to be in rebellion and suspends their votes in the electoral college and congress in the next elections.

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

He was dead the moment he got caught. Nevermind guilty. I don't care how many technicalities or strategies his lawyer might have. There's no way in hell the powers that be will let him have anything other than being made a harsh example for all of us plebs.

This isn't about him commiting the crime of murder. This about scaring us into submission so we don't get any ideas. Even if he's actually innocent because of they don't catch the killer they can't use it as an example, so they need someone.

He's not walking. Get ready for the inevitable. Even if the word of the law is on his side they'll pull something last moment. It's really naive to think they'd ever allow themselves being made a joke by us.

[–] spirinolas@lemmy.world 31 points 1 month ago (2 children)

Dave Chapelle

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

Timex TC2068. It's a Portuguese revision of the Timex TS2068 which is itself a bad ZX Spectrum clone.

collapsed inline media

 

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.

 

Encontrado no IG no grupo de defesa da Palestina da UP:

"Desde outubro de 2023, mês em que começou a ter lugar a vigília diária em solidariedade com o povo palestiniano em frente ao edifício da Câmara Municipal do Porto, com o objetivo de exigir o fim do genocídio perpetrado por Israel contra o povo palestiniano, que as pessoas presentes têm sido alvo de atos de violência física e verbal. Desde então, temos sentido na pele a total impunidade com que operam grupos organizados que tentam aterrorizar e negar os direitos constitucionais de reunião e expressão.

Dia 14 de novembro, mais uma vez, um grupo de quatro homens que se apresentaram como israelitas, de forma completamente descontrolada, exaltada e agressiva, ofenderam e proferiram ameaças de agressão e morte contra as pessoas que participavam pacificamente na vigília, para além de terem orgulhosamente incentivado ao genocídio e à violência contra o povo palestiniano, em mais um crime de ódio racista que, pela sua repetição cada vez mais frequente e pela inércia das autoridades legais, está a tornar-se normalizado e banalizado no espaço público da cidade do Porto.

Estes atos de violência têm-se intensificado, com espaços de tempo cada vez menores entre eles, e no mesmo dia 14 de novembro de 2024 pessoas que portavam símbolos palestinianos (lenços e bandeiras) foram, durante a tarde, atacadas física e verbalmente numa via pública do Porto, tendo uma delas de ser tratada no hospital por lesões oculares resultantes do uso de gás pimenta por parte dos agressores."

 

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 ›