Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)OP
Posts
1
Comments
499
Joined
2 yr. ago

  • The dataset is a great find. I do suppose it's enough for a simple start. I like the idea of comparing different features so for example show 5 forks of different prong lengths, show 5 forks with different ornaments, and so on. However, I suppose preferences for different fork qualities are not independent. Say, someone might prefer a fork with longer prongs if the handle is thicker, but shorter ones if the handle is also thinner. Depending on to which degree that is true, trying to determine preferences for individual features while ignoring the bigger picture might be futile.

  • The preference one was my idea, too. However, I'm afraid there won't be enough forks to fit every single possible combination of metrics. Another problem might be copyright. It would be fantastic to have an engine able to generate and render a 3D model any fork based on adjustable parameters.

  • Sounds awesome but I don't know on what metrics you could qualitatively categorize forks, except for some obvious ones like prong length, handle start thickness, handle uniformity, ...

    Edit: Darn you, I didn't need yet another project in my long long list. Now I can't stop thinking about it.

  • None of them are usable. If I had to take one, number 3. All the others are a sin.

    Edi: I must agree with others though, that the handle of 3 is very bad. Still, the shape of the head is more important to me.

  • Not two A records. From what I understand, OP has an A record pointing to their public IP address (which Nginx is listening on behind a NAT). Then, on the local network, OP uses their own DNS server to ignore that entry and instead always serve the local IP when a host on the LAN queries it.

    Aside from OP's devices potentially using a different DNS server (I was only able to solve it for my stock Android by dropping outgoing DNS in my firewall), this solution is a nightmare for roaming devices like mobile phones. Such a device might cache the DNS answer while on LAN or WAN respectively and then try to continue using that address when the device moves to the other network segment.

    These are the most likely scenarios in my opinion - OP's devices are ignoring the hacky DNS rewrite (either due to using a different DNS server or due to caching) and try to access the server via the public IP. This is supported by the connection timeout, which is exactly what you would see when your gateway doesn't do loopback.

  • TCP over IP as a protocol is an "open standard". Network implementations are nearly always strictly proprietary.

    The "protocols" behind browsers are public. HTML, CSS, and ECMAScript are all well defined on sites like the Mozilla documentation. You are free to implement your own browser that follows these standards.

  • Never point your DNS at two different IP addresses like this. It will only cause you pain and unexpected behaviour.

    What you are experiencing is solved by so-called "NAT reflection" or "NAT loopback". It's a setting that - in the optimal case - you should just be able to activate on the appropriate interface on your gateway.

    If you do not have that setting or do not have access to the edge router, but only some intermediate router, you can do a nasty hack. You can point static routes to your public IP address to point at your local IP address instead. In that case, you also need to tell your server to accept packets with your public IP address as the destination.