Blisterexe

joined 10 months ago
[–] [email protected] 1 points 25 minutes ago

This is the one i dislike the most in this thread, you monster!

[–] [email protected] 1 points 26 minutes ago

Often terrorism is "poking the bear", some groups do it so that the "bear" totally messes up a country, so that the group can then gain power

[–] [email protected] 1 points 28 minutes ago

I agree, but maybe houses can still be paid, but if you cant afford it theres also (smaller) free housing.

[–] [email protected] 3 points 4 hours ago (1 children)

Is "shadow interviewer" your evil clone?

[–] [email protected] 0 points 1 day ago

My phone can do 90hz and i dont see much difference with 60

[–] [email protected] 1 points 2 days ago

How does the bridge work? Do i have to have it open all the time?

[–] [email protected] 3 points 5 days ago

I really like it, the settings app was lacking before

[–] [email protected] 3 points 1 week ago

Can we have links to said papers?

[–] [email protected] 1 points 1 week ago* (last edited 1 week ago)

Why does it matter?

[–] [email protected] 7 points 1 week ago

As part of the mindless horde of sub-intellectual gremlins, i have to say that while i dont love thumbnails like that, i still click on the video because i know it'll be quality

[–] [email protected] 4 points 1 week ago (3 children)

I really like beeper, but im probably gonna selfhost all the bridges once i have the hw

 

More info about it here: https://www.ghacks.net/2024/08/13/windows-11-start-menu-is-getting-a-new-layout-to-organize-your-apps/

I love how microsoft never learns their lessons.

 

Mine is the wings of fire series, it is a "kids" novel (think like warrior cats age range)

But Tui T sutherland is so good at writing characters and introducing and describing worlds and characters that i reread it every so often. Like, she managed to write a book from the pov of a mind reader and it works.

Every book is from a different character's pov and each character feels wholly unique.

The main issue with the series is that the plot is kinda average at best, the characters really carry the story.

 

tldr is that you can hide the button that asks for payment and it says "purchase immich" instead of "purchase liscence"

 

Basically nvidia shadowplay for linux

34
submitted 6 months ago* (last edited 6 months ago) by [email protected] to c/[email protected]
 

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!

 

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.

--

 

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

 

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 ›