[-] [email protected] 6 points 2 days ago

I know a young person will read this and think this won’t happen to them.

I rather thought "Huh, 30s is still young."

[-] [email protected] 2 points 3 days ago* (last edited 3 days ago)

Do people not check what version of software they have and what's newest (and if the issue exists is a good idea too) before reporting a bug?

[-] [email protected] 10 points 3 days ago
  1. Slang spreads offline as well
  2. The devices were TVs for a good while not too long ago
[-] [email protected] 1 points 3 days ago

Not sure where you're heading with this question, but certainly at least a few.

[-] [email protected] 22 points 3 days ago

They Live (1988).
It's just getting more relevant over time.

[-] [email protected] 4 points 4 days ago

Without any text. Just plain single color shirts. Loose ones.

[-] [email protected] 4 points 4 days ago

YouTube also supports longer videos outside of shorts. And they don't even have to be in portrait mode. ^/j^

[-] [email protected] 13 points 5 days ago

I hate Billboards.

I don't just hate them, but I'd straight up make them illegal. At least next to roads. They are specifically meant to get the attention of drivers. How can that be allowed?

[-] [email protected] 15 points 5 days ago

Generally yes. If I don't need it, I don't need it for free either. The price doesn't change how much I don't need a product.

Only made sense when some supermarkets had samples of hams and cheeses in those sections before COVID. Helped decide which one to buy.

[-] [email protected] 25 points 5 days ago

funny thing parents do to embarrass their kids

And what is funny about that?

[-] [email protected] 74 points 6 days ago
170
submitted 3 months ago by [email protected] to c/[email protected]
21
submitted 3 months ago* (last edited 3 months ago) by [email protected] to c/[email protected]

E.g.:
https://sh.itjust.works/u/testaccount789
https://lemmy.ml/u/[email protected]

I know in past I've successfully updated my display name, and it shows on other instances, so perhaps this problem is new to 0.19.x, but I am not at all sure about that.

4
submitted 3 months ago by [email protected] to c/[email protected]

First of all a disclaimer: I am not upset about the removal of manual server selection as this is a free service. They don't need to provide such services at all, so something is better than nothing.

What happened:
This morning I opened the ProtonVPN app on my phone and got greeted with a message stating free accounts can now only use automatic server selection and addition of free servers in Poland and Romania.
However, I also noticed split-tunelling is now paywalled as well.

Now, this is rather weird. Split-tunelling is already in the app and is something that works only on the client side, thus not putting any extra load on the servers. Quite the contrary, actually, as it allows some apps to not use the VPN, thus use less bandwidth.
The automatic-selection-only allows for better load balancing, so that makes sense.

Now to the workaround.
They still allow manual OpenVPN and Wireguard setup even for free accounts, at least for now.
To do so, login to ProtonVPN and go to account. There's OpenVPN credentials which are used for OpenVPN authentication. Then go to downloads, select appropriate options including the specific server and download the ovpn config file.
Client: OpenVPN for Android
This app also supports split tunneling (edit config -> Allowed apps).

ProtonVPN has an article on how to set up this app, but it's really just importing the config and adding your OpenVPN ProtonVPN credentials which you grabbed before.

148
submitted 4 months ago by [email protected] to c/[email protected]

First of all a disclaimer: I am not upset about the removal of manual server selection as this is a free service. They don't need to provide such services at all, so something is better than nothing.

What happened:
This morning I opened the ProtonVPN app on my phone and got greeted with a message stating free accounts can now only use automatic server selection and addition of free servers in Poland and Romania.
However, I also noticed split-tunelling is now paywalled as well.

Now, this is rather weird. Split-tunelling is already in the app and is something that works only on the client side, thus not putting any extra load on the servers. Quite the contrary, actually, as it allows some apps to not use the VPN, thus use less bandwidth.
The automatic-selection-only allows for better load balancing, so that makes sense.

Now to the workaround.
They still allow manual OpenVPN and Wireguard setup even for free accounts, at least for now.
To do so, login to ProtonVPN and go to account. There's OpenVPN credentials which are used for OpenVPN authentication. Then go to downloads, select appropriate options including the specific server and download the ovpn config file.
Client: OpenVPN for Android
This app also supports split tunneling (edit config -> Allowed apps).

ProtonVPN has an article on how to set up this app, but it's really just importing the config and adding your OpenVPN ProtonVPN credentials which you grabbed before.

63
submitted 4 months ago by [email protected] to c/[email protected]
7
submitted 4 months ago by [email protected] to c/[email protected]

Idea

There's a computer connected to the WiFi router as a client. This computer has access to internet and shares that connection over HTTP proxy. This also provides ad-blocking.
Clients connected to the WiFi router shouldn't have to configure HTTP proxy server settings, nor should they have access to the computer running the proxy server. This is done via unbridged guest VAP with "client isolation" and "net isolation".

The idea is the same as OpenVPN client setting, or rather like Matsuri proxy toolchain on Android.

The only answers I found talked about redirecting port 80 traffic to HTTP proxy via iptables, but that's not what I want. It would also only work for web traffic I believe, since it's just redirecting it to proxy, and not issuing CONNECT requests.

Specific use case

So... my phone has mobile data. It is also connected to VPN and uses NextDNS for (not only) ad-blocking. In Termux, I setup tinyproxy and also null-routed access to private IP ranges and CG-NAT:

...
#Here I am attempting to null route local IP address ranges by pointing upstream proxy option to 0.0.0.0:0 as described in tinyproxy.conf man page.
#IPv4 localhost
Upstream http 0.0.0.0:0 "127.0.0.1/8"
#IPv4 private adresses
Upstream http 0.0.0.0:0 "10.0.0.0/8"
Upstream http 0.0.0.0:0 "172.16.0.0/12"
Upstream http 0.0.0.0:0 "192.168.0.0/16"
#IPv4 CG-NAT (I am not sure this helps anything, but it doesn't hurt either)
Upstream http 0.0.0.0:0 "100.64.0.0/10"
#IPv4 link-local
Upstream http 0.0.0.0:0 "169.254.0.0/16"
#IPv6 localhost
Upstream http 0.0.0.0:0 "::1"
#IPv6 Unique Local Addresses
Upstream http 0.0.0.0:0 "fc00::/8"
#IPv6 private addresses (excl. ULA)
Upstream http 0.0.0.0:0 "fd00::/8"
#IPv6 link-local addresses
Upstream http 0.0.0.0:0 "fe80::/10"

This is fine if the phone is accessible to other hosts and setting up proxy on each host isn't a problem. For example, it's useful on a school network.
But that's not the case here.

Purpose

Forcing all users to use VPN, be subject to my blocking, and provide larger range than phone's hotspot.
Fun fact: The first thing can be achieved via hotspot on devices running PixelExperience custom ROM.

Not so possible solution

Running OpenVPN server on the phone. DD-WRT already has OpenVPN client. Unfortunately, this would require root, it seems.

Partial solution

The partial solution is connecting the router to VPN somewhat directly and also setting it to use NextDNS.

I was trying to write a guide here, but it was getting unnecessarily long.
So just TL;DR:
Setting up the router to use OpenVPN but replacing IP and port with phone's desired options, setting up the router to use only NextDNS, connecting phone to both WiFi and mobile data, forcing it to use mobile data for internet, doing port forwarding to the actual OpenVPN server using socat in Termux.

This has flaws though. I either have to setup split-tunelling for Termux, or end up with VPN-over-VPN if I also want VPN on the phone. Secondly, whatever VPN you're using may only allow limited number of clients per user.

Other use cases

Simple internet access in network where only internet access is via HTTP proxy (e.g.: campus network), connection via Tor using its HTTP proxy.


If you have any ideas, thanks. If not, still thanks as you read at least a part of this.

130
I am sorry. (i.imgur.com)
submitted 4 months ago by [email protected] to c/[email protected]
139
submitted 4 months ago by [email protected] to c/[email protected]
2106
submitted 5 months ago by [email protected] to c/[email protected]
9
submitted 5 months ago by [email protected] to c/[email protected]

I guess I should only deposit money via ATM on Fridays. Or just not change my PIN so often.

10
Fatal error (i.imgur.com)
submitted 5 months ago by [email protected] to c/[email protected]

The files seem to change on each refresh: https://heltec.org/info/delivery/

223
submitted 6 months ago by [email protected] to c/[email protected]

Archive.org link
YouTube link (tracker removed)

Please report use of words such as "living wage" to the management

view more: ‹ prev next ›

user224

joined 1 year ago