spirinolas

joined 2 years ago
[–] spirinolas@lemmy.world 3 points 20 hours ago

There's obviously a gigantic magnifying glass between the Sun an Earth!

[–] spirinolas@lemmy.world 5 points 1 day ago

There's more where that came from

[–] spirinolas@lemmy.world 28 points 2 days ago* (last edited 2 days ago) (3 children)

One my greatest dilemmas is how much I love Ren and Stimpy's first seasons but I absolutely despise John Kricfalusi. I can't even downplay his hand on the show, the humour comes straight out of his sick mind and I love it.

Maybe we should arrest guys like him and, instead of putting them in jail and letting them rot there doing nothing, force them to make cartoons. There may be some untapped potential there.

[–] spirinolas@lemmy.world 1 points 1 week ago

Derakaderkadeeer! Bork Bork!

[–] spirinolas@lemmy.world 19 points 3 weeks ago (1 children)

Super! (j'utilise Arch, au fait)

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

I know tons of vst's work on Linux, just not the one I use. The problem is people need specific software not that just any software in that class.

Sorry but this is what irks me when people say not everything will work on Linux. There's always someone saying "but you have alternative on Linux" like every program is the same.

You can't expect someone that uses Photoshop professionally to just start using Gimp in an industry where Photoshop is the standard that everyone uses. Gimp, while impressive, is not Photoshop and requires a totally different workflow. And it's simply not doable when you're working with people using and expecting Photoshop. You also can't expect someone to have to tinker with their PC every time, just to work. People that use their PC to work need it to be reliable. People that use computers as a tool, not to make a political statement.

In my case, I know there are vst's on Linux. They just don't have the quality that Amplitube has. And you can't tell people to "just switch, bro" when they already paid for Amplitube. For these people, at least for now, Windows is pretty much the only option.

Sorry for the rant, I'm done.

Like someone said here, by 2032 wine will run all that. That's where my hopes are. When that happens more people will use Linux (I know I will) and with more users more companies will start making native Linux versions. Things have already improved tremendously in the last 15 years. I truly believe there will be a critical point soon that will make explode Linux adoption.

But, for now, you have to understand Linux is not yet an option for some specific needs.

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

The Adobe stuff, Vst's, etc.

[–] spirinolas@lemmy.world 4 points 1 month ago (7 children)

For now I'm happy with Windows 10 LTSC on my main rig. I use Debian on my laptop and Ubuntu on my server. I don't know what I'll do in 2032 when LTSC support ends. I'd like to go to Debian on my main rig but some software simply won't work without hassle (if at all). I hope that changes until then, I love Debian with KDE Plasma.

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

LTSC is pretty much what Windows should be. And MS hates people are using it so it means it's the best choice.

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

I'm curious, how does this affect EU users? Isn't this against our rules?

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

More in the sense that someone around him will get scared with the consequences and pull a Jaime Lannnister special on him. All it takes is one.

[–] spirinolas@lemmy.world 17 points 1 month ago (24 children)

This will end with Trump dropping a nuke in Iran, or die trying. Mark my words.

 

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 ›