-
10 votes
-
NCAA to expand March Madness men's and women's college basketball tournaments to 76 teams in 2027
7 votes -
Need help making an atlas-styled map without ultramega distortion
Hey, tildes - cqns here. I know tildes ain't never do me no wrong (apologies for the heavy colloquialism), but I've been working off and on with a worldbuilding project for the past decade and a...
Hey, tildes - cqns here.
I know tildes ain't never do me no wrong (apologies for the heavy colloquialism), but I've been working off and on with a worldbuilding project for the past decade and a half. Some four years ago, I finally hunkered down and created a world map completely from scratch. Due to my extraordinarily high standards, I couldn't help but slowly figure out that there was a lot of things wrong with it after I went through the effort of making it, so I ended up redoing it several times over with additions and subtractions, still feeling like there was something missing.
Turns out, my hunch was correct. Long story short, I found a website called World Orogen that procedurally generates a planet within a certain degree of "realism". Tweaking some settings, I came across a design that was good enough for working on outside of the website, in which I was beset on another issue that quickly spiraled out of control, and I found myself completely out of my depth - map projections, which is a rabbit hole all on its own, and I could only understand the bare minimum basics, such as lat/lon, but that's pretty much the extent of my knowledge. Seriously.
Undertaking this next phase of the project would eventually (and I do say "eventually" because I haven't even gotten around to it yet) lead me to making individual isolated continent maps like how one would find in an atlas. I have asked the Orange Alien Website for tips on r/mapmaking, and while I did get some nudges in the right direction, I'm still attempting to wrap my head around the programs they had suggested. QGIS and G.Projector being the areas of my focus. It's hard enough for me trying to fathom the extensive features of QGIS in general, and as for G.Projector, it comes with its own kind of clunkiness that I'm slowly getting used to. My ultimate question here is...how would I go about finding a map projection to ensure size and area accuracy (because both are apparently different) of all of my continents?
For reference, I have included the map in question so that if anyone wants to give it a go and offer up a solution.
24 votes -
US National Security Agency using Anthropic's Mythos despite blacklist
10 votes -
ps5-linux-loader: Linux on a PlayStation 5
28 votes -
Oscar Isaac | Closet Picks
9 votes -
What's the longest place name in continental Europe?
18 votes -
Pharmacogenetics personalised medicine: new frontier or nonsense?
Apparently my private health insurance covers pharmacogenetics testing to find the best ADHD medication. What is it, is it legit? What's the company going to do with my cheek swabs? How do doctors...
Apparently my private health insurance covers pharmacogenetics testing to find the best ADHD medication. What is it, is it legit? What's the company going to do with my cheek swabs? How do doctors feel about me going up to them and say hey internet pharma bro tells me I should be taking this instead of what your years of medical school thinks.
What I can't figure out is how my insurance company benefits from this. I'm not paying extra for this service so I must be the product right? Here's part of the
marketingFAQ info from my insurance provider:Personalized Medicine uses advanced pharmacogenetic testing and pharmacist assistance to find the most effective medication for you.
If you’re starting a new medication for a mental health condition (such as anxiety or depression), chronic pain, attention deficit hyperactivity disorder (ADHD), or neurological conditions – or taking a medication for one of these conditions and it’s not working or causing side effects – Personalized Medicine could help. It’s offered through your extended health care benefits plan, so the cost of the test may be covered. To see the list of drugs tested, click here.
It involves a pharmacogenetic test. This is a type of test that identifies how you may respond to medications. Your test results are only for you and anyone you give consent to share them with, such as your doctor. The test is run by Personalized Prescribing Inc., a Canadian company. Manulife
(Forgot to mention this is for a Canadian employment extended health insurance.)
15 votes -
Draconian – Misanthrope River (2026)
5 votes -
Dark Komet – Temples In The Flesh Of Time (2026)
4 votes -
Guild Wars Reforged launches on mobile this summer
17 votes -
Europe's first complete mining-to-refinement of lithium begins operating in Syväjärvi in western Finland – the strategic resource is critical for manufacturing modern electronics
20 votes -
Networking: DHCP+VPN, LAN communication query
Preface: I know not what I talk about. INSTANCE: A Unifi network with multiple VLANs, each with their own subnet. A Linux client that is assigned to a single VLAN, connected to the network via...
Preface: I know not what I talk about.
INSTANCE: A Unifi network with multiple VLANs, each with their own subnet. A Linux client that is assigned to a single VLAN, connected to the network via Wi-Fi, and running a full-tunnel Wireguard config which tunnels data to the provider's endpoints.
QUESTION: While running full-tunnel VPN configurations supplied by a commercial VPN provider, how might the client device talk with other devices on the same (local!) LAN as it is, including devices that are on a different (local!) VLAN, and thus a different subnet?
Let's say, for instance, that I have the following network architecture:
Name Subnet Gateway Mask Internal 10.0.0.0/24 10.0.0.1 255.255.255.0 Hosted 10.5.0.0/24 10.5.0.1 255.255.255.0 Private 10.5.1.0/24 10.5.1.1 255.255.255.0 Guests 10.5.2.0/24 10.5.2.1 255.255.255.0I have a device that is connected to the network via Wi-Fi, and is contained within the "Private" VLAN. It can also talk to devices that are in the "Internal" VLAN (by necessity), and devices in the "Hosted" VLAN.
Once I spin the VPN up, using a configuration gained from OVPN / PIA / NordVPN / whatever, the client can still communicate with devices on the same VLAN as it- for example, if the client is 10.5.1.132, it can still communicate with 10.5.1.42, but it cannot communicate with, say, 10.5.0.11. One would assume that is because the DHCP server has told it that it can access devices within a specific range through the correct gateway- and in-fact, this shows in the IP routing table:
Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface default unifi.localdoma 0.0.0.0 UG 1024 0 0 eth0 10.5.1.0 0.0.0.0 255.255.255.0 U 1024 0 0 eth0 unifi.localdoma 0.0.0.0 255.255.255.255 UH 1024 0 0 eth0There are, as far as I can tell, a number of solutions for this problem. The first is to not use a full-tunnel VPN, and instead build a set of AllowedIPs which carve out the LAN ranges which you do not want tunneled. This, I think, is known as a split-tunnel VPN. If one wants to carve out all of the possible LAN IP ranges, as specified in RFC1918, it starts to become somewhat cumbersome:
AllowedIPs = 0.0.0.0/5, 8.0.0.0/7, 11.0.0.0/8, 12.0.0.0/6, 16.0.0.0/4, 32.0.0.0/3, 64.0.0.0/2, 128.0.0.0/3, 160.0.0.0/5, 168.0.0.0/6, 172.0.0.0/12, 172.32.0.0/11, 172.64.0.0/10, 172.128.0.0/9, 173.0.0.0/8, 174.0.0.0/7, 176.0.0.0/4, 192.0.0.0/9, 192.128.0.0/11, 192.160.0.0/13, 192.169.0.0/16, 192.170.0.0/15, 192.172.0.0/14, 192.176.0.0/12, 192.192.0.0/10, 193.0.0.0/8, 194.0.0.0/7, 196.0.0.0/6, 200.0.0.0/5, 208.0.0.0/4, 224.0.0.0/3This might be the only solution that currently works on an Android device running the basic Wireguard APK, as found on Github.
An alternative solution is to carve out the LAN ranges you want to avoid routing through the tunnel using the PostUp/PostDown entries. For example:
PostUp = ip route add 10.5.0.0/16 via 10.5.1.1 [dev IFNAME?] [metric INT?] PostDown = ip route del 10.5.0.0/16 via 10.5.1.1This would work, on your local LAN, as long as you stay on the same VLAN and can connect to the correct gateway. Unfortunately, Android Wireguard cannot handle PostUp/PostDown entries, AFAICT. Small bother.
One final solution that I have heard mutterings about is known as "Classless Static Routes", or DHCP Option 121/249. This uses "CIDR" notation, and I'll be honest- here I am a little bit lost. I like the sound of this solution, as it means that I can configure the networking infrastructure itself to provide the required information for valid routing, and not have to faff about with the many, many Wireguard configurations on my devices.
Does anybody have any experience with this problem? Am I approaching this problem in an entirely stupid way? Is there a better way (insert infomercial here)?
8 votes -
The Dear Hunter - Sunya (2026)
7 votes -
Looking for early users to try my app
Hello tilderinos, I'd like to launch my tab manager soon and to ensure a smooth launch, I'm looking for early users who would be willing to try my app as part of the private beta. For those who...
Hello tilderinos,
I'd like to launch my tab manager soon and to ensure a smooth launch, I'm looking for early users who would be willing to try my app as part of the private beta.
For those who would actually need this product, I'm happy to offer one year free (or more!), but even if you don't need it, I'd really appreciate the help.
I don't really need anything fancy, I'd just like to have some people install the app and try it to know if it works properly for them or if any unexpected issues come up, especially major ones. I'd like to make sure that the actual launch will be smooth, especially considering that I've been working on this project for four years now. It'd be a shame if it all went to waste.
Thanks a lot in advance!
PS - I wasn't sure in which group to post
15 votes -
Is there a FLAC equivalent for digital comics?
I’ve bought enough digital comic bundles now that they’re starting to take up a decent chunk of storage space. What I’d love to do, if possible, is losslessly compress them all down to their...
I’ve bought enough digital comic bundles now that they’re starting to take up a decent chunk of storage space.
What I’d love to do, if possible, is losslessly compress them all down to their minimum sizes, in the same way that FLAC does with music. Is this a thing? And if so, what’s the best way to do it?
If lossless compression isn’t possible, is there a lossy compression that’s effectively lossless in that I won’t be able to tell the difference anyway? Lossless compression gives me good piece of mind, but the storage savings from an invisible lossy one are honestly quite appealing too.
23 votes -
For those who deal with hypoglycemia, do you have any advice for dealing with fatigue after a bad low?
My hypoglycemia issues are not related to diabetes fwiw. That said, I tend to get hypoglycemia a few times a day. If I catch it quick enough and treat, it's usually not a big deal, but if I get...
My hypoglycemia issues are not related to diabetes fwiw. That said, I tend to get hypoglycemia a few times a day. If I catch it quick enough and treat, it's usually not a big deal, but if I get too low (maybe once I get into the 50s mg/dl), then after treating (usually about 15 minutes later), I get so. freaking. tired. Like, barely able to stand up exhausted. Currently dealing with this as we speak, and it's very frustrating. My endocrinologist told me it's normal to get tired like this while recovering. I'm curious if anyone else deals with this? If so, do you have any advice for dealing with the fatigue?
Tildes might be too small of a platform for this. If no one deals with hypoglycemia here, please feel free to remove it. I thought with the prevalence of diabetes, it would be likely there are folks who encounter this.
EDIT: In case anyone ever stumbles on this, turns out it was an insulinoma. I finally had surgery. Don't give up hope, answers can be out there, even if you feel like there's no where left to look.
13 votes -
The end of tourism? (2020)
6 votes -
Offbeat obituaries honor loss with levity and brutal honesty (gifted link)
8 votes -
The great 2028 Olympic ticket crashout, explained (gifted link)
14 votes -
Game Changer S07E05 - "The Drinking Game"
17 votes -
What steps can the average user do to secure their data privacy?
With all of the identity verification laws in the pipeline, data breaches, and government overreach (mandated monitoring in new cars in the US), what steps can the average person take to secure...
With all of the identity verification laws in the pipeline, data breaches, and government overreach (mandated monitoring in new cars in the US), what steps can the average person take to secure their anonymity and data and device privacy?
I’m a tech-savvy person but nowhere near the level of a great many. It seems like in the face of overwhelming odds, making small changes is only a drop in the bucket. I have all the data encryption settings enabled on my phone, but I use services like Dropbox and rely on it heavily. I’ve always thought that if the product is free, you’re the product…but I pay for Dropbox, so they shouldn’t use my data for training AI (but they likely are). Setting up a personal cloud seems like a daunting task, as is getting involved in any of the small projects that people have going (decentralized networks, mesh…things, P2P, etc). I’ve focused more on securing my home networks recently so my Ubiquiti devices are restricted in what they can access, but I haven’t actually pen-tested my network yet. I have PopOS! installed on my home desktop because I got tired of Windows’ invasive…everything, but ultimately I don’t know what I’m doing.
There’s probably a great many people out there that feel like it’s hopeless to try to do anything because it won’t matter as there’s such a heavy push to invade, restrict, and monetize our digital lives. What can the average person do to take control of our devices and data?
34 votes -
Multiview Stereo Projection—Making Star Wars holograms IRL
5 votes -
Hank Green created an interactive tool that maps Artemis II mission photos and videos against official NASA schedules and telemetry data
25 votes -
Self-help writing tutorials
12 votes -
Weekly thread for casual chat and photos of pets
This is the place for casual discussion about our pets. Photos are welcome, show us your pet(s) and tell us about them!
14 votes -
Digiphile: Landfall x Aggro Crab showcase
17 votes -
India’s major airlines on ‘verge of closing down’ as high fuel costs sting
25 votes -
How do you preserve a 400 year old Swedish warship? Vasamuseet in Stockholm is tackling the continued challenge of maintaing the 17th century Vasa.
8 votes -
Eivør – Healer (2026)
7 votes -
Europe – One On One (2026)
3 votes -
NHTSA tells US Congress: advanced impaired driving detection tech isn't ready
39 votes -
Babylon 5 S01E08: "And The Sky Full Of Stars" - Episode Discussion
13 votes -
USA to mandate surveillance tech for new cars also determing fitness to drive by 2027
44 votes -
What are your go-to meals that you cook?
Specifically looking for quick/low effort/beginner friendly meals either for lunch or dinner. Ideally on the veg heavy & healthier side. Bonus if pantry-friendly. But not limited to any of the above!
47 votes -
Music streamer Deezer allows users to filter out AI music, so why does Spotify not offer the same?
46 votes -
New Steam Controller reportedly $99
64 votes -
US regulator to review Disney broadcast licences after Jimmy Kimmel joke about Melania Trump
32 votes -
Excision - Shambhala 2013 Mix | Dubstep lyrics (2013)
5 votes -
Icona Pop – Dance To This (2026)
7 votes -
We must keep age verification from killing anonymity online
53 votes -
TV Tuesdays Free Talk
Warning: this post may contain spoilers
Have you watched any TV shows recently you want to discuss? Any shows you want to recommend or are hyped about? Feel free to discuss anything here.
Please just try to provide fair warning of spoilers if you can.
5 votes -
Anthropic invests at the top tier in the Blender Foundation
13 votes -
Requesting resources for learning Ruby
Does anyone here have experience with Ruby programming? More specifically mRuby or DragonRuby for game programming? I came across DragonRuby as free for its 7th anniversary and I’m considering...
Does anyone here have experience with Ruby programming? More specifically mRuby or DragonRuby for game programming?
I came across DragonRuby as free for its 7th anniversary and I’m considering checking it out, but I have no experience with the Ruby programming language itself.
Most of my programming experience recently is in C# and Python, but I have some experience with JavaScript/TypeScript.
Does anyone know of good resources for learning Ruby coming from that background, or thoughts on if it is worth it to try to pick up?
I’m not really interested in LLM-based Ruby workflows, at least until I have a decent grasp of the language and syntax myself.
16 votes -
The Dealer's Tarot - Modern games to play with a tarot deck
23 votes -
United Arab Emirates says it will leave OPEC, a blow to the oil cartel
29 votes -
The oldest recipe in history - Hammurabi's Kanasu stew
15 votes -
"Why was I invited to Beast Studios?" - A comprehensive investigative analysis of YouTube's biggest channel
89 votes -
Ariana Grande announces new album 'Petal'
10 votes -
SUPER ZSNES - SNES Emulator
26 votes