spirinolas

joined 2 years ago
[–] spirinolas@lemmy.world 18 points 1 day ago* (last edited 1 day ago) (1 children)

"He easily deserves a B but he could get an A if he applied himself. I'll just give him a C so he tries harder"

  • gets a D *

"It's no use, I push him as far as I could"

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

Is that tariff in this room with us?

[–] spirinolas@lemmy.world 33 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 9 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 5 points 1 week ago* (last edited 1 week ago)

I hear you. I have 3 machines: my main rig, a light laptop and a server. The main rig is on Windows 10 LTSC and the server is on Linux (goes without saying).

When I bought the laptop I decided to use it only with Linux as a way to squeeze it's resources but also as a way to figure it how realistic it would be to use Linux exclusively. After starting on Mint and hopping to Arch I ended up on Debian and I'm quite satisfied with it. But I also realized it would never work on my main rig. Lots of stuff and software would just not work the same way. Would it be usable, yes. But it would be mostly workarounds instead of the perfect setup I have built.

Linux will definitely get there. It's improving fast. But telling people that don't know better to just switch only to find out half of what they did will now have to be done with workarounds and hassles is dishonest and does not help Linux at all. When Linux is perfect those people will already be burned and resist it needlessly.

[–] spirinolas@lemmy.world 28 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 2 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 125 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 8 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.

 

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


}
 

I've known Jack for a couple of years. He's kind of a loner but we always got along as we both have some geeky interests. We're both introverts but I'm somewhat more social.

My girlfriend is also an introvert and when I introduced them, years ago, it was awkward at first but they got along pretty well. We hang out occasionally the three of us.

Mostly we talk in a Facebook group, and I talk to him in private messages. A few times, when he went through a family problem, I knew (from my girlfriend) that he vented to her in a private messages. She was happy to help but felt the need to tell me and I was OK with it.

When we do something at my house, I always invite him but he always refuses. The few times he aquiesced was because my girlfriend convinced him. Sometimes he disables all his social media and we loose all contact.

The latest one has been going for a while. I tried to call him multiple times but he never answers. When my girlfriend messages him he answers immediately. We actually tested that when we were together.

Lately he's been sending her messages trying to chit chat and being somewhat insistent. She felt it was very weird, specially after her seeing he never answer my calls. This latest time she actually confronted him about it and point blank asked him if he was mad at me and that it was all very weird.

You know what I'm thinking...but I'd like to know your perspective.

 

The title. I've been delaying long enough and I can't really wait anymore. I need a new GPU. I could really use some advice.

Right now I have a GTX 1060 3 GB with a Ryzen 7 2700X CPU and 32 GB RAM. Mostly I use it for gaming in 1080p but it's not impossible I'll eventually increase it (but unlikely).

I'll accept suggestions outside of my options but keep in mind the prices in my country are different. I'm not looking to buy used for various reasons (lack of warranty is one).

My options are:

RTX 3060 12 GB (290 euros)

RTX 4060 8 GB (330 euros)

RX 7600 XT 12 GB (380 euros)

RX 6750 XT 12 GB (400 euros)

RX 6700 XT 12 GB (420 euros)

RTX 4060ti 16 GB (480 euros)

I was really trying to keep it way below 400 euros. The 7600 XT is already a stretch but I could be convinced to raise the budget to the upper 400s for something with really good bang for buck.

I appreciate the help

UPDATE: In the end I decided to go for the RX 6750 XT for 405 euros but, as is my habit, I decided I should sleep on it. And thank god I did. The next day I went online and had already decided to buy it when I saw it was the store's birthday and they were doing some nice discounts and the 6750 was at 360 euros (limited to stock). I immediately bought. What are the odds?! She'll be here in a couple of days.

 

My girlfriend started taking a Masters in a college this year. In her course the faculty have shown some disorganization and computer illiteracy since day one but the latest one...completely killed me.

Besides their personal college e-mail, they wanted a platform to make announcements for all the course (20 students). I can think of a thousand ways to do this. Hell, even a Facebook group would be better. But no...

They have an e-mail address (like Masters_name@college.duh) where all the info is sent and EVERYBODY has the password to enter the e-mail and check the inbox.

That is it. I have no words. I think this is the most idiotic and dumb thing I've ever seen in IT.

 

After 8 years, today I just deleted all my comments and posts. So far they are deleted. I haven't deleted my account in case I have to delete them again. Fuck spez.

That is all

G'night

view more: next ›