[-] Blisterexe@lemmy.zip 1 points 2 hours ago

I use bitwarden's new 2fa app and it works, no issues

[-] Blisterexe@lemmy.zip 6 points 17 hours ago

I hate Al art, it's getting everywhere

(/s)

[-] Blisterexe@lemmy.zip 1 points 22 hours ago

Wait it did? When?

[-] Blisterexe@lemmy.zip 1 points 2 days ago

Apparently you can make it work, not that I would

[-] Blisterexe@lemmy.zip 5 points 2 days ago

Other than Google pay or getting a card from a bank that offers that in their mobile app there isn't a way afaik

[-] Blisterexe@lemmy.zip 12 points 2 days ago

Meant this lol

[-] Blisterexe@lemmy.zip 8 points 2 days ago

You look great but why does it kinda look like you have baby heads trapped in your knees

[-] Blisterexe@lemmy.zip 1 points 2 days ago

the new ui tweaks are great, Thank you for listening to the community!

[-] Blisterexe@lemmy.zip 1 points 3 days ago

The issue for me is that most games I buy are way cheaper, (because of steam sales) and the games I enjoy are rarely on gamepass. So I'd be barely saving money and be playing worse games.

Also its not available on Linux so there's that

[-] Blisterexe@lemmy.zip 2 points 3 days ago

Just for my 2 cents, I installed kde on an ancient HP elitebook, and while it was a tad slow to boot from disk due to the hard drive, the daily usage was honestly totally fine, and way better than the windows 7 it came with. You are right that KDE is very light compared to windows, or even in general.

[-] Blisterexe@lemmy.zip 2 points 5 days ago

Ah OK, you could probably still find good deals on PC parts but it must be harder over there

[-] Blisterexe@lemmy.zip 4 points 5 days ago

You don't need a 40 series, but more importantly what country do you live in?

465
18

the tldr is that i have this one game that only likes xbox controllers, and steam input doesnt work to fix it

44
submitted 2 months ago by Blisterexe@lemmy.zip to c/helldivers2@lemmy.ca

mine is the liberator penetrator, i use stratagems and my heavy weapon for aoe

34
submitted 2 months ago* (last edited 2 months ago) by Blisterexe@lemmy.zip to c/technology@lemmy.world

Looking for a budget router for a home (3 floors, 3000sq feet, 11 devices), because my current router is utter garbage

(bad range and doesnt support nat loopback, which makes me have to mess with dns far more than necesary, and all the messing around gets wiped out when the router restarts or unplugs itself and my computer caches the external dns server, ~~i hate it so much please i need to get rid of it~~)

edit: it only has to cover maybe 1500sq feet, not 3000

  • It needs to be suitable for a small homelab. (ie: 4 ethernet ports and a functional webui)
  • preferably supports openwrt or some other open-source software, and i - would prefer to spend less than 70 CAD.
  • Wifi 6 is uneccesary as most devices in the house dont support it.

Thank you in advance!

310
Moldy rulesdays (lemmy.zip)
submitted 3 months ago by Blisterexe@lemmy.zip to c/196@lemmy.blahaj.zone
140
submitted 3 months ago* (last edited 3 months ago) by Blisterexe@lemmy.zip to c/technology@lemmy.world

Everyone here has been overreacting about the Mozilla layoffs, but they only laid off poeple working on the metaverse, ai, and their VPN and stuff. They're actually refocusing on Firefox. People have been freaking out about them working on ai now, too, but theyve been doing ai for a while (Mozilla common voice anybody?)(Firefox's translation feature?) And it's always open source, and runs offline, they're not gonna add a shitty internet-connected ai sidebar.

Here is the entire internal memo fore the interested:

--

Scaling back investment mozilla.social: With mozilla.social, we made a big bet in 2023 to build a safer, better social media experience, based on Mastodon and the Fediverse. Our initial approach was based on a belief that Mozilla needed to quickly reach large scale in order to effectively shape the future of social media. It was a noble idea but one we struggled to execute. While we resourced mozilla.social heavily to pursue this ambitious idea, in retrospect a more modest approach would have enabled us to participate in the space with considerably greater agility. The actions we’re taking today will make this strategic correction, working through a much smaller team to participate in the Mastodon ecosystem and more rapidly bring smaller experiments to people that choose to live on the mozilla.social instance.

Protection Experimentation & Identity (PXI): We’re scaling back investment in some of our standalone consumer products in the Security and Privacy space. We are reducing investment in market segments that competitors crowd and where it is challenging to deliver a differentiated offering. Specifically, we plan to reduce our investments in VPN, Relay, and Online Footprint Scrubber. We will maintain investment in products addressing customer needs in growing market segments.

Hubs: Since early 2023, we have experienced a shift in the market for 3D virtual worlds. With the exception of gaming, education, and a handful of niche use cases, demand has moved away from 3D virtual worlds. This is impacting all industry players. Hubs’ user and customer bases are not robust enough to justify continuing to dedicate resources against the headwinds of the unfavorable shift in demand. We will wind down the service and communicate a graceful exit plan to customers.

Right-sizing the People Team

Given the reduction in staffing and lower headcount budget moving forward in MozProd, some roles have been consolidated in the People and other support services orgs so that we are offering the right level of support to our product portfolio. Optimizing our org to sharpen focus.

In 2023, generative AI began rapidly shifting the industry landscape. Mozilla seized an opportunity to bring trustworthy AI into Firefox, largely driven by the Fakespot acquisition and the product integration work that followed. Additionally, finding great content is still a critical use case for the internet. Therefore, as part of the changes today, we will be bringing together Pocket, Content, and the AI/ML teams supporting content with the Firefox Organization. More details on the specific organizational changes will follow shortly. Within MozProd, there are no changes within MDN, Ads, or Fakespot. There are also no changes to Legal/Policy, Finance & Business Operations, Marketing, or Strategy & Operations.

--

24
submitted 4 months ago* (last edited 3 months ago) by Blisterexe@lemmy.zip to c/technology@lemmy.world

I HAVE FIXED IT

basically the issue was thaty router doesn't support NAT loopback, and as such when a request for the routers external IP comes from the inside, the router throws it out. This can be fixed by editing your computer's host file to redirect the domain to the local IP of the server, or by setting up a dnsmasq proxy to make any requests redirect to the internal IP of the server.!!!

=======================================================

so, i have immich set up behind an nginx reverse proxy, here is the configuration:

server {
    server_name [my domain];
    # https://github.com/immich-app/immich/blob/main/nginx/templates/default.conf.template#L28
    client_max_body_size 50000M;

       location / {
        proxy_pass http://192.168.0.69:2283;
        proxy_set_header Host              $http_host;
        proxy_set_header X-Real-IP         $remote_addr;
        proxy_set_header X-Forwarded-For   $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;

        # http://nginx.org/en/docs/http/websocket.html
        proxy_http_version 1.1;
        proxy_set_header   Upgrade    $http_upgrade;
        proxy_set_header   Connection "upgrade";
        proxy_redirect off;
}

    listen 80;
    listen 443 ssl; # managed by Certbot
    ssl_certificate /etc/letsencrypt/live/[my domain]/fullchain.pem; # managed by Certbot
    ssl_certificate_key /etc/letsencrypt/live/[my domain]/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 = [my domain]) {
#        return 301 https://$host$request_uri;
#     } # managed by Certbot


#    server_name [my domain]
#    listen 443 ssl
    # https://github.com/immich-app/immich/blob/main/nginx/templates/default.conf.template#L28
#    client_max_body_size 50000M;
#    listen 80;
#    return 404; # managed by Certbot
#}


http works at all times, (when connecting thru domain) and https ONLY WORKS if i am not on the local network (the sever is an old laptop) i i am using a vpn (or in another building) it works fine, and DNS requests from inside the same network resolve to the public IP, as expected.

I am stumped.

ps: the connection times out when connecting to it on the same network (with domain) and tcpdump and access.log dont pick up anything

Edit: formatting Edit2: the pinging works from the router (it has a debugging feature), but not from my pc (with https)

Edit3: i had wireshark open while curling the domain, and it pings my home ip (the good one) but receives no reply

29
submitted 4 months ago by Blisterexe@lemmy.zip to c/linux@lemmy.ml

So i have gotten a t490 just recently, and ive installed fedora on it, gnome power profiles daemon said it was "on my lap" and wouldn't let me change the power profiles even when on a desk. So i masked that, and installed auto-cpufreq, but the laptop still draws about 10W (according to powertop) when watching a youtube video, leading to 4-5 hours of battery life.

any tips on how to reduce the power consumption?

109

Title says it all (i have turned on 165hz on settings). Its a cheap monitor, do some 165hz monitors not truly give you that experience? Or are my eyes fucked

view more: next ›

Blisterexe

joined 6 months ago