Statick

joined 2 years ago
[–] Statick@programming.dev 1 points 1 day ago* (last edited 1 day ago)

A planet sized paper tiger looking at earth in space.

[–] Statick@programming.dev 3 points 5 days ago (1 children)
[–] Statick@programming.dev 12 points 5 days ago* (last edited 5 days ago) (4 children)

Hey, this happens to me occasionally as well. Usually it's shortly after I trim my beard.

Are you of Italian decent by chance?

[–] Statick@programming.dev 1 points 5 days ago* (last edited 5 days ago)

TITAN → TIME [💯]

Raddle #309 • Dec 30, 2025

🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢

https://raddle.quest/309

[–] Statick@programming.dev 9 points 1 week ago

You don't even need to do that. You can just type yay

[–] Statick@programming.dev 4 points 1 week ago

I'm doing the same, and I gotta say, I'm really liking the small differences in the UI on both android and desktop.

The popup menu on Android is way better.

The customization for the tabs/highlights on desktop are great.

Subtle differences, but I appreciate the options nonetheless.

[–] Statick@programming.dev 11 points 1 week ago* (last edited 1 week ago) (2 children)

Been using this for the past month since I found out Tempo development died.

Works great on my phone.

The Android Auto UI needs work though.

Edit: For classification, it's the same Android Auto UI as Tempo, since this is a fork of Tempo. I just hope the Android Auto UI gets a fresh coat of paint at some point.

Also, didn't realize this was posted by you @eddyizm

Thank you for all your hard work in keeping this project going!

[–] Statick@programming.dev 6 points 3 weeks ago

Every time I boot into windows it breaks grub and I have to arch-chroot with a live archiso USB to fix it...

11
Offset Sharp Edges (programming.dev)
submitted 3 weeks ago* (last edited 3 weeks ago) by Statick@programming.dev to c/blender@lemmy.world
 

Disclaimer, I am a novice/hobbyist. Only use blender for 3D printing purposes.

TLDR; Add-ons Mesh Tools -> Offset Edges and Curve Tools -> Recursive Offset can achieve offsetting similar to a CAD program like Fusion 360. Watch this video (not mine) for a more comprehensive guide on Curve Tools https://youtu.be/HSUpmhGdgGQ?t=191

Full Explanation

I ran into an issue recently where I needed to offset an edge, similar to what a program like Fusion 360 can do with a sketch. After some searching, I found that there is an add-on built in that can be enabled called "Mesh Tools" that can do this pretty easily.

Mesh Tools approach (Didn't work for my specific issue)

On Blender 5.0...

  • Edit -> Preferences -> Get Extensions
  • Search "Mesh Tools"
  • Click "Install"

Then, in edit mode:

  • Select edge you want to offset
  • Right-click -> Mesh Tools -> Offset Edge

There are a few different options and this works fairly well. I used the Extrude option

My issue was I had a sharp edge and it was causing intersecting edges/faces

I made a post on Reddit asking what the best way to solve it was and never got a reply, and then I realized I never checked if there was a Blender community on lemmy.

Curve Tools approach

Anyway, I found a solution to my specific problem, "Curve Tools" in this video: https://youtu.be/HSUpmhGdgGQ?t=191

Caveats before starting:

  • The object/edge needs to be planar and on the XY plane.
  • This will ruin the topology and I'm not the guy to tell you how to fix it.

On Blender 5.0...

  • Edit -> Preferences -> Get Extensions
  • Search "Curve Tools"
  • Click "Install"

Then, in edit mode:

  • Select the edge you want to offset
  • E to Extrude
  • Esc to leave it in place
  • P to separate by selected
  • Go back to object mode, and select the object you just separated
  • Object -> Convert -> Curve
  • Go back into edit mode, select everything
  • Make the curve 2D and set Fill Mode to Both. (Under the Data tab in the Properties section)

  • Press N to show the context menu if it's not already displayed on the right side.
  • Edit -> Recursive Offset
  • Set the offset to the desired amount

After this you can convert that object back into a Mesh object and use it how you want.

I have no idea if this is the best solution, maybe there is a plugin that does this without converting to a Curve, but I wanted to share what I found here.

[–] Statick@programming.dev 15 points 3 weeks ago (3 children)

What was the process like?

[–] Statick@programming.dev 4 points 1 month ago (2 children)

Never even played it but that is a really cool drawing.

[–] Statick@programming.dev 3 points 1 month ago

Lightning hit a tree right next to my house and went through the invisible dog fence and fried a bunch of stuff in my house... The invisible fence and many other things are grounded now...

The bark on the tree literally blew off and there was a huge bang and flag of light when it struck. Scared the crap out of everyone in my house.

[–] Statick@programming.dev 2 points 1 month ago (1 children)

Did they update the title on you or something? Why are you asking about 30?

 

I'm routing game traffic on my VPS via wireguard to a home server that has games hosted via docker.

Setup is...

VPS/Wireguard -> Internet -> Wireguard/Dockerized Games Server

Now, my current config WORKS... however I'm curious if there is some unnecessary routing going on.

VPS iptable rules (omitted PostDown)

PostUp = iptables -t nat -A PREROUTING -i eth0 -p tcp --match multiport --dports 61000:61100 -j DNAT --to-destination 10.0.0.3
PostUp = iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE

Game Server (omitted PostDown)

Here are the iptable rules on the game server and the --to-destination part is what I'm curious about...

PostUp = iptables -t nat -A PREROUTING -p tcp --dport 61000:61100 -d 10.0.0.3 -j DNAT --to-destination 192.168.1.14
PostUp = iptables -t nat -A POSTROUTING -j MASQUERADE

10.0.0.3 is the same machine as 192.168.1.14

The reason I'm setting the --to-destination ip to that is because the docker rules that are created in the Chain DOCKER section of the iptable rules are looking for the destination nam-games.localdomain which is my dns entry for the game server. I unfortunately don't think I can change these because I'm using a game server management panel called Pterodactyl that adds these. I also don't want to have to manually add rules to this every time I create a server.

Chain DOCKER (2 references)
target     prot opt source               destination         
RETURN     all  --  anywhere             anywhere
DNAT       tcp  --  anywhere             nam-games.localdomain  tcp dpt:61000 to:172.18.0.2:61000
DNAT       udp  --  anywhere             nam-games.localdomain  udp dpt:61000 to:172.18.0.2:61000
DNAT       tcp  --  anywhere             nam-games.localdomain  tcp dpt:61001 to:172.18.0.3:61001
DNAT       udp  --  anywhere             nam-games.localdomain  udp dpt:61001 to:172.18.0.3:61001

Concerns

The setup I described above is the only config I have gotten to work, but I'm curious if it's hitting the server, then going the router, only to be routed back to the same machine again. If it is, is there a better way to set this up?

1
submitted 1 year ago* (last edited 1 year ago) by Statick@programming.dev to c/meta@programming.dev
 

Looks like all of the alternate theme subdomains are down. I'm assuming this is due to the maintenance but wanted to point it out just in case.

https://t.programming.dev/

https://p.programming.dev/

https://a.programming.dev/

https://old.programming.dev/

https://v.programming.dev/

view more: next ›