Moonrise2473

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

Main issue with that solution is that I would never give any money to the KSA to watch the Riyadh season. Or even watch it for free. They can sportwash by themselves

[–] [email protected] 4 points 2 weeks ago

idiot in the eyes of Capcom. For them, they're gullible people that need to be milked. Who cares if they can't access what they paid for?

[–] [email protected] 29 points 2 weeks ago* (last edited 2 weeks ago) (2 children)

Not laughing at the paying customers but laughing at Capcom.

This move is completely ineffective against pirates (previous IPA already available; future IPA will be just cracked)

Not to mention how hard and inconvenient is to jailbreak a modern iPhone.

Japanese companies watching their IP with the same eyes of Gollum watching the Ring

[–] [email protected] 20 points 2 weeks ago

Making Disney licensed toys is a legal nightmare even for Hasbro

[–] [email protected] 17 points 2 weeks ago

The problem is that they trained the models using millions of pirated books in standard english.

AAE is mostly used when spoken: they also pirated also millions of tv series and youtube videos that can contain that, but as of now, it was mostly for training voice recognition models

(proof that they pirated television content and youtube videos to train whisper: https://community.openai.com/t/subtitles-created-by-amara-org-qtss-etc/462561 - https://gist.github.com/riotbib/3b3c5f817b55b68801d14b8bdb02df09)

[–] [email protected] 12 points 2 weeks ago

The free tier is faster than paid tiers of lower quality VPNs.

I assume that the paid tier would be excellent

This said, I find it too expensive for my uses

[–] [email protected] 8 points 3 weeks ago

Because the programs are going to be run in an emulator, it would be safe

Yes, technically, some game ROM could be coded to exploit some emulator zeroday but because the market is tiny it seems very unlikely

[–] [email protected] 12 points 3 weeks ago (1 children)

The version on itchio is DRM free, it's just that is a very small market

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

Especially when downloading from the other supported sites (example: YouTube) is already against their tos and technically, piracy

[–] [email protected] 3 points 3 weeks ago

From my experience it seems like that with binisoft firewall control existing rules are ignored until re-added by the user

The only way a software can leak info is to open a url like example.com/install-success.php?track=UNIQUECODE in the default browser

[–] [email protected] 7 points 3 weeks ago (2 children)

I didn't encounter a single program that bypassed the block applied by windows firewall control - after setup they usually don't have the admin rights anymore to control it

[–] [email protected] 49 points 3 weeks ago (5 children)

Pro tip: Always use a program like binisoft windows firewall control

Look at companies like this. The software KNOWS it has been cracked but instead of disabling itself it sends home your info so you can get sued for copyright infringement

Ps: I'm curious to know the price of the geovia suite. I'm guessing it's a subscription and I'm guessing it's more than 10k per year

 

A week of downtime and all the servers were recovered only because the customer had a proper disaster recovery protocol and held backups somewhere else, otherwise Google deleted the backups too

Google cloud ceo says "it won't happen anymore", it's insane that there's the possibility of "instant delete everything"

 

It's a 8th gen Intel laptop CPU with 64 GB of ddr4

Definitely a bargain!

 

The author says that once you install Gemini (pro), when you ask "what song is this", you get a reply like "use apple's Shazam".

They say Google assistant music recognition was working so well and super accurate.

Although I was never able to have it work. When I ask "what song is this" I can only get one of this two results:

  1. Sorry, I didn't understand (90% of cases)
  2. Search "what song is this" on Google

My use cases are:

  1. In car listening to radio. I never have it work.
  2. Know which song is playing right now on the device when I'm using headphones. It never worked but it should be trivial, you already have all the metadata already. My iPod touch could do this super reliably and 100% offline TWENTY YEARS ago. It was so useful.
 

I want to try bitmagnet on the dev server at work (yes, we have permission to use it for personal reasons as long it's legal) but for obvious reasons it must be tunneled through a VPN.

Bitmagnet it's a local search engine that discovers content via DHT. It just asks peers for content, then when you come back the following month it should have found many interesting stuff

Problem is that from a network point of view it looks I want to download every single torrent ever made so I wouldn't want to have my workplace ip address associated with that.

Because the network traffic is minimal and for this content I don't care if the provider does data mining, I would like to use a free VPN with gluetun.

But I can't find a free one that works. From the officially supported only windscribe and proton have a free offer, but windscribe free doesn't have OpenVPN or wireguard, while proton VPN free blocks me immediately as soon as the program talks with other peers, even if I don't actually download anything.

So back to the question, which free VPNs are working with gluetun, someone has experience with that?

 

The university allows URLs as a "person name", so the spammer bots filled forms everywhere filling with my email and the spam URL as my name. So i'm getting bombarded by "legit" emails with a spam url as in "hi SPAM_URL"

 
 

I am running this docker image: https://github.com/nextcloud/docker with a cloudflare tunnel, meaning the webserver would see all the traffic coming from a single ip in 172.16.0.0/12 .

The documentation says:

The apache image will replace the remote addr (IP address visible to Nextcloud) with the IP address from X-Real-IP if the request is coming from a proxy in 10.0.0.0/8, 172.16.0.0/12 or 192.168.0.0/16 by default

So I thought that this is a not a problem, as other docker images can also automagically figure out the real IP address from traffic coming from cloudflare tunnels.

In the beginning it worked fine, then it was SLOW. Like 2 full minutes to load new feeds on news, waiting ages to complete a sync, and so on. I rebooted the server on those instances, and then it worked fine for a day.

So because at the time i was running it on unraid, i blamed the lag on that OS + my weird array of HDDs with decades of usage on them. Migrated to debian on a nvme array and... same lag!

Wasted hours trying to use caddy+fpm instead of apache and it's the same, worked fine for a day, then it was slow again.

Then I wondered: what if the program is "smart" and throttles it by itself without any warning to the admin if it thinks that an ip address is sending too many requests?

Modified the docker compose like this:

  nextcloud:
    image: nextcloud

became

  nextcloud:
    build: .

and I created a Dockerfile with

FROM nextcloud
RUN apt update -y && apt upgrade -y
RUN apt install -y libbz2-dev
RUN docker-php-ext-install bz2
RUN a2enmod rewrite remoteip
COPY remoteip.conf /etc/apache2/conf-enabled/remoteip.conf

with this as the content of remoteip.conf

RemoteIPHeader CF-Connecting-IP
RemoteIPTrustedProxy 10.0.0.0/8
RemoteIPTrustedProxy 172.16.0.0/12
RemoteIPTrustedProxy 192.168.0.0/16
RemoteIPTrustedProxy 173.245.48.0/20
RemoteIPTrustedProxy 103.21.244.0/22
RemoteIPTrustedProxy 103.22.200.0/22
RemoteIPTrustedProxy 103.31.4.0/22
RemoteIPTrustedProxy 141.101.64.0/18
RemoteIPTrustedProxy 108.162.192.0/18
RemoteIPTrustedProxy 190.93.240.0/20
RemoteIPTrustedProxy 188.114.96.0/20
RemoteIPTrustedProxy 197.234.240.0/22
RemoteIPTrustedProxy 198.41.128.0/17
RemoteIPTrustedProxy 162.158.0.0/15
RemoteIPTrustedProxy 104.16.0.0/12
RemoteIPTrustedProxy 172.64.0.0/13
RemoteIPTrustedProxy 131.0.72.0/22
RemoteIPTrustedProxy 2400:cb00::/32
RemoteIPTrustedProxy 2606:4700::/32
RemoteIPTrustedProxy 2803:f800::/32
RemoteIPTrustedProxy 2405:b500::/32
RemoteIPTrustedProxy 2405:8100::/32
RemoteIPTrustedProxy 2a06:98c0::/29
RemoteIPTrustedProxy 2c0f:f248::/32

and now because nextcloud is seeing all the different ip addresses it doesn't throttle the connections anymore!

 

Another useful feature for power users that Google is killing.

They don't care about us that day they we have a problem and the solution is in a now defunct site. That doesn't generate revenue. "When People search on Google they need to find what they need on a click on the ads", the shareholders are saying

 

I left the headline like the original, but I see this as a massive win for Apple. The device is ridiculously expensive, isn't even on sale yet and already has 150 apps specifically designed for that.

If Google did this, it wouldn't even get 150 dedicated apps even years after launch (and the guaranteed demise of it) and even if it was something super cheap like being made of fucking cardboard.

This is something that as an Android user I envy a lot from the Apple ecosystem.

Apple: this is a new feature => devs implement them in their apps the very next day even if it launches officially in 6 months.

Google: this is a new feature => devs ignore it, apps start to support it after 5-6 Android versions

 

From the article:

When we went to our seats, the wait staff let us know that despite the fact that the previews were playing, we wouldn’t know until the movie actually started whether we could see the film or not. If it didn’t work, the screen would just turn black. Luckily, the film went through without a hitch.

 

Installed a new debian server, installed docker, but then now i have a problem with permissions on passed directories.

On the previous server, the uid/gids inside the docker container match the uid/gid on the real server.

Root is 0, www-data is 33, and so on.

On this new server, instead, files owned by root (0) in the container are translated to 1000 on the server, www-data (33) is 100032, and so on (+1000 appended to the uid)

Is this normal or did I misconfigure something? On the previous server I was running everything as root (the interactive user was root), and i would like to avoid that

 

I swear that with each update they're adding more and more artificial stupidity

view more: ‹ prev next ›