@SexualPolytope@lemmy.sdf.org avatar

SexualPolytope

@SexualPolytope@lemmy.sdf.org

I fuck numbers.

This profile is from a federated server and may be incomplete. Browse more on the original instance.

SexualPolytope, (edited )
@SexualPolytope@lemmy.sdf.org avatar

My laptop is around 7 years old now. Still going strong.

SexualPolytope, (edited )
@SexualPolytope@lemmy.sdf.org avatar

I don’t know if you’re joking, but have you ever drunk from a pond?

SexualPolytope,
@SexualPolytope@lemmy.sdf.org avatar

It took me a lot longer than I’d like to admit to realize that it was FS Tab.

SexualPolytope,
@SexualPolytope@lemmy.sdf.org avatar

Or SQL is Squeal

SexualPolytope, (edited )
@SexualPolytope@lemmy.sdf.org avatar

Respectfully, what the fuck?!

SexualPolytope, (edited )
@SexualPolytope@lemmy.sdf.org avatar

It’s similar to what I felt learning organic chemistry. That’s why I ended pursuing a career in math.

SexualPolytope,
@SexualPolytope@lemmy.sdf.org avatar

Yep. I’m teaching Calc-3 this summer. Hate the commute, and the prep. Classes can actually be fun sometimes. At least it keeps me from spending three months drunk and high.

SexualPolytope,
@SexualPolytope@lemmy.sdf.org avatar

Opposite for me lol. I’m fine with the research, and coursework. Hate teaching. Again, mostly for the prep. Interacting with students in class is nice.

SexualPolytope,
@SexualPolytope@lemmy.sdf.org avatar

On average, getting married early is a bad decision.

SexualPolytope,
@SexualPolytope@lemmy.sdf.org avatar

I’m not saying it’s always bad. I’m sure you’re very happy. But anecdotes don’t mean much. People are still growing up when they’re 20.

After announcing increased prices, Spotify to Pay Songwriters About $150 Million Less Next Year (www.billboard.com)

When Bloomberg reported that Spotify would be upping the cost of its premium subscription from $9.99 to $10.99, and including 15 hours of audiobooks per month in the U.S., the change sounded like a win for songwriters and publishers. Higher subscription prices typically equate to a bump in U.S. mechanical royalties — but not...

SexualPolytope,
@SexualPolytope@lemmy.sdf.org avatar

How about qobuz.com ? I’ve bought some flac files from them.

SexualPolytope, (edited )
@SexualPolytope@lemmy.sdf.org avatar

It’s funny that the supported distros for a video editor are all server focused ones.

SexualPolytope,
@SexualPolytope@lemmy.sdf.org avatar
  • Behind the Bastards
  • Dan Carlin’s Hardcore History
  • A Podcast of Unnecessary Detail
  • Cozy History
SexualPolytope,
@SexualPolytope@lemmy.sdf.org avatar

That’s why Apple gave up on designing a car. All of the potential customer base has already been captured by Tesla.

SexualPolytope,
@SexualPolytope@lemmy.sdf.org avatar

From what I understand, they don’t want 3rd party apps to use their servers.

SexualPolytope,
@SexualPolytope@lemmy.sdf.org avatar

For example while iMessage is a walled garden, if the list was sorted by ease of use, it should be first

Should it, though? It requires the user to buy an Apple device.

SexualPolytope, (edited )
@SexualPolytope@lemmy.sdf.org avatar

I don’t buy that logic. How is it cross-platform? (It technically is, but c’mon. All of these OSs are in the walled garden.) I agree about RCS requiring Android, but that doesn’t really put it lower than iMessage, since that also requires you to buy a device. (iMessage does have more features, though.) Apple has promised to support RCS in iPhones, so this should soon change. Also, why would iMessage be rated higher than Signal using this logic? What’s easier, buying a device or installing an app on your existing device? (If someone doesn’t have any mobile device, I don’t think they really care about messaging anyway. So I don’t consider that as a proper prerequisite.)

SexualPolytope,
@SexualPolytope@lemmy.sdf.org avatar

Not giving a fuck also doesn’t require any talent.

SexualPolytope,
@SexualPolytope@lemmy.sdf.org avatar

My setup looks like the following:


<span style="color:#323232;">/etc/wireguard/wg-vps.conf on the VPS
</span><span style="color:#323232;">-----------------------------------------------------
</span><span style="color:#323232;">[Interface]
</span><span style="color:#323232;">Address = 10.8.0.2/24
</span><span style="color:#323232;">ListenPort = 51820
</span><span style="color:#323232;">PrivateKey = ********************************************
</span><span style="color:#323232;">
</span><span style="color:#323232;"># packet forwarding
</span><span style="color:#323232;">PreUp = sysctl -w net.ipv4.ip_forward=1
</span><span style="color:#323232;">
</span><span style="color:#323232;"># port forwarding 80 and 443
</span><span style="color:#323232;">PreUp = iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j DNAT --to-destination 10.8.0.1:80
</span><span style="color:#323232;">PreUp = iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 443 -j DNAT --to-destination 10.8.0.1:443
</span><span style="color:#323232;">PostDown = iptables -t nat -D PREROUTING -i eth0 -p tcp --dport 80 -j DNAT --to-destination 10.8.0.1:80
</span><span style="color:#323232;">PostDown = iptables -t nat -D PREROUTING -i eth0 -p tcp --dport 443 -j DNAT --to-destination 10.8.0.1:443
</span><span style="color:#323232;">
</span><span style="color:#323232;"># packet masquerading
</span><span style="color:#323232;">PreUp = iptables -t nat -A POSTROUTING -o wg-vps -j MASQUERADE
</span><span style="color:#323232;">PostDown = iptables -t nat -D POSTROUTING -o wg-vps -j MASQUERADE
</span><span style="color:#323232;">
</span><span style="color:#323232;">[Peer]
</span><span style="color:#323232;">PublicKey = ********************************************
</span><span style="color:#323232;">AllowedIPs = 10.8.0.1
</span>

<span style="color:#323232;">/etc/wireguard/wg-vps.conf on my home-server
</span><span style="color:#323232;">---------------------------------------------------------------
</span><span style="color:#323232;">[Interface]
</span><span style="color:#323232;">Address = 10.8.0.1/24
</span><span style="color:#323232;">PrivateKey = ********************************************
</span><span style="color:#323232;">
</span><span style="color:#323232;">[Peer]
</span><span style="color:#323232;">PublicKey = ********************************************
</span><span style="color:#323232;">AllowedIPs = 10.8.0.2
</span><span style="color:#323232;">Endpoint = <VPS-DDNS>:51820
</span><span style="color:#323232;">PersistentKeepAlive = 25
</span>

Now, just enable the tunnel using sudo systemctl enable --now wg-quick@wg-vps. Make sure that the port 51820, 80, and 443 are open on the VPS. Now, allow 80, 443 through the firewall on the home-server (not on the router, just allow it locally), and it should work.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • JUstTest
  • kavyap
  • DreamBathrooms
  • thenastyranch
  • magazineikmin
  • InstantRegret
  • GTA5RPClips
  • Youngstown
  • everett
  • slotface
  • rosin
  • osvaldo12
  • mdbf
  • ngwrru68w68
  • megavids
  • cubers
  • modclub
  • normalnudes
  • tester
  • khanakhh
  • Durango
  • ethstaker
  • tacticalgear
  • Leos
  • provamag3
  • anitta
  • cisconetworking
  • lostlight
  • All magazines