-
10 votes
-
Is there a good microprocessor with 24-bit addressing?
The original IBM 360 had a 24-bit address space. https://en.wikipedia.org/wiki/IBM_System/360 Microprocessors of the golden age of home computing (Apple ][, TRS-80, Commodore 64, CP/M machines...
The original IBM 360 had a 24-bit address space.
https://en.wikipedia.org/wiki/IBM_System/360
Microprocessors of the golden age of home computing (Apple ][, TRS-80, Commodore 64, CP/M machines based on the 8080 and Z80) usually had a 16-bit address space, the 8086/8088 was a bit of an exception because it had a segmentation scheme to access 1 MB. (People thought it was awkward but I liked programming it in assembly language and Turbo Pascal) I remember the PDP-11 minicomputer having a 16-bit address space for user programs as well, the machine as a whole could be a lot bigger but an individual logged into it had access to a virtual "home computer" that ran BASIC and all.
24-bit was a natural evolution and by the late 1980s you started to see 24-bit chips like the 80286 (PC AT) the 65C816 (Apple IIgs, Ninteno SNES), the eZ80 and such. Even the bigger AVR8 processors (I love AVR8 assembly) can have more than 64kb of program memory (flash, read-only in operation) so they use 24-bit addresses for program memory.
In my mind we never saw a product of this generation that really took advantage of the address space, the 80286 in particular was called "brain damaged" by Bill Gates and operating systems struggled to exploit it. My take is that most of the chips of that generation were flawed in one way or another and were pretty quickly washed away by 32-bit machines when they became affordable in the early 1990s.
For an example of the difficulties, there is this project to make a retrocomputer that is a bit better than anything we had in the 1980s,
https://www.youtube.com/watch?v=0oYcu43N-lw
they are using the 65C816 but not taking advantage of the 24-bit nature. Instead there is a simple bank switching scheme which I think they thought would be easier to program and probably faster. The 65C816 just doesn't have enough registers and addressing modes for it to be really easy to work with far pointers.
So my question is, if I am a hobbyist who wants to revive the 24-bit generation and I want to have easy access to a 16MB address space, is there some CPU better that doesn't suck? I'd be happy with a CPU that doesn't have virtual memory or other facilities for an advanced operating system (write everything in "real mode") but something that supports an OS would be interesting too. Any ideas?
7 votes -
What music documentaries have you enjoyed?
I've realized recently how much of a throughline music documentaries and behind-the-scenes features have been in my life. Like watching whatever VH1 "Behind the Music" was on or watching Prodigy's...
I've realized recently how much of a throughline music documentaries and behind-the-scenes features have been in my life. Like watching whatever VH1 "Behind the Music" was on or watching Prodigy's "Electronic Punks" VHS for the umpteenth time.
What music docs have you really enjoyed historically or recently?
I've been working my way through Hip Hop Evolution on Netflix and it has been a real joy re-familiarizing myself with 90s and aughts hip hop and diving deeper into the 70s and 80s. I feel like they've done a really good job covering the history and the context for the different styles emerging.
Sound City details the history of the prolific LA studio where many well-known rock artists have recorded. There is a palpable reverence for analog recording and the Neve Electronics 8028 mixing console specifically. I thought it was interesting to learn about and hear from the different bands about their experiences there.
I'm guessing most people have seen Peter Jackson's recent one, Get Back, so for something more obscure... if you're a Depeche Mode fan there's a series of short docs on YouTube, one for each album up through Exciter I think. Really cool history on the band and the process of creating each album, cut together from interviews with the band members as well as many of their team and recording collaborators.
26 votes -
Tildes Userscript: Tildezy
Updated: June 29th 2023 Hello folks, Like many of the other people that have been around lately, I'm new to Tildes, I've been browsing it without an account since last Monday or so while waiting...
Updated: June 29th 2023
Hello folks,
Like many of the other people that have been around lately, I'm new to Tildes, I've been browsing it without an account since last Monday or so while waiting for an email response (thanks @Deimos), and in that time I've been working on a little tool to add some QOL features I thought would make my experiences with the site feel better.
I didn't plan on sharing it initially, because I didn't think I'd be able to get the javascript into a usable state, and I'm not fond of sharing my code in general, as I always get a big wave of impostor syndrome whenever I do, "What if they look at my messy code and see how silly I do some things", that sort of thing. But with Tildes I want to try to correct some of my internet behaviours, for years I've generally stayed as a lurker, never commenting or sharing content of my own, so, hello there, hopefully, I stick to my guns and you see more of me.
Onto the script itself, currently, I've built five main features into it all of them being rather minor on their own, I did do bug testing on everything and couldn't find anything else, but if you notice anything please feel free to report it to me or post an issue on the repo. It's easy to miss bugs when you've only got one set of eyes.
The GitHub contains installation instructions if you've never used a userscript before, and contains some images showing off each feature described below.
Comment Collapser
The comment collapser was built because, with my shakey hands, I had a few times when I would click someone's name instead of the [-] beside it. With this feature *Triple* clicking anywhere on a comment, be it text or header, will collapse it as if you used the [-] button. It's set to 3 clicks as sometimes I double-click to begin copying a line and didn't want the conflict, but it can be changed to any amount of clicks on line 132https://github.com/TeJayH/Tildezy/blob/main/Tildezy.user.js#L132
Group Stars/Favourites
Allows you to click a ☆ beside each ~group on the Tildes homepage to *favourite* it, moving it to the top of the list. Supports as many or as few favourites as you'd wish.Scroll to Top Button
Adds a button pinned in the top right of every Tildes thread that sends you back to the top of the page. No more scrolling or reaching for the home keyOpen Comments in New Tab
Replaces the default function of a posts "x comments" to open the page in a new tab instead of the current tabUser Colors
This one is the thing that I made the entire script for, an entirely useless feature but one I love for silly reasons. Replaces the stock username color with a randomized one based on a hash made from the user's username. So everyone gets assigned their own color which will always be their color anywhere you see them. This one helps multi-person conversations flow better in my headNew Comment Traveller
Gives you navigation buttons either beside the Collapse Replies/Expand all buttons when scrolled up, or pinned in the top right when scrolled past those buttons. Navigation buttons jump quickly between each new comment in a thread.Markdown Buttons
Adds a selection of various buttons under every comment box that automatically insert markdown for you. No more forgetting which bracket style goes first for a clickable URL.Settings
Not really a *feature* on its own, but it exists. Adds a "Tildezy Settings" beside the Log In/Username button in the top right of the header, which opens a settings window to enable/disable any and all features of the script. Features can also be disabled by modifying lines 26-41 in the script, allowing you to hard toggle everything *including the settings itself* off should you wish.https://github.com/TeJayH/Tildezy/blob/main/Tildezy.user.js#L26-L41
Hopefully, someone gets some use out of this with me, I look forward to chatting with you all.
EDIT
Refactored the code and added a new comment traveller feature based on some of the comments below.EDIT 2
Up to 1.3.0, we've got markdown buttons now, see comment explaining the change or check out the github readme120 votes -
SEO for niche topics
Hi All, As yet another reddit transplant (YART) I've been watching the drama on that other platform and reflecting on what the most important aspects of successful online discussions are for me....
Hi All,
As yet another reddit transplant (YART) I've been watching the drama on that other platform and reflecting on what the most important aspects of successful online discussions are for me.
One of the things that I value(d) most about reddit was the ability to use the keyword
reddit
in DuckDuckGo or Google searches to help me find more relevant and helpful content about a variety of niche subjects. So far, it seems to me like Tildes has some potential to fill this role based on its emphasis of thoughtful text content. Also, these types of searches add credibility to a site when random internet browsers stumble across a thread discussing their exact question.One thought that I had along these lines was that people who care about this type of thing could make a concerted effort to transport content from reddit and other sites to be shared here. I don't think it would be appropriate to just copy and paste text without adding at least a bit of original thoughts or context. However, I often find myself researching niche products or ideas to such an extent that I could write up a nice summary of all my findings. A post like that could be a nice crash course to others or a fun way to introduce people to ideas they didn't know about.
Would people here be interested in consciously doing this type of thing? We could all make nice amalgamations of information we think is important as we independently research topics and post them here to boost discussion and boost Tildes threads in web search results.
18 votes -
What are your thoughts on social nudity?
Got your attention yet? I'm a mod of the nudism sub on that other site, and I've set up camp on KBin and Lemmy in case our users want to revolt, but personally have been enjoying Tildes quite a...
Got your attention yet?
I'm a mod of the nudism sub on that other site, and I've set up camp on KBin and Lemmy in case our users want to revolt, but personally have been enjoying Tildes quite a bit more, despite not having a specific place to host our community (but that isn't what Tildes is for....)
My wife and I have visited many nudist or clothing optional resorts, campgrounds, and beaches in the US and overseas. These are non-sexualized family friendly places, just like any other resort, summer camp, or beach you've been to, except that the vast majority of people aren't wearing clothes. There are multiple worldwide organizations that represent nudists, provide accreditation to resorts and clubs, making sure everyone is "playing by the rules" and maintaining a level of decorum.
Next month we're headed back to a clothing optional music festival that we thoroughly enjoyed last year.
There is something completely freeing about being outside in the sun/breeze/ocean/lake/whatever with no clothing, no connection to your daily life. We both have stressful jobs that require us to be "on-grid" almost all the time, and being able to make these escapes are a way to completely disconnect from the stresses of daily life. And of course, swimming in clothing, and then having to sit around in those wet clothes for the next hour is just a ridiculous idea.
So what say you Tildes (Tilders? Tildesers? Tildees?)? Have you ever skinny dipped or visited a nude beach? Got any questions about the logistics of it?
74 votes -
Filtering site domains on Tildes
When I learned about filtered tags I thought this is an underated feature I missed on Reddit, and save me so much hassle of screening content I am not interested. I think filter sites or specific...
When I learned about filtered tags I thought this is an underated feature I missed on Reddit, and save me so much hassle of screening content I am not interested.
I think filter sites or specific domains would make my homepage so much cleaner, like filtering all BBC and CNN posts, what do you think?.
13 votes -
One Piece theory discussion thread
One Piece is known for extreme foreshadowing and grandiose world building, which allows for some interesting fan theories. So, let's see what you've got :) I'll start. I've always suspected that...
One Piece is known for extreme foreshadowing and grandiose world building, which allows for some interesting fan theories. So, let's see what you've got :)
I'll start.
I've always suspected that Imu was from the Void Century or earlier, due to them having history or knowledge of the giant straw hat frozen in impel down, and with the recent chapter it's looking moreso indicated.
My thoughts about how and why he became immortal, are because of the Op Op fruit, but the reasoning I think is because it was necessary to beat Joy Boy the first time around.
Joy Boy, or at least Luffy's manifestation of it, seems to sap vitality whenever it's used. My suspicion is that the Op Op fruit is necessary in order to achieve a full form Joy Boy, or else Joy Boy will just die of old age. So, Imu used it in order to steal that opportunity from Joy Boy in the past.
So, if I had to guess, Law will sacrifice himself for Luffy toward the end of the show to allow Luffy to permanently enter the Joy Boy state and bring eternal freedom to everyone!
13 votes -
Thoughts on link aggregators vs communities, and other musings
I recently made a post here on Tildes in ~food about a pizza I made, and linked it to an Imgur album showing part of the process. This seemed interesting to me, and didn't think of it as an image...
I recently made a post here on Tildes in ~food about a pizza I made, and linked it to an Imgur album showing part of the process. This seemed interesting to me, and didn't think of it as an image post per-se. While most of the responses were positive, and we talked about pizza-making, it clearly did upset some people who viewed it as an image-only post.
Thinking through things, image only posts can be a bad thing - but there are plenty of good reasons to make image posts as well. Would images always be ok if they are original content? Certainly doesn't completely eliminate the possibility for people to shitpost, but does reduce it considerably.
Would it be acceptable to allow image posts, but require a certain number of words/characters attached to each post? This seems like it would be pretty easy to implement, and forces the user to actually make some effort, as opposed to just "karma farming".
AND ANOTHER THING!
Subscriptions. I would really like to see more specialized groups/communities here, and the current implementation I see is encouraging. ~games now has sub-groups, ~games.tabletop and ~games.gamedesign. This same system could be extended to sports. ~sports.motorsport.formula1, ~sports.esports.leagueoflegends, etc.
55 votes -
Any "The Leftovers" fans on Tildes?
One of my favorite subreddits was about the show "The Leftovers". I don't know anyone in real life that has watched it and seeing what people thought while watching the show / after their first...
One of my favorite subreddits was about the show "The Leftovers". I don't know anyone in real life that has watched it and seeing what people thought while watching the show / after their first watch was great.
My first watch (and rewatch). Beware, it includes spoilers! Like 99% of it is spoilers.
When I first watched season three had just came out. I was ~20 year old and quite impatient person. I binge-watched it eager to find out where the 2% all went. I finished it and didn't think much of it... or so I thought. I put it in the same "basket" with Lost and that was it.
Few weeks after finishing it I was catching myself thinking about the characters, about their story, about the feelings I had while I was watching the show... I am a huge fan of Max Richter (and cinematic music, in general) and every time youtube plays me The departure, it's like I am seeing the hopelessness in the eyes of most of the characters. It's the only show that has affected me that much so far.
I recently rewatched it, and having known the end, the entire journey through the seasons was totally new experience. I knew what happened to everyone and I was just observing all of their emotions, behavior, choice of words... I found the show somehow better than my first watch.
Of course, besides the story, the cast had a crucial part to how great this show was for me. Everyone played their role beautifully. The only character that was somehow redundant (in its current state) was Jill.
So, has anyone here seen the show and what are your thoughts about it?
26 votes -
Came up with some cocktails to represent my D&D party :)
Was a fun little project. I worked on the drinks myself first, then gave them to my roommate for a blind taste test, and asked her to describe the kind of character she thought the drink was...
Was a fun little project. I worked on the drinks myself first, then gave them to my roommate for a blind taste test, and asked her to describe the kind of character she thought the drink was about. If she wasn't at least mostly right, then I'd have to try again - but they somehow ended up a lot more accurate than I expected to be, despite the fact that she knows nothing about this D&D game, haha. I guess we're just really on the same wavelength?
Anyway, without further ado, here are the recipes! If there are any other mixologists on here, I'd love to hear what you think - and you want to try (something like) any of these drinks but are missing an ingredient or two, let me know and I'm happy to try to suggest a few possible substitutions.
Avery
- 0.75 oz chartreuse
- 0.5 oz montenegro
- 0.5 oz black walnut liqueur
- 0.5 oz distilled water
Liz
- 0.75 oz peated gin
- 0.75 oz crème de violette
- 10 drops lemon juice
- yuzu bitters
Matoya
- 1 oz mezcal
- 1.5 oz lemon tonic
- cardamom bitters
Morgana
- 1 oz plum gin
- 1 oz white rye
- 1 oz distilled water
- lavender lemon bitters
Sylvaire
- 0.75 oz cognac
- 0.25 oz pomegranate liqueur
- 0.25 oz grand marnier
- 0.75 oz peach juice
- peychaud’s bitters
V
- 0.75 oz peated gin
- 0.25 oz galliano vanilla
- 0.25 oz absinthe
- 1 oz peach juice
- hibiscus rosehip bitters
- cucumber twist (i.e. take a thin lengthwise slice of a baby cucumber and curl around the inside of the glass)
10 votes -
Two weeks with a Pixel 7 Pro - My experience
To set the stage, I've always been a fan of non-nonsense reliable phones. My cellular usage started with a Nokia brick, moved on to a few Motorolo flip phones, then entered the Blackberry world as...
To set the stage, I've always been a fan of non-nonsense reliable phones. My cellular usage started with a Nokia brick, moved on to a few Motorolo flip phones, then entered the Blackberry world as soon as data service become available in my area. With the demise of RIM, I went o a Moto X, made a misstep in to the Samsung world, then to a Pixel, a Pixel 3XL, and now a Pixel 7 Pro.
I only made the jump to the 7 Pro due to the 3XL starting to show it's age. The charging part wouldn't always connect, the battery would barely make it through the day, and the case was starting to fall apart. Of within three days of removing the case I dropped the phone, cracking the glass back....
The 7 Pro is awful to hold, without a case. I was waiting a week for the Spigen Liquid Air case to show up, and during the time I hated using the phone. The camera bulge felt awkward and sharp, the surfaces were slippery and the phone would slide around. The rounded edges of the screen would produce phantom taps, just all around a bad experience. Now that I've added the case though, it feels a whole lot better.
The user experience has been fairly good, thought not without some annoying bugs. I did the migration from my old Pixel to my new one, and while it did a reasonably job, preserving the launcher layout etc, the app installation process was strange. Google Play tried to install all the apps, but was stalled. I had to tap on each app to manually install them, they were just sitting there "Pending...", whether I was on battery or charger, WiFi or mobile. Once everything installed, and I added my accounts, it was fine, and now apps auto-update.
Notifications are acting a bit funny with Reddit is Fun, although that won't be an issue for much longer :-(. If I get notified of Mod Mail and a Message in RiF, tapping the notification message does nothing. This worked fine on the 3XL. I've also had one spontaneous reboot, and one night where the phone was plugged in, but decided not to charge. Lots of people complained about heat issues, which was a problem for me on the 3XL, but only in extreme cases. After sitting out in full sun with the 7 Pro, I'd say it is about the same, possibly a bit better regarding it's overheating. Many people also reported that the phone would feel warm/hot in their hands for the first few days as it "learned" your behavior. Never experienced that. Battery life and (lack of) heat levels have remained the same.
32 votes -
What board games have you played this week (to 19th June)?
It's been another week and I thought – if there's not too much protest – we could all talk about what we've been playing again. Personally I got in the one game of Hegemony at three players. I've...
It's been another week and I thought – if there's not too much protest – we could all talk about what we've been playing again.
Personally I got in the one game of Hegemony at three players. I've played it twice before at two, and adding the third player really took the tension up a notch.
I played as the proletariat, which I think is the simplest class to play. Once again played no strikes or demonstrations, so I really think I might be missing a concept as it never seemed like a worthwhile pursuit. But it's really hard to predict how pulling any particular string in this game will resolve, so I think I'd just go for it in a subsequent game to see what happens.
The capitalists, like in previous games, started very weak but by the last few rounds were raking in the points. I managed a very narrow victory of four or five points over the capitalists. Middle class, who had to take a loan mid-game, never really recovered and were twenty points behind. Fun game, I can see why it's popular.
So what have you all managed to get played this week?
20 votes -
With rising costs of just about everything, what are some frugal things you do to save some cash?
I'm new to tildes and thought I'd start a topic about frugality, as it's something constantly on my mind. (hopefully ~life is the right place, apologies in advance if not!) I try to look at...
I'm new to tildes and thought I'd start a topic about frugality, as it's something constantly on my mind. (hopefully ~life is the right place, apologies in advance if not!) I try to look at spending a few ways; cost, environmental impact, and time. The time is important, because some frugal tips take up so much time that they end up not being very frugal in the long run. So here are some of the things I've done or started doing in the past few years to try and bring our monthly budget down without giving up much.
Started using Flipp, Ibotta and Flash Food.
These three apps aren't going to save you a ton but enough to make a difference without much effort. Flipp uses your location to gather all the circular ads for stores near you so you can compare prices on items more efficiently. Ibotta is a rebate app that is quick and easy, just claim anything you might buy and once you hit 20 bucks you can redeem for gift cards or cash. The key is to only buy things if it ends up being cheaper than the option you normally buy, or stuff you buy already. Flash Food is a new favorite and isn't everywhere but can be really beneficial for produce particularly. Participating stores list items that are overstock or near expiration for significant discounts. You buy right on the app, and head to the the flash food station in the store to pick them up. Mine is by the self checkouts, there's a big freezer with the logo stationed there. They have huge produce boxes often for only 5 bucks! The assortment of goods will vary by store and time of day so I check every so often if I know I'll be near or going grocery shopping anyways.
*If you don't have flash food, there's another called Too Good To Go, It's not in my area so I can't say how useful it is. However, it works similarly for stores but also includes restaurants.
Switched to a double edged safety razor
with a bit of practice, they are just as easy to use as a cartridge razor. The best part is after the initial cost they are CHEAP and you aren't throwing away plastic cartridges anymore.
Vacuum Sealer and Deep Freezer
I slept on a vacuum sealer for far too long, theses keep frozen goods better for so long without worry of freezer burn. Combine that with Flash Food, and you can really save without much effort.
Switched to a Menstrual Cup
I did this many years ago and never looked back. I will be upfront and say that it isn't going to be for everyone, we are all shaped different! However there are many more options for reusable products these days if a cup just doesn't work (discs, cloth pads, and period panties to name a few.) I have endometriosis and I'm a heavy bleeder so this has easily saved me thousands in disposable costs and worked better for me anyhow.
Gardening
This one is tough because it's easy to go over board with costs, but if you get creative with containers and boxes, buy loads of dirt instead of bags, and start from seed indoors and it can be a pretty cheap way to have fresh produce. Add in the vacuum sealer or canning and you can make it even more worth the time. To go with that, I collect rainwater. This is dependent on your local regs of course so find that out first!
Instead of going out to dinner with friends, host pot lucks instead.
This saves everyone money, you still get to see your buds and have a super nice meal. Throw in some board games and it's sure to be a good evening and only cost you the price of a dish.
Rotate your streaming services and other subscriptions
You can't watch them all at once, so why pay for them all the time? I'm sure they are all about to make it harder to share following in Netflix's footsteps so it's a good time to sit down and look at what you are paying for and what you are actually using. You'd be surprised how easy it is to shave off some costs.
Eliminate single use items where you can
I've already touched on this, but things like paper towels, paper plates, plastic storage bags etc add up if you are using them frequently. There are so many things that fill our landfills just for convenience and you are paying for the privilege! There are so many great reusable items these days, it's become more affordable for upfront costs. Coffee pods, makeup wipes, razors, swiffers, bottled water -- it's never ending and all cost more than their frugal alternatives. For instance, I drink tea and switched to a reusable diffuser and loose leaf as well as using an electric kettle instead of turning on the stove or microwave using much less energy and the used tea is good compost and breaks down faster than the bagged variety.
Use your dishwasher
It seems silly, and obviously not everyone has one, but a relatively newer dishwasher is going to use a lot less water than handwashing and it disinfects better.
Feeling like you need that decor item? Try moving decor around instead
You should be deep cleaning your home anyways, and if things feel stale and you are itching to spend try moving things around instead. You'll often find that you are just bored with the current layout of things. So while cleaning, switch it up!
Keep inventory of your freezer
Deep freezers are easy to lose things in, or forget are in there when you go shopping. I use a notes app shared with my husband with a list of stuff in the freezer so we don't buy things we already have and it's easier to figure out a meal at a glance at the list.
At least try to fix or mend things instead of buying new
It's certainly not feasible with some things anymore, and sometimes it ends up being more expensive but it never hurt to take a second look at something before rebuying. Mending clothing, buying a cheap part etc can save you some money and keep things out of the landfill.
I'm excited to read any ideas you guys have. My next venture is going to be meal prepping, so any tips for that would be extra awesome!
105 votes -
What games have you been playing, and what's your opinion on them?
What have you been playing lately? Discussion about video games and board games are both welcome. Please don't just make a list of titles, give some thoughts about the game(s) as well.
69 votes -
Does Tildes need a new icon?
I was just thinking about it. Tildes' current icon looks like a /r/wallstreetbets graph, haha. I think we could use a nice mascot that's based on a cute animal of some sort. :) Would love to hear...
I was just thinking about it. Tildes' current icon looks like a /r/wallstreetbets graph, haha. I think we could use a nice mascot that's based on a cute animal of some sort. :)
Would love to hear our community's thoughts on this, thank you! :)
22 votes -
What is your least used piece of kitchen equipment / what do you "regret" buying?
I've got a small collection of equipment. I've been really cautious about buying more. There are a few things I regret buying. A series of knives that were good enough, but actually garbage,...
I've got a small collection of equipment. I've been really cautious about buying more. There are a few things I regret buying.
-
A series of knives that were good enough, but actually garbage, rather than just spending £30 on a victorinox or similar.
-
A garlic thing which looks cool but is hard to use. Garlic crusher by Royal VKB
And I was wondering, are there any bits of kit that you thought were going to be great but which ended up in the back of a cupboard or drawer?
76 votes -
-
Tagging proposal: .wiki suffix
There have been recent posts that reflect in-depth knowledge and significant effort to provide comprehensive information on a topic (examples here and here). Yes, it's possible to bookmark these...
There have been recent posts that reflect in-depth knowledge and significant effort to provide comprehensive information on a topic (examples here and here).
Yes, it's possible to bookmark these posts for individual reference. However, Tildes doesn't have a pinning feature given the current very loose organization of subjects/interest communities.
In that absence, I'd like to suggest a globally used ".wiki" sub-tag appended to topics, to narrow search results to highly informative entries on a subject.
Please let me know your thoughts on this.
I'd go ahead and add the .wiki sub-tag to a couple of entries myself, but I've lost tagging privileges after a long stretch of inactivity. Please consider that I'm interested in volunteering again.
21 votes -
What are your thoughts on qualifying/provisional grid for the Canadian F1 Grand Prix?
18 votes -
Delta Green handler advice
I’m going to run Delta Green for the second time tomorrow and I’m excited! However, I’m looking for some tips on running a session and/or your favorite scenarios to run. What are your thoughts?
7 votes -
Can someone explain the appeal of golf to me?
So, I’m sitting at an airport lounge right now and the thing that is on the bar TV is golf. The (only) folks watching it are the most typical business folk you can imagine. Is golf just the modern...
So, I’m sitting at an airport lounge right now and the thing that is on the bar TV is golf. The (only) folks watching it are the most typical business folk you can imagine. Is golf just the modern version of polo (the ones with the horsies)? As someone who prefers to watch hockey and finds basketball and baseball to be less entertaining. Golf goes the extra distance of not just being uninteresting, but irritating by how snobbish it feels.
I’ll confess that I had a couple of drinks already so I’m a bit extra, but I’m genuinely curious if my take is wrong and I’m missing something.
Edit: another thought, will Millennials and Zoomers don’t embrace golf at all and golf resorts become a rarity in the future?
30 votes -
Naruto discussion thread
What are your thoughts on Naruto as a series? Anything specific you want to highlight (plots, characfers, themes, arcs...). Thoughts on manga, anime, movies, novel... all welcome. Off topic Since...
What are your thoughts on Naruto as a series? Anything specific you want to highlight (plots, characfers, themes, arcs...). Thoughts on manga, anime, movies, novel... all welcome.
6 votes -
I gave Lemmy, Kbin, and Beehaw a chance. I think I'll be sticking with Tildes.
This month, I have been exploring reddit alternatives due to the ongoing events currently going on the site. It resulted in me requesting to be invited to this site, but I also played around with...
This month, I have been exploring reddit alternatives due to the ongoing events currently going on the site. It resulted in me requesting to be invited to this site, but I also played around with Lemmy, Kbin, Beehaw, and other sites within the lemmy/mastodon network. The conclusion I have come to is that these federated sites shows a lot of potential into becoming something interesting if proper care is put into it by the community and the mods and admins. But as it is now, it is fundamentally broken, ill-equipped to handle the userbase it has inherited from the reddit fallout, and potentially dangerous if steps aren't taken to protect users and their communities.
The signature feature, greatest strength and biggest weakness of these sites all lie within the "fediverse" (which I hate the term. gives me "metaverse" vibes.) From how I understand it, There are several different instances of lemmy that acts as its own site, hosts it's own content and users, and can have its own rules, features, and restrictions. All the content of these instances can be featured on other instances, basically allowing you to see all the communities, users, and content within the fediverse without having to leave the instance you are on. The admins are also able to restict the content of other instances from being shown on their site, though how this works I don't completely understand, and I'll go into detail later.
Anyway, I figured all this out through a lot of trial and error. When I first tried to search for and join Lemmy, I ended up joining the Canadian instance by mistake, and my feed was mostly Canadian related news and communities. I eventually figured out there were several differences I could join. I ended up joining lemmy.world and kbin because they were the most popular, but I basically had to create sepperate accounts on each.
I started out spending most of my time on Kbin. I was mostly following gaming communities, hobby communities, a few tech communities, and the lgbtq community. one thing I noticed in the comments in some of the lgbtq posts were a lot of transphobic comments. Granted they were heavily downvoted, and there was a lot of pushback from the community members, but they were featured near or at the top of the comments, as if I were sorting by controversial on reddit.
I also noticed there were a lot of pro-Russian articles featured in the news, with the majority of the comments pushing Z-propaganda. Apparently a lot of these came from an instant called lemmygrad, which is a pro-China, pro-Russia instance of lemmy. To the fediverse's credit this particular instance is blocked by most other instances, but it didn't stop me from seeing many of these posts featured, or users from that instance commenting in other subs.
At this point I was starting to get a little skived out. It gave me the same vibes Voat gave me during the reddit migration of 2014. I decided to try lemmy. world instead, since it seemed a little more down to earth. Had a few of the same problems there, though I began to sort some of them out as I began to learn the site better. It was around this time when the news that Beehaw, one of the instances that hosted many of the lgbtq and other communities I followed basically unfederated lemmy.world and a few other popular instances due to harrassment from the instances. At this point I was getting fed up, but thought, maybe I'll stick it out, and just follow Beehaw and Lemmy. world separately. After joining beehaw, I posted some of my grievances on the chat community there. In the end, I ended up getting an inbox flooded with notifications, which I couldn't turn off, many of which were replies from the post ranging from supportive to accusational, to some harrassing DMs. This happened on beehaw, which was supposed to be one of the "safer" instances, but many of the replies came from off the instance, and even from instances defederated by beehaw. What's worse is I even posted one of the means spirited replies as an example, and many people accused me of making it up because they couldn't find the reply itself, which I guess you can or cannot see depending on the instance your on and WHO THE FUCK KNOWS AT THIS POINT!
I ended up deleting all my accounts on the fed instances I had accounts on, except for beehaw, because the interface would often keep infinitely loading. The gripes mentioned above aside, I would frequently have issues with the site breaking, up and downvotes not showing the proper numbers, replies disappearing into the ether, accidentally double posting, seeing infinite amounts of the same comment posted over and over again, infinite loading, and so one, no matter what instance I was on.
At this point I have given up on the fediverse. Maybe if all the bugs are ironed out, and the site(s) are better managed, maybe I might return to it. But as it is now there are just way to many fundamental flaws that get in the way of me getting any enjoyment out of it. And none of the communities ever felt like a replacement for the subreddits I left behind.
That all being said, I have enjoyed my time on Tildes so far, and I think it is due to the fact that it is a smaller and better managed site than anything on the fediverse. The discussions here feel a lot more down to earth, the communities safer. And hell even the disagreements actually worth engaging in. Granted, there are a lot of niche topics missing here because subs aren't community created, but it's nice being able to view a site, and not have to self filter half the site because anything and everything is overloading my feed.
Anyway, forgive me if this was hard to follow. I wrote this at 4am with not a lot of clear direction. Just wanted to get my thoughts on lemmy and the fediverse out there, and why I decided not to stick with it.
203 votes -
Modern multiplayer games making matches unfair by design, what are your thoughts on Engagement Optimized MatchMaking (EOMM)?
Title Anyone that has been playing multiplayer games for a while must have noticed the recent shift when it comes to multiplayer games matchmaking trends. Multiplayer games were no joke, they were...
Title
Anyone that has been playing multiplayer games for a while must have noticed the recent shift when it comes to multiplayer games matchmaking trends.
Multiplayer games were no joke, they were hardcore, with high entry barriers where the more experienced players would dominate the field, and newer players were nothing but fodder for them. If you were new to a game you could expect to lose most of your matches for a while, but if you were to put in the effort, improved, learned the game and persevered trough, then you'd be rewarded by becoming the one to dominate the field instead.
Nowadays it's different, anyone can pick up a game, no matter how experienced they are, and expect to win roughly half the games they play. From newcomers to pro players, everyone seems to be relegated to a strictly forced 50% winrate policy. But how is that possible?The focus in game design seems to have shifted from rewarding individual oriented play, to rewarding more teamwork oriented skills instead. The focus on teamwork has been pushed so far to the point where, if your team isn't putting in the effort, no matter how good of a player you are, you won't be able to compensate for your team lack of skills and they'll be the reason why you lose the match. There wouldn't be anything inherently wrong with this, especially in a team game, if it weren't for the fact that it really feels as if the better you get at the game, the worse your teammates get.
This is how they're able to make everyone's winrates hover around 50%. Sure if you lose too much the algorithm will start giving you better teammates, but if you win too much then the quality of your matches will be abysmal, leading to a point where all the good players get effectively punished and can never fully see the fruits of the effort they put for actually learning the game.
Players have expressed for years their frustrations against this balancing method, as many felt cheated due to losing too many matches due to factors completely out of their control, but so far nothing has changed.This sort of matchmaking algorithm can also be used to impose certain "patterns" in the wins and losses that a player experiences while playing, in order to increase their engagement. A study from 2017 published for EA , goes to show how players are more likely to quit a game if they incur in specific win/loss patterns. For example, of the entire playerbase, 5% of them will quit the game if they were to incur in three losses in a row.
Here's an excerpt from the paper's abstract
"Current matchmaking systems depend on a single core strategy: create fair games at all times. These systems pair similarly skilled players on the assumption that a fair game is best player experience. We will demonstrate, however, that this intuitive assumption sometimes fails and that matchmaking based on fairness is not optimal for engagement"This is just a window into what goes trough the developing process of a multiplayer videogame these days. The paper is from 2017 but troughout these years this approach to multiplayer games has been adopted and developed to the point where every single multiplayer experience, from PC to mobile to consoles, feels artificially crafted and finely tuned to keep you as hooked for as much time as possible to the screen.
This doesn't stop to win/loss patterns, another example would be gears of war, where the devs have admitted to make your bullets do more damage on your first match of the day, because their studies showed that people were more likely to play troughout the day if they were to win the first match they played. These same devs would later go to make Fortnite, which would go on to generate billions in revenue for years.What are your thoughts? Do you prefer the modern take to make multiplayer games more accessible to everyone, or would you rather go back to the days where communities would develope more organically?
.
15 votes -
General surgery resident in the US on a 28 hour shift. AMA!
Hi everyone! I am new to Tildes and wanted to say hi to the ~Health community. I am on a 28 hour emergency general surgery call today and have a bit of downtime. I also noticed that the post on...
Hi everyone! I am new to Tildes and wanted to say hi to the ~Health community. I am on a 28 hour emergency general surgery call today and have a bit of downtime. I also noticed that the post on the moral crisis of America's doctors had some interest so I thought I would answer any questions about that or training to be a surgeon in the United States. I am finishing my 2nd year of a 7-year training program. Ask me (almost) anything!
44 votes -
A Taste of Gold and Iron by Alexandra Rowland
Preface: I usually post my book reviews on /r/Fantasy. With reddit's future being uncertain right now I figured I'd experiment with posting on here, let me know if you're interested in future...
Preface: I usually post my book reviews on /r/Fantasy. With reddit's future being uncertain right now I figured I'd experiment with posting on here, let me know if you're interested in future reviews. I should add that this probably isn't my most interesting book review ever, it just happens to be my latest read.
Please feel free to let me know if you'd like to see more fantasy book reviews in the future, I am new to Tildes.Recommended if you like: ottoman empire inspired setting, royalty/bodyguard romance, MC with anxiety, queernorm setting, low-magic setting, m/m romance, homoerotically washing each others' hair, royal palace slice of life, fake-dating (sort of), gay yearning
Blurb
Kadou, the shy prince of Arasht, finds himself at odds with one of the most powerful ambassadors at court—the body-father of the queen's new child—in an altercation which results in his humiliation.
To prove his loyalty to the queen, his sister, Kadou takes responsibility for the investigation of a break-in at one of their guilds, with the help of his newly appointed bodyguard, the coldly handsome Evemer, who seems to tolerate him at best. In Arasht, where princes can touch-taste precious metals with their fingers and myth runs side by side with history, counterfeiting is heresy, and the conspiracy they discover could cripple the kingdom’s financial standing and bring about its ruin.
Review
- This book starts out by throwing you in the middle of a handful of political machinations already underway - the inciting incidents have basically already happened off-screen beforehand. That is fine, but don't expect massive developments on these plots or new plot points to really matter. The book basically goes "this is the political background for this story" and then takes its time for the rest of the book to focus on the romance.
- I should find this book too fluffy and romancey for my taste but I couldn't help but loving it. Some of it is really dumb, it's transparently obvious that the narrative only exists to facilitate a lot of gay yearning, but I also found myself very much enjoying all that gay yearning.
- I feel like I logically shouldn't have enjoyed this so much, because the worldbuilding is negligible, the magic (touch-tasting, i.e. sensing the origins or compositions of metals) is an afterthought for most of the time, and the plot constantly takes breaks for everyone to talk about their feelings a lot. But somehow, I was totally here for all that and was sad when it was over.
- There were various aspects I found a bit grating, from some very obviously contrived setups to make the two leads have to get closer (or make drastic choices that bind them together) to some of the side characters sounding rather anachronistically sassy, to just how often the plot takes a break for people to talk about their feelings. I can list a ton of things this book does "wrong", but none of them actually managed to tip the scale away from me being into it, don't ask me why. Maybe I was just in the right mood for it.
- The setting is very queernormative and progressive in other ways, while maintaining a historical veneer in terms of technology and (for the most part) style. The use of neopronouns for some side characters caught me a bit off guard in the audio narration, but it's done with such a complete nonchalance that I assume many queer readers will find refreshing.
- The main character has anxiety and panic attacks (without quite having the language to articulate what he suffers from, and equating it with cowardice), and I thought that topic was treated pretty well. Then again, everyone that matters is super supportive and understanding the whole time, so it doesn't really serve as a source of conflict for longer.
- I've said that action often takes a backseat to the romance, but I found the action that was there pretty good.
Discussion
This contains significant spoilers, read at your own risk
- I went from writing "No COME ON you are not seriously getting fake married now right 😂" to "ok that they now can’t fuck because it‘d consummate the marriage and take the option of annulment from them is delicious and hilarious" into my review notes within minutes. That development and the ensuing conflicted tention was fun.
- For the longest time, I thought Lt. Armidan (sp?) who had the counterfeit coins in their (jer?) office was the same character as Melek (sp?) the guard/Kahia (sorry if I am butchering the spelling of everything, I listened to the audiobook), and was confused why they'd trust that person again.
- I wrote down a dozen things that I found annoying or dumb but just as many things that I found adorable, hilarious, wonderfully fitting or hot.
In conclusion: I really liked this, but I completely understand anyone who didn't. The only previous Rowland book I'd read is A Conspiracy of Truths (link to my review), where I had the opposite experience: I found it well crafted but didn't enjoy it all that much. This one just happened to vibe more with me.
9 votes -
I love space horror and sci-fi with horror elements. Any recommendations around?
New to Tildes, so I wanted to kick things off by asking—do you have any sci-fi horror recs you reckon I might be interested in? Here's some of what I've read: Annihilation by Jeff VanderMeer Solid...
New to Tildes, so I wanted to kick things off by asking—do you have any sci-fi horror recs you reckon I might be interested in? Here's some of what I've read:
Annihilation by Jeff VanderMeer
- Solid read, but definitely more about the weird vibes than anything else. Sequels didn't hook me as much.
Blindsight by Peter Watts
- I generally try not to DNF my reads. But this was one of them. I'm sorry, I just can't buy vampires in a sci-fi world that's trying to take itself seriously, without proper grounding. It's also incredibly dry.
Dead Silence by S.A. Barnes
- A pretty solid read, I like how the narrative is told via flashbacks and then suddenly terminates in a way that makes you want to know more, in the most tantalizing of ways. Unfortunately I thought the reveal of the lurking horror was incredibly meh, and it went mostly downhill from there.
Diamond Dogs by Alistair Reynolds
- Fantastic novella with a mysterious locale functioning as the backdrop of the setting, and the horror elements being both external (as in the setting) and internal (how far our characters are willing to go to crack the mystery).
Paradise-1 by David Wellington
- A really solid space horror novel, with a pretty interesting protagonist trio (including a self-aware robot with plastic bodies) and it has some genuinely uncomfortable moments of horror that I can absolutely get behind. My main issue though, is that it ends in a cliffhanger and I'm still mad about it.
Salvaged by Madeleine Roux
- Decent read, but the horror reveal came super early and in reality, it's less space horror than it is human drama involving horror elements which is basically the Protomolecule from the Expanse. Fun read though, if you're okay with that.
Salvation Day by Kali Wallace
- I thought this was somewhat bland, the concept and initial plot were interesting, but it trails off and overall, overstays its welcome with some scenes that pacing-wise, feel like they belong in the middle part of the book. Some solid moments of horror though.
Ship of Fools by Richard Paul Russo
- Probably the quintessential space horror book for me. A fantastic setting, an intriguing protagonist narrative interspersed with religious themes and a genuinely solid pacing, horror-wise.
Six Wakes by Mur Lafferty
- This would have been an interesting murder mystery in space... if it actually had good and compelling characters. It does not. Everyone feels like a cardboard cutout with One Defining Trait and that's it.
The Luminous Dead by Caitlin Starling
- This was... a disappointment. I still rank it amongst the worst books I've read, simply because the protagonist is unbelievable. I can buy a protagonist doing things under duress or from being manipulated, but I cannot buy a protagonist who constantly flip flops 5 minutes after making a decision and then hooks up with the person who was manipulating her, because yay fucked up sexytimes! Look, I want queer representation in my books too, but this came off too much as just doing it for the vibes. Queer rep deserves better than stupid protagonists.
Walking to Aldebaraan by Adrian Tchaikovsky
- A great novella; it's a retelling of a really well-known story but reframed in sci-fi terms, and I love that approach.
We Have Always Been Here by Lena Nguyen
- A really haphazard book I think; I like some things about it, but others just don't make sense, or contradict it. E.g. the protagonist is a psychologist, but is absolutely horrible at reading human emotion and speech, and a loner who prefers robots. Throw in some Michio Kaku-esque pseudoscience and while it's not a horrible read, it feels like a book that could have been better with a rewrite. The setting and suspense are pretty neat though.
So, as you can see, I have met the good, the bad and the ugly of sci-fi horror. I'd love to find more! For non-book horror or horror adjacent works I've enjoyed, those include Alien, The Thing, Event Horizon, Sunshine, Underwater and Dead Space. Please don't recommend tie-in novels though; I can find those myself and generally I've found that they're not really up to par.
27 votes -
Fresh Album Fridays: Sigur Ros, Queens of the Stone Age, King Gizzard and The Lizard Wizard, and more
Good morning. This is a thread to discuss new album releases arriving at our doorsteps today. I'll start with some big names Sigur Ros - ÁTTA (Ambient, Modern Classical) Spotify A surprise...
Good morning. This is a thread to discuss new album releases arriving at our doorsteps today. I'll start with some big names
Sigur Ros - ÁTTA
(Ambient, Modern Classical)
SpotifyA surprise release! I believe this is the first album with all three Sigur Ros members since Valtari in 2012. Initial reponse seems positive but mixed, should be worth checking out for fans
Queens of the Stone Age - In Times New Roman...
(Alt Rock, Hard Rock)
BandcampBeen a short while since the last QOTSA release. Initial reponse to this one seems very positive.
King Gizzard and The Lizard Wizard - PetroDragonic Apocalypse; or, Dawn of Eternal Night: An Annihilation of Planet Earth and the Beginning of Merciless Damnation
(Metal, Prog Metal)
Bandcamp / Tildes DiscussonKing Gizzard on a roll and don't seem to be stopping. Looks like this one is a move to a more metal sound. Could be the album of the week.
Killer Mike - MICHAEL
(Hip Hop, Concscious Hip Hop)
BandcampFirst album away from Run The Jewels since 'R.A.P. Music' in 2012. Mike is a hip hop heavyweight at this point. Initital impressions look mixed.
Gunna - A Gift & a Curse
(Hip Hop, Trap)
SpotifyThe first post Young Thug RICO trial from Gunna. First impressions seem mixed.
Feel free to share more releases below.
Discussion Points
Have you listened to any of these releases?
What are your thoughts?
What are you looking forward to listen to?
What have you enjoyed from these artists in the past?Why Friday?
Most (but not all) new music releases on a Friday, as labels want to give the the release a full week of sales before entering the charts.
~~ Any feedback on the format welcome!
32 votes -
Cycling computers
Since it seems we have a few other cyclists on here, I thought I would ask for a recommendation. I'm looking at bike computers, and I've been going back and forth between Wahoo and Garmin. I don't...
Since it seems we have a few other cyclists on here, I thought I would ask for a recommendation. I'm looking at bike computers, and I've been going back and forth between Wahoo and Garmin. I don't need anything super fancy, so I've been looking at the Bolt or the 530. I really want it for making a route on the computer, and then getting directions at turns (along with the basics like speed, distance, time, etc.).
My biggest priority is stability and battery life. I've read some reviews of the Wahoo saying it crashed or froze on them, which would be a huge turn off to me. My current "computer" is just a simple magnet on the wheel that runs a sensor - it never crashes or freezes or anything like that, and I change the battery about once or twice a year.
So, I'm curious if anyone has suggestions or experience with these.
And also I just wanted to get more cycling content on here... :-)
13 votes -
Newborn babies, baby registries, first year of life, and sustainability
So, I have my first child on the way. To say I'm unprepared or overwhelmed isn't exactly accurate, but wouldn't really be wrong either. My wife and I are reasonably intelligent, compassionate,...
So, I have my first child on the way. To say I'm unprepared or overwhelmed isn't exactly accurate, but wouldn't really be wrong either. My wife and I are reasonably intelligent, compassionate, patient people so I have a lot of confidence in our ability to figure this out as we go, but there are some things we have to prepare for before the baby comes.
The big current task is the "baby registry" so I thought I would start a discussion on the things we should actually be asking for, what's worth buying new, and what's worth finding second-hand or making ourselves.
A few things have been gifted to us already but I wanted to start an open discussion of the items that are important, helpful, or even just fun for newborn babies and raising infants and toddlers in a safe, enriching, and comfortable environment.
I thought it might be helpful to request top-level comments for discussion on various aspects of "baby life" and the things a new parent should make sure they have, government or private services and programs to be aware of, or anything else I might be forgetting. I'd like to have this topic focused on first year of life concerns.
I'd like to avoid any discussion of "how to raise your kids" because I think it's such a highly personal thing and also based heavily on what your individual child is like - so I'm really thinking in terms of goods, services, and easing the burden on us, the parents. You don't have to have kids to reply! I think outside perspectives are also very valuable because there are so many preconceived notions about this stuff. I'll post a few top level comments of the things I am personally thinking about, but please feel free to fill in anything you notice is missing, or doesn't fit well in a posted category. I'm happy to change categories as requested as well to be more inclusive or specific.
31 votes -
Observations on needed features and issues now that the site has gotten busier
Now that the site has gotten a little busier, I’ve noticed a few shifts in how I've engaged with the site and jotted down notes on things that I've noticed might be nice to have. We already have a...
Now that the site has gotten a little busier, I’ve noticed a few shifts in how I've engaged with the site and jotted down notes on things that I've noticed might be nice to have. We already have a "what don't you like" thread I know, but this is more like "what didn't I notice when the place was a lot quieter" sort of thing.
Edit bumps for megathreads
I recently created a megathread for the Apple VisionPro reviews. But I realized that if I continuously edit in new reviews as they come in, the thread won’t bump. I’d need to actually post each time a new review comes in AND edit it into the self-post. It might be nice if I could choose to bump a self-post if I’m making a substantive edit to the content. Though I can see the opportunities for abuse here so I wonder if there’s a more elegant solution for it besides just occasionally posting when there are updates.
Following/Subscribing to Topics
Yes topics get bumped as conversation happens in them, but with the level of activity we have right now I’m having trouble keeping up with conversations I’m actually invested in following. Bookmarks are good, but there’s two issues. One is that they’re hidden in a folder off to the side. So it’s easy to forget to check them. Two is that they’re currently serving dual purposes, they can either be for saving specific topics because I think they’re good enough that I might want to reference them again or they can be because I want to keep up with the conversation in them.
I’d be interested in separating the functions a little bit. I’d like to be able to bookmark topics as a “save” function but also “subscribe” to topics to get alerted up top when there are new posts the same way I am alerted to stuff in my inbox. Alternatively, just having an “unread” count next to the bookmarked topics link and sorting the list of bookmarks by acitivity might do it.A Drafts section
This post right now I mostly composed in a note-taking app because it’s a collection of random thoughts I had while using the site the past couple of weeks but didn’t want to post until I had time to marinate on them. Being able to save drafts directly in Tildes would have been a nice feature. It would also be good for replies since it gives you a chance to be like “Hmmm, do I really want to engage with this conversation right now?”
“Shortlisted” groups
The list of groups is a bit long, especially when you’re scrolling it on mobile. People might not (and probably don’t) actually care about all of them. It might be nice if we could “star” a group to have it show up higher on the list or have all non-starred groups in a collapsed list.
Choosing groups from the new post view instead of posting from the groups view
Since groups are currently being treated more like “super-tags” than separated communities, I wonder if it wouldn’t be better to designate the group in a dropdown menu above the tag bar when we’re posting instead of needing to go into a group to create a new post. In some cases, I might think a self-post belongs in one group but by the time I’m done writing I realize this ~humanities post is really more of a ~life post. This will, of course, depend on the outcome of the “treating groups more as separate entities” discussion.
Subscribed topic tags
Filtered topic tags is a nice feature because it’s one interaction mode that serves dual uses. You can both remove a selected class of content from your main feed but then you can also navigate into it to see ONLY that content. This basically lets you use it alternatively as a “favorites” option instead of an anti-favorites option. (I guess this is less of a feature suggestion and more of an observation for a non-obvious use of the function.) We could, maybe, separate out the list of filtered topics by why you’re filtering. Either “I don’t want to see this stuff” or “I want to be able to specially focus on this stuff.”
Built-in invite request form
Currently to get an invite you have to ask on Reddit or something. Maybe we should have a page where people can request invites within Tildes so we aren’t reliant on having to pick-up flotsam from other social media platforms. The downside, of course, is that you can’t vet people. So this invite path would probably be the lowest priority and only handed out during quiet periods where noxious posters can be handled quickly.
“Only New” filter for comments
I mentioned this issue with the Arc browser that makes it so the “collapse all old replies” function breaks if I open it in a background tab. Maybe it might be nice to also have this as a button I can trigger next to the Collapse replies and Expand all buttons. Or, if it doesn’t over-complicate the UI, maybe even a way to “collapse all before [datetime]” with the last session time pre-filled in. Or perhaps more like a clock that you can wind backwards in 30 minute or 1 hour increments.
Rethinking time-limit on Exemplary labels
I think it’s crucial that these remain a rare commodity, but with the current volume of good posts the 8 hour limit is feeling mighty constraining. Although previously the time limit didn’t feel like a constraint at all because there legitimately wasn’t much to label. Not sure if this should actually change or not, maybe the time limit can stretch or compress based on how active the site has been over the past X hours.
Add a “Funny” modifier to the “Joke” label
The effect on sorting should be the exact same and it should be invisible to everyone, but I just think it would be fun and would also encourage people to label jokes as such (trick folks into narcing basically). Maybe when there is a reputation system in place it can be used to adjust how big of a negative weight your joke posts get. Funnier people get dinged less.
Rethinking the necroposting warning
With more people here there are more active conversations and topics seem to remain active a lot longer. In topics like the one for questions from new users it’s so active it feels kind of silly to see the “this topic is over X old” warning. We do want to encourage maintaining conversations as long as they’re going so maybe we should suppress this warning on active topics (like ones that have had more than 5 posts in the past 3 days).
Improved search
I know search is hard, but it is difficult to find old stuff. I’ve been trying to dig up examples of old posts or previous conversations on things when answering questions and I’m often trying to wrack my brain for specific phrases from conversations a year or more ago. It just doesn’t work for this. Discord search works pretty well and gives you modifiers for who posted, where, around when. I get the potential for abuse here, but maybe enable this kind of deep search for my own post history and nobody else’s?
Mark direct messages as unread
Exactly what is says on the tin. Sometimes people ask you something and you need to come back to it later.
Tag cloud
Knowing what to tag things as is intimidating for newbies and old heads alike. There need to be mechanisms to make this more approachable. I think perhaps if, underneath the tag bar we just displayed a “word cloud” of the common tags sized according to frequency it might help get people started. The word cloud would have to be per group and maybe refreshed per day based on a rolling-sample of the last 100 posts.
Put a vote button on the bottom of the post for self-posts.
Seriously, do you realize how much scrolling I have to do to go back up and upvote kfwyre when he posts something like this? It's especially a hassle on mobile.
87 votes -
Do you have an internal monologue? How do you think?
Inspired by an old topic from 2021 on here: https://tild.es/uti How do you think? Have you ever thought about how you think? Do you have a voice in your head? Is it your own voice? Do you think in...
Inspired by an old topic from 2021 on here: https://tild.es/uti
How do you think?
Have you ever thought about how you think?Do you have a voice in your head? Is it your own voice? Do you think in visuals? How strong are the visuals?
Let's have a conversation about it. We all think differently!
As an exercise, if I asked you to sit down and solve a cross word in silence, how would you think it through?
Edit: thanks for all the very interesting and very insightful replies! I've been reading them today and I really appreciate everyone's input.
63 votes -
Nozick, the Fediverse, and the internet in general
Intro This will be something of a long and theoretical post, but I'm interested in others' opinions on this - and a quick google search of Robert Nozick and Fediverse turned up literally nothing,...
Intro
This will be something of a long and theoretical post, but I'm interested in others' opinions on this - and a quick google search of Robert Nozick and Fediverse turned up literally nothing, so I'm thinking that this is a new connection. The recent news about Beehaw defederating from other instances, and the wider discussions about how federation might or might not work reminded me of Robert Nozick's Anarchy, State, and Utopia (1974), which I imagine anyone who's formally studied philosophy will have come across. The main point of this book is to make the case for the libertarian minimal state, with the overall thesis in the preface being:
Our main conclusions about the state are that a minimal state, limited to the narrow functions of protection against force, theft, fraud, enforcement of contracts, and so on, is justified; that any more extensive state will violate persons' rights not to be forced to do certain things, and is unjustified; and that the minimal state is inspiring as well as right. (p. ix)
The book, while influential and important, is I think deeply flawed, and there's some general agreement about this in the philosophy departments I've been involved with. (Same with many of Nozick’s general opinions.) Unfortunately, the parts of the book that tend to be taught are the first two, and in particular the Wilt Chamberlain argument (pp. 160-2) in which he argues that unequal distribution of wealth and goods is fine as long as the unequal distributions were caused by a history of mutual freely consenting exchanges.
I say 'unfortunately' because– while the first two sections and the Chamberlain argument are definitely important and influential– Part III, Utopia, is the strongest. I'm not a libertarian, but it's a novel, well-structured, and interesting argument for the minimal state, based in part on possible-world semantics, and I think it looks a lot like what the Fediverse is going for, which is why I'm interested in the crossover.
The Possible-World Model
Nozick begins by defining Utopia and identifying its main issues:
The totality of conditions we would wish to impose on societies which are (preeminently) to qualify as utopias, taken jointly, are inconsistent... The best of all possible worlds for me will not be that for you. The world, of all those I can imagine, which I would most prefer to live in, will not be precisely the one you would choose. Utopia, though, must be, in some restricted sense, the best for all of us; the best world imaginable, for each of us. In what sense can this be? (pp. 297-8)
He then sets up this perhaps rather convoluted idea, based on the concept of imagining possible worlds. The core idea is this: that in any possible world you can imagine, it must include that all other rational agents in that world will also be able to imagine other possible worlds, and that (if they prefer) they can then move to those possible worlds.
The question then moves to: is it possible for this to be stable? Because Nozick is interested in whether utopia as traditionally explored by utopian theorists and authors (and note that to an extent he’s subtextually talking to socialist utopians throughout) is possible, the key question is whether worlds will keep being created over and over, with people moving over and over, or whether there'll ever be a world where everyone in that world chooses to stay. And stable worlds must then:
[satisfy] one very desirable description... namely, none of the inhabitants of the world can imagine an alternative world they would rather live in, which (they believe) would continue to exist if all of its rational inhabitants had the same rights of imagining and emigrating. (p. 299, his emphasis)
This is, given that people are able to move to worlds they imagine (which Nozick calls 'associations' - as opposed to 'east-berlins' in which inhabitants are unable to move to other worlds).
He puts this also in set theory terms (quoted just below), and then points out an equivalency of members of S choosing to form an association of their own, vs. members of S refusing entry to those members of A who are not also members of S.
if A is a set of persons in a stable association then there is no proper subset S of A [note from me: 'proper subset' means it's a part of the whole but not equal to it. So {1, 3} is a proper subset of {1, 3, 5}, but {1, 3, 5}, although a subset of itself, is not a proper subset of itself] such that each member of S is better off in an association consisting only of members of S, than he is in A. For, if there were such a subset S, its members would secede from A, establishing their own association. (p. 300)
There is then a fairly lengthy section expanding on this, caveating it, and also doing some more in-depth logic/set theory, which I'll skip over as it's not as relevant (and this is already getting long). It's pages 301-6 if anyone's interested in reading, though. Page 307 onwards is where Nozick begins analysing how this model laid out above could be seen in the real world.
The Real World
Obviously, the above possible-worlds model is very idealised, and there are several limitations in the real world. Nozick lays out the following four:
- In the model, we can imagine infinite possible people to associate with (although we cannot have an infinite number of people in an association); in the real world there are firstly not infinite people and secondly we can't create them. So even if I can imagine the perfect association for me, it might not exist; same with a community I might want to join.
- In the model, the only ways associations interfere with each other is by drawing away its members - in the real world, communities impinge on each other in all kinds of ways.
- Information costs - it takes effort to find out about other communities in the real world; in the model it's instantaneous and easy.
- In the real world, some communities don't let their members know about, or move to, other communities.
It’s worth noting here that Nozick was writing in 1974, before the advent of the internet (and to a lesser extent, globalisation in general), so point 3 is less of an issue here. Particularly regarding moving and travel costs, which are vastly, vastly, reduced online. In fact, I think these issues are all reduced on the internet, which is relevant when it comes to the potential for implementation. I say more about this at the end of this post, and it’s one of the main things I’m interested in hearing opinions about.
Nozick, now, is interested in the implementation (or influence) of the possible-world model in the real world, and his key point ends up being this:
The idea that there is one best composite answer to all of these questions, one best society for everyone to live in, seems to me to be an incredible one. (And the idea that, if there is one, we now know enough to describe it is even more incredible.) (p. 311, his emphasis)
The ‘questions’ he refers to are questions of values, of activities, of interests. Security or adventure? Luxury or austerity? Private property? Religion? The fact, Nozick thinks, that utopian authors attempt to imagine a utopian society demonstrates a blindness to the heterogeneity of human nature. Which is demonstrated by the fact that they all have their own visions of utopia, and the fact that the inhabitants of their visions all lead different lives.
The conclusion Nozick draws is that there is no sense in having one type of community in a utopia - rather, that “Utopia is a framework for utopias” (p. 312, my emphasis because it’s the most important point here). We should be aiming for a kind of “meta-utopia”, and this is where the real-world limitations flagged above come into play. The meta-utopia is necessary precisely because of these real-world limitations. What does this look like?
[T]he environment in which utopian experiments may be tried out; the environment in which people are free to do their own thing; the environment which must, to a great extent, be realized first if more particular utopian visions are to be realised stably. (p.312)
Nozick thinks this conclusion can arise from a few forms of arguments. One is, that people are different, and so thinking there’s any ‘best’ world for everyone is foolish. That’s what’s happening when he states that there’s no composite answer to the questions of how best to live/structure society. But what if there is a society that’s the best society for everyone? Nozick reckons that that still leads to this meta-utopia. His reasoning for this involves what he calls “design devices” and “filter devices”.
Design devices basically attempt to structure an ideal society from the ground up, with a bunch of people discussing what the best society is, constructing a model for this society, and then implementing it.
Nozick basically thinks that this is a non-starter. I think this analogy puts his ideas well:
It is helpful to imagine cavemen sitting together to think up what, for all time, will be the best possible society and then setting out to institute it. Do none of the reasons that make you smile at this apply to us? (pp. 313-4)
EDIT: I want to note that I mean that this analogy puts his ideas well. I share the scepticism of design devices, while simultaneously thinking that many societies denoted as 'primitive' tap into important and valuable aspects of human communities which 'modern' societies dismiss.
The complexity of the human condition is also a large part of his reasoning here why design devices don’t work. So, the alternative is filter devices, which “involve a process which eliminates (filters out) many from a large set of alternatives” (p. 314). This is desirable for a few reasons:
- It requires less knowledge than design devices. Filtering processes don’t need to know precisely what an end-product looks like; they can just have some ideas about what they don’t want and begin with that.
- The filtering process naturally improves with time. When you have a filter for new candidates, then those candidates are, on average, of better quality (however that’s defined in this particular community), so the filtering process now has better material to work with.
- New material creates novel ideas, which would not be accessible with a design process (Nozick doesn’t outright state this, but I think it’s clear that he thinks it).
Moreover, one single filtering process will be insufficient. Nozick describes it thus:
[P]eople try out living in various communities, and they leave or slightly modify the ones they don’t like… Some communities will be abandoned, others will struggle along, others will split, others will flourish, gain members, and be duplicated elsewhere. Each community must win and hold the voluntary adherence of its members. No pattern is imposed on everyone, and the result will be one pattern if and only if everyone voluntarily chooses to live in accordance with that pattern of community. (p. 316, his emphasis)
Some advantages he lists to this: given that the filtering process is largely constituted by people leaving communities they don’t like, this will cause communities which people want to live in; mechanical processes are limited “given our inability to formulate explicitly principles which adequately handle, in advance, all of the complex, multifarious situations which arise” (p. 317) - this one is very, very similar to many recent discussions I’ve seen about moderation and the ‘don’t be an arsehole’ clause.
So what does all this lead to? Basically, that the utopian framework should be one that is informational. Whichever framework provides the best means for finding out about various communities, is the one that should be adopted– first, because that is what best facilitates the filtering process, and second, because it best mitigates the real-world issues laid out at the beginning of this section.
Conclusion
Ok, so, that’s the bulk of what I wanted to put down. The rest of Utopia focuses very much on the physical world - it’s well worth a read. (NB I’m using ‘physical world’ rather than ‘real world’ or ‘actual world’ (which Nozick uses) because the internet is part of the real world. As opposed to the ideal world, which one example of is the possible-worlds model laid out above.)
I was initially going to offer my own thoughts about how this connects to the Fediverse and the internet in general, but just the sharing of Nozick’s framework has gotten long enough that I think I’ll leave it there. Part of my motivation for sharing this is that, although I’m very much not a libertarian, this is imo one of the strongest defences of the minimal state; in addition to this, I’m much more sympathetic for a kind of meta-libertarianism when it comes to spaces like the internet, especially if they function to facilitate filtering processes.
That said, I still have worries about the way this can be, and is, implemented. There’s been a lot of discussion on Beehaw defederating from lemmy.world and sh.itjust.works, and although I personally don’t see a problem with it, I can understand why people are annoyed. I wonder if this is a consequence of people thinking they’re existing in the meta-utopia, when in fact they’re existing in an instance of it. I also don’t want to label the Fediverse as the meta-utopia, although I do get the sense that that’s what they’re aiming to become.
Nozick has a relevant section on the Beehaw thing, actually, and I’m just going to quote it because I’ve just about reached my energy limit for explaining/elucidating philosophy lol. Feel free to skip it, it’s a side-note to this post and not a main point.
A person will swallow the imperfections of a package P (which may be a protective arrangement, a consumer good, a community) that is desirable on the whole rather than purchase a different package (a completely different package, or P with some changes), when no more desirable attainable different package is worth to him its greater costs over P, including the costs of inducing enough others to participate in making the alternative package. One assumes that the cost calculation for nations is such as to permit internal opting out. But this is not the whole story for two reasons. First, it may be feasible in individual communities also to arrange internal opting out at little administrative cost… yet this needn’t always be done. Second, nations differ from other packages in that the individual himself isn’t to bear the administrative costs of opting out of some otherwise compulsory provision. The other people must pay for finely designing their compulsory arrangements so that they don’t apply to those who wish to opt out. (p. 321-2)
Another reason why I’m interested in opening up this discussion, is that I’ve experienced almost no discussion on this section of Nozick’s work in my experience of academic philosophy. The other two sections– and particularly Wilt Chamberlain– are talked to death, but Utopia has relatively little engagement. On one hand, I get this - a large part of philosophical education is understanding the history of ideas, and Utopia is comparatively uninfluential. You need to know Wilt Chamberlain if you’re entering academic philosophy; you don’t need to know all this. On the other hand, it’s a shame, because I think it’s the strongest part of Nozick’s work.
I also think that it’s somewhat more relevant to the internet than it is to the physical world. Not because of the legitimacy of its ideals, but purely because of the relative ease of implementation. The four issues mentioned above are really reduced in online spaces.
- We still don’t have infinite people, but the variety of people we can interact with is potentially wider. Potentially. The issues with lack of– or exodus of– minorities, which I’ve seen discussions about on Tildes while searching past posts, is an important one here. I’m not necessarily referring specifically to Tildes here - I’m too new to the site to really have a good sense of the community. But just like in the real-world, I can’t conjure up people and create my own version of Tildes which includes all the people here currently and also all the other people I’d like to see.
- Communities on the internet obviously interfere with each other, just like physical-world communities. This isn’t that reduced, perhaps only in terms of stakes. Physical-world community interference can cause wars, financial boycotts, etc. Maybe doxxing or the like is analogous? Regardless, it’s reduced although not eliminated in severity, as far as I can see.
- The difference in information costs should be immediately obvious. It’s much easier for someone to try out Tildes, than it is for someone to try out France.
- Relatedly, internet communities don’t have the same power as physical communities to limit information, although there are definitely still issues here, especially with an increasingly-corporatised internet. On the other hand, the internet itself does work in breaking down these barriers in the physical world, at least in terms of information (not in ease of moving countries). At least, there’s usually no real financial costs to hopping platforms.
Guess I’m leaving it here? Maybe all I’ve accomplished is sharing some cool philosophy– at least, I think it’s cool.
The page numbers all reference Anarchy, State, and Utopia - I don’t know if I’m allowed to link PDFs here, but suffice to say it’s the first one that shows up.
This Stanford Encyclopaedia of Philosophy page also includes some useful context, and a bit of discussion on the Utopia section - although, again, relatively brief. Nevertheless a great source.
20 votes -
Does anyone else habitually go unshod for health reasons?
This is something I picked up a few years ago, but basically, my logic is that: It's what evolution designed us for (shoes only go back about 40,000 years) Objects on the ground aren't a threat if...
This is something I picked up a few years ago, but basically, my logic is that:
- It's what evolution designed us for (shoes only go back about 40,000 years)
- Objects on the ground aren't a threat if you watch where you're going, unless you're someplace you'd probably rather not walk even in shoes
- Hookworm is actually species specific, and human hookworm isn't an actual threat unless you're in a third world country (or Alabama, apparently)
- It's the thickest skin on your body (especially if it's given the chance to "properly" develop), so general dirt is a non-issue
- It's actually probably more hygienic considering you probably clean your feet much more frequently than your shoes (which are warm, moist and dark)
- As an extra, the health department (any health department) actually doesn't care what customers do - feel free to verify this yourself
You kind of have to retrain yourself, as far as both gait (forefoot strike instead of heel strike) and gaze ("scan" ahead every few seconds), but you absolutely can acclimate to it, so thoughts of "I could never!" are probably wrong.
22 votes -
What are some overlooked comic books or graphic novels that you think deserve more attention?
Comic books and graphics novels are a frequently overlooked form of story telling. We often see well written stories transcend the medium and retold in movies or television where they gain...
Comic books and graphics novels are a frequently overlooked form of story telling. We often see well written stories transcend the medium and retold in movies or television where they gain popularity. What are some of your favorite overlooked or under appreciated comic book or graphic novel stories that you think other people should experience? Obviously 'overlooked or under appreciated' is subjective, but offer some recommendations anyway.
I thought The Many Deaths of Laila Starr by Filipe Andrade and Ram V was good. His work on Gravity's Wall and Swamp Thing Becoming was also great.
20 votes -
What opportunities exist for those suffering from severe chronic depression/OCD?
I have a very close friend that has been in the deepest troughs of depression for the past couple of years. They live about an hour away, so though my wife and I try to physically show up to...
I have a very close friend that has been in the deepest troughs of depression for the past couple of years. They live about an hour away, so though my wife and I try to physically show up to support them whenever we can, that's much less often than we'd like. Their support network is thin, and day-to-day basically consists of only their partner, with whom they live, and who is visibly fraying at the seams.
This person (I'll just call them John for the sake of readability) is currently on medication for their depression and OCD (I'm nearly certain it's Lexapro, can't remember for sure) and has on and off therapy, though they often find themselves at odds with their therapists' perspectives. Some of this is because it feels like the profession has been flooded with folks who lack experience with patients with severe chronic mental illness, and some of this is (I suspect) John's illness distorting their thinking, leading to frustration and anger in the moment that doesn't make sense in retrospect.
John had a particularly bad day yesterday, and after I spent some time with them, we started talking about how they felt like they needed considerably more support than they were able to get in their current situation. Unfortunately, the only option he was aware of was "group homes", which seems like a pretty broad term and I don't know much about what they look like (or how successful they are at helping people like John).
I'm trying to get a sense of the spectrum of options available for people like John who are suffering from severe chronic mental illness. On the one end, there's what we're doing now; regular psychiatry and counseling, and on the other end, I guess, is involuntary in-patient behavioral health/medicine clinics. Being involuntarily committed to such programs has been a source of trauma for them in the past, so I'd like to avoid anything even close to that end of the spectrum, if possible. I know that there are, for example, 90-day rehabilitation centers for folks with substance use disorders (I have a family member that found a lot of success at one of these), but do similar programs exist for folks non-substance-related mental illness? Does anyone have personal experience with any of these programs?
Thanks in advance to anyone who takes a moment to read and share their thoughts; I know this is a really challenging topic.
17 votes -
Books that changed your perception
I’m looking for new things to read, having more time on my hands as I work on some things in my personal life. No rules, I just want to challenge the way that I think. Anything goes. Edit: wow, I...
I’m looking for new things to read, having more time on my hands as I work on some things in my personal life.
No rules, I just want to challenge the way that I think. Anything goes.
Edit: wow, I didn't expect such an incredible response, thank you everyone! I will try my best to grab as many of these that sound up my street as possible, and I will reply properly with my thoughts. Bare with me! <3
82 votes -
Bringing over the trans surgery wiki
I was wondering what you all thought of this. I would like to bring it over, posts included so that it doesn't get lost. Wiki
20 votes -
Need help solutioning Microsoft APIM
We have a backend that kind of does REST APIs but cannot handle simple Bearer tokens for authorization and cannot produce the full set of HTTP error codes (the platform just doesn't allow, for...
We have a backend that kind of does REST APIs but cannot handle simple Bearer tokens for authorization and cannot produce the full set of HTTP error codes (the platform just doesn't allow, for example HTTP 501 to be returned programmatically). There is no Swagger for the API.
The thought was to use Microsoft API Management Services as a proxy of sorts. It would handle the Bearer token upfront, and then just proxy / wildcard the requests/responses to the backend. The hard part is that it needs to parse the return response, and if there is something like "{ errorCode: 501 }" property in the JSON, it needs to return HTTP 501 instead of the regular payload.
Does anyone have any experience in setting this up? It seems like the basic policy processing won't cut it, and so function apps and logic apps seem to be the ticket. We want to keep this facade layer as thin as possible. Microsoft APIM is the only platform we're allowed to consider at this time.
4 votes -
Got any fun stories of when your brain miserably failed you?
I‘m currently watching a video on Youtube and they just mentioned that famous hard-to-escape prison in the US. They just said its name and I actually know what it’s called, yet I can’t recall it...
I‘m currently watching a video on Youtube and they just mentioned that famous hard-to-escape prison in the US. They just said its name and I actually know what it’s called, yet I can’t recall it right now. I thought of Azcaban, Alaska, Alcazar (Crying at the Disquotheque was playing along in my head aswell)…. and now as I‘m typing this, it finally came to me that the prison is called Alcatraz. When my brain came up with Alaska I actually had to laugh at what it’s coming up with while desperately trying to find the actual name. Fucking Alaska prison. And when the Harry Potter version comes to mind before the actual one, you know my priorities in life.
Now I want to hear your stories of your brain failing you.
21 votes -
List of recurring threads and their schedules?
Do we have a list of recurring discussions and their schedules anywhere? I know they're generally weekly, but I often find myself having to do a quick search for when the last one was and...
Do we have a list of recurring discussions and their schedules anywhere? I know they're generally weekly, but I often find myself having to do a quick search for when the last one was and determine whether or not I should hold onto my contribution to that thread until the next one occurs. eg if the new discussion is created tomorrow, I may as well just post my comments tomorrow rather than today. Admittedly a very minor inconvenience.
Having a list somewhere easy to see could also help prevent folks from unintentionally creating duplicate discussions during the period between one week's discussion going quiet and the next week's starting.
And maybe eventually it could be something like we subscribe to a recurring discussion and then it shows up in the sidebar somewhere in a list of upcoming discussions? Just spitballing here.
Any thoughts?
11 votes -
Fishing - angling for others hooked on the hobby AND folks who want to try
Do you Fish? Do you eat them or let 'em go? How'd you get into it and what were the confusing bits? Memory of a good time or lessons you wished someone taught you? Do you want to try but haven't...
Do you Fish? Do you eat them or let 'em go? How'd you get into it and what were the confusing bits? Memory of a good time or lessons you wished someone taught you?
Do you want to try but haven't ever been? Did you fish as a kid and never again? What would make it easier for you to give it a go? Tried your city's "learn to fish" programs? What if you had someone else clean and cook it?
If your experience or interest limited to digital fish only, what's your thoughts on why every game and its predecessor has fishing mini-games? It's the dangnabbit armageddon but let's pause and fish for a bit first. Wild.
inspired by this super cool thread on treasure hunting kind of fishing,
19 votes -
Why Nintendo games never go down in price, according to Satoru Iwata
In the book Ask Iwata, former Nintendo president Satoru Iwata is quoted as having said: After a piece of hardware is released, the price is gradually reduced for five years until demand has run...
In the book Ask Iwata, former Nintendo president Satoru Iwata is quoted as having said:
After a piece of hardware is released, the price is gradually reduced for five years until demand has run its course. But since the demand cycle never fails, why bother reducing the price this way? My personal take on the situation is that if you lower the price over time, the manufacturer is conditioning the customer to wait for a better deal, something I've always thought to be a strange approach. Of course, this doesn't mean that I'm against lowering prices entirely, but I've always wanted to avoid a situation where the first people to step up and support us feel punished for paying top dollar, grumbling, "I guess this is the price I pay for being first in line."
What do you think of what he said here?
50 votes -
Any 'Yu-Gi-Oh!' fans here?
Mirroring the other thread about Magic, I was wondering if there's any Yu-Gi-Oh! players around who would be interested in sharing their current thoughts on the game and history.
20 votes -
Thoughts on LGBT memes and cliches
By this i mean things like blahaj, programmer socks, etc. Personally i think theyre kinda funny and i myself have gotten my own blahaj as a way to show my "trans license" but i was wondering how...
By this i mean things like blahaj, programmer socks, etc. Personally i think theyre kinda funny and i myself have gotten my own blahaj as a way to show my "trans license" but i was wondering how other people might feel about them. Perhaps some people think theyre overdone or they just dont agree with them.
47 votes -
Marvel Snap players - How's your season going?
Interested to hear from anybody who plays Snap. What's your thoughts on the current meta? What do you find the Ghost Spider and Silk so far? Any other cards you're saving tokens ford? Have you...
Interested to hear from anybody who plays Snap.
What's your thoughts on the current meta?
What do you find the Ghost Spider and Silk so far? Any other cards you're saving tokens ford?
Have you tried Conquest?
I'm mostly pretty casual. I'm free to play, and the highest rank I've reached is 70. I've been playing a my own attempt at a Sera Surfer deck lately (can't bring myself to net deck), and it's been pretty going well for me.
I've got mixed feelings about Conquest so far. Since you're matched up with the same player for several matches, it can be a bit more of a time commitment. And if you get an emote spammer, it can feel a it gruelling. But it helps me think about my matchups in more depth, which is actually kind of cool.
17 votes -
DMZ in Call of Duty will wipe all player/mission progress for Season 4 tomorrow, what are people's thoughts?
11 votes -
Sitting with boredom
I was inspired to share this after seeing this comment on another thread: https://tildes.net/~talk/162y/not_entirely_sure_how_to_fill_the_void_reddit_has_left#comment-87j6 Again, new to tildes...
I was inspired to share this after seeing this comment on another thread: https://tildes.net/~talk/162y/not_entirely_sure_how_to_fill_the_void_reddit_has_left#comment-87j6
Again, new to tildes here, so not quite sure if this sort of thing fits. It's not really a question, more, sharing something I do that I thought could be interesting for others. Maybe it belongs in a different group.
So the last few years I've started doing this little exercise: I will pick a time frame (usually few days, but a 24 hour period is great). I will turn off the phone (not just silence, but turn it off), turn off my modem, turn off the radio and music, pretty much any electronic device, and just... sit there.
I get bored quickly. But when the boredom comes, I sit with it. I analyze it. I try to understand boredom itself, and the unpleasant sensation its causing. I try to be aware of any urge that comes to distract myself from it, and I deny that urge, and see what happens internally when I deny that urge.
The boredom is uncomfortable, I won't lie. I really want to do other things. But I realize I'm capable of enduring it, and I so I sit there, because I want to see what will happen. And then something kind of wonderful happens: once the initial discomfort passes, and I accept I'm going to keep doing this, in the absence of things to distraction myself with, my thoughts begin to gravitate towards things that are genuinely important to me. What are the problems that I want to solve? What are the ideas that I want to work on? How do I want to make the world a better place? (Not what the news tells me is important, or friends, or the internet, it's all fucking noise - what problems are important to me?) This sounds like it should be so obvious, of course you know what's important to you, right? But something about this exercise illuminates it (for me at least). Almost like, I've got this tiny little flashlight, that I can point to whatever is important to me (we all do). When I'm in society, connected, I find that everyone has their flashlight on. Then big companies, news outlets, whatever, they have these giant ones, spotlights, all pointing in different directions. When all of this is on at once, it's so bright I don't even notice my own. I'm constantly distracted. I start to wonder "huh, that spot is bright, I wonder if I'm pointing my flashlight there." It's so easy to get confused. It's only once I turn it all off, and the world is dark, that I can clearly see what I'm pointing at. It's just so easy then.
This is not meditation, actually it's pretty much the opposite. I am not trying to clear my mind at all. I'm trying to see where my thoughts go when it's free of noise. Where they go is very revealing to me.
I'm still uncomfortable with boredom, I don't think that's changed at all. But I've become comfortable with sitting with it, and the fruits of this exercise have made it worth it to me. Moreover, the more I've done this, the more uncomfortable I've become with all the noise. I used to think I loved being connected, but now that I realize I don't have to be, it's actually the opposite... I really don't like having my phone on, I don't like having my modem on, and I dislike news, politics, and lots of that kind of stuff. It makes me feel almost claustrophobic. I find a lot of calm in being away from all of that. I'm still very grateful for these things, I just feel uncomfortable being connected to them 24/7, and I like to be away.
58 votes -
Thoughts on making Tildes groups more independent
Hi. It's been a while since we had a ~tildes.official post, huh? There are a few things I want to discuss today about potential changes to the way that Tildes works. But first, a couple of other...
Hi. It's been a while since we had a ~tildes.official post, huh? There are a few things I want to discuss today about potential changes to the way that Tildes works. But first, a couple of other things while I have your attention:
Welcomes and thanks
Welcome to all the new users! It's been great to see activity here increasing again lately, and I hope a lot of you end up enjoying the site and sticking around. It's really nice to read so many posts and emails from people who are excited about the principles behind Tildes. (And if you're someone who doesn't have an account yet and emailed to request an invite, I hope to get back to you relatively soon—there are about 2000 requests in the queue right now, and I'm trying to gradually work through them over the next week or so)
I also want to say thanks to all the long-time users who have been welcoming and answering so many questions from the new people. As I mentioned the other day, my time to devote to Tildes recently is more limited, and it's been amazing to find that in practically every thread I open, people have already answered all of the questions (and often more comprehensively and eloquently than I would have). An extra special thank-you as well to @cfabbro and the other people who have been handling the demand for invites via Reddit, and to @mycketforvirrad, the unsung hero of the site who's constantly doing the thankless, almost-invisible job of re-tagging topics and making sure everything is organized.
Reminders
Also a couple of reminders and things to keep in mind:
Whether you're an old or new user, if you haven't set up a recovery email address on your account, I highly recommend that you do. A lot of people who registered years ago are trying to come back this week and finding that they don't know their password any more, and it's much simpler if they did this. (The site itself really should encourage this more strongly—it's done in a secure and privacy-friendly way, and it's impossible for me to use it to send you any email because there's no way for me to see the actual address)
It's already been brought up in various threads a lot, but I also want to emphasize that Tildes is not the same as Reddit, and is not trying to be a "replacement" for Reddit. There are a lot of similarities between the sites, but there are also a lot of differences. The site structures are different, many of the site mechanics here work differently, and the types and style of posts that are appropriate are not the same. Please try to look around at the site and the docs and get a feel for the place, don't assume that things will work the same way here as they do somewhere else (or that they should).
One other aspect that's different between the two sites that's coming up a lot is that Tildes does not have user-created groups, and the groups aren't "owned" or run by specific users. Currently, the only person with "true" moderation powers anywhere on the site (like the ability to remove topics and comments) is me. This isn't because I want to keep absolute control or anything like that, but Tildes has been very quiet for the last few years and more moderators haven't been necessary. If the activity stays at this level or keeps increasing, we will probably need to add more moderators soon. And related to that, the actual main topic that I wanted to talk about:
Should we try separating the groups more?
Even though Tildes has almost 30 groups, until now, it's really always just been one community. New users are automatically subscribed to all groups and need to manually unsubscribe if they don't want to see the topics from that group, and logged-out users see everything when they visit the homepage as well. Most users stay subscribed to almost everything, with only some of them unsubscribing from more-niche interests like ~anime.
I've always intended to make the groups more independent, but the site's activity has generally been too low for that to be feasible. All of the groups needed to be able to reach all of the Tildes users, but there have been significant downsides to doing it this way.
One of the main consequences (which is becoming more obvious over the last few days) is kind of ironic: by showing all groups to all users to increase activity across all of them, it actually discourages activity in any individual one. For example, I follow video game news closely, and it's currently a very busy time with tons of events and announcements. But I wouldn't want to post all of those announcements to ~games, because it would completely flood the site and annoy everyone.
I think we should probably take advantage of this current high activity level to try moving the groups towards being more independent spaces. This would involve switching away from the current "opt-out" approach to an "opt-in" one, and would probably need updates to a few different sections of the site to support it.
A lot of the new users have been asking to add new groups for things they're interested in (sometimes very specific, niche things), and this would allow us to try some of them out more easily to see if they'd be able to sustain themselves. One of the benefits of the groups+tags system here is that it's relatively easy to test something as a group, and if it doesn't work out, all of the posts can just be merged back into a "more comprehensive" group as a tag.
I've also been receiving a decent number of messages from Reddit moderators that are investigating whether they will be able to migrate their community to a different platform. I've had to tell them that the current structure of Tildes wouldn't easily support it, but making the groups more independent would change that.
So overall, I'm looking for general feedback about whether we should try this soon, and if there are any major concerns we should be careful about. I also have three specific questions I'd like input on, related to how it could be implemented:
- What should logged-out users see on the homepage? Just a list of links to individual groups, and they have to pick a specific one to see any posts?
- Should logged-in users still have a homepage made up of all their subscribed groups mixed together (Reddit-style), or should we lean further into the separation by requiring groups to be viewed individually (forum-style)? (I think I'd want the mixed style to be available long-term, but maybe starting without it would help establish the individuality more strongly?)
- How should we transition existing users over to the opt-in approach? Should we effectively treat everyone as a new user, and get them to select the groups they're interested in from scratch? Or should we do something like use their activity (voting, posting) to pre-subscribe them to some groups?
Thanks, please let me know what you think. The current growth and activity is a great opportunity for us to try some new things on Tildes that would be able to move it forward, and I hope we can figure out ways to do it well. (And if it ends up not working, we can always change things back)
I've also given 5 invites to every current user, so feel free to use those if you know anyone that would like to join: https://tildes.net/invite
(Edit: and to set expectations, I'm not sure how much time I'll have to reply to anything substantially, but I'll absolutely be reading all the discussions)
533 votes -
My completely subjective ski town tier list
Intro & Tier Definitions I've been mulling over a ski town tier list in my head for a few weeks and I was just thinking of putting it on paper when all the reddit stuff happened. So instead of...
Intro & Tier Definitions
I've been mulling over a ski town tier list in my head for a few weeks and I was just thinking of putting it on paper when all the reddit stuff happened. So instead of posting it to /r/skiing I'm posting it here. This is completely subjective and is only based on the relatively small number of ski towns I've lived in or visited. My ulterior motive here is to get your thoughts on additions to this list along with which tier they should fall into... specifically S Tier places I haven't visited. I'm not doing any research - this is strictly based on my opinions from places I've personally been to.
A quick note: I'm only thinking about the towns themselves here. Not the quality of skiing, snowfall, or anything else. For the purposes of this ranking system, a 200' hill in the Midwest with a great little town at the base would fall into S Tier while 10,000 acre mega-resort with a $10B purpose-built resort village would fall into B Tier.
Here's my completely subjective ranking system:
S Tier: S tier is the "perfect mountain town". These towns typically existed prior to the ski area, and still have a strong community of locals living right in town keeping things vibrant (admittedly, in most places short term rentals have made that community smaller). The towns are also right at the base of the mountain; if they didn't run the plows you could ski from the top of the highest peak right down onto main street, pop your skis off, and start après.
A Tier: These towns are S Tier towns but for one problem - they're just a little too far from the actual ski area to ski right into town. You're going to have to hop in your car or take a bus, or take a long bike ride to get to town. While these towns are still amazing, beautiful places, they're not quintessential perfect towns for that one reason alone. I think for the purposes of this discussion the town has to be within a few minutes of the ski area. Most of these towns will have a B Tier style village at the base as well, but the village isn't the focus here.
B Tier: These towns aren't really "towns". They're purpose-built shopping malls or villages made for the ski area with condos and hotels. Unlike A Tier towns, they don't have a nearby "real" town to tie onto. They may be big and vibrant villages, but they don't have (many) locals living in the core village area, and they never have.
C Tier: Basically a parking lot. Maybe a bar, cafeteria, and a ski rental shop. Usually have a larger town nearby to support some locals, but it's going to be too far away to feel like it's part of the ski area scene. Finally, I'm not really filling out C-Tier that much unless it has an interesting anchor town within 30 minutes or so. I'm also leaving off the dozens of Midwest and East Coast ski areas that I've been to because I frankly haven't skied east of the Rockies in so long that I don't think I could properly categorize them based on memory.
S Tier
- Telluride
- Breckenridge
- Park City
- Aspen (Ajax)
- Heavenly: If memory serves, you can't actually ski to town. But you take a gondola down to town instead of a car/bus so I'm counting it as S Tier. Also South Lake is an interesting take on a ski town. I was on the fence but I'm leaving it in S Tier.
- Kleine Scheidegg-Männlichen-Grindelwald-Wengen: you have to take a train to Interlaken but I think the "villages" here count as actual towns, so this is S Tier.
A Tier
- Steamboat Springs: Almost S Tier. I think if you really tried you could ski from the top of Pony Express into town.
- Silverton
- Whitefish: should maybe be B Tier. I can't remember how close Whitefish (the town) was to the actual ski area.
- Crested Butte: I initially had this in S Tier based on memory, but after looking at the map I realized it was a little further from the base to town than I remembered.
B Tier
- Jackson Hole: this was a tough one. Jackson, WY is one of the coolest towns I've ever been to. Teton Village is also a great little base area. But Jackson is just too far from the tram to really bump this up to A tier.
- Vail: I've lived here since 2015 and I haven't met a single person who lives in Vail Village or Lionshead year-round. The north side of the highway doesn't count as a town, it's really just an amalgamation of box stores, strip malls, and parking lots...
- Keystone
- Beaver Creek
- Aspen (Snowmass & Highlands): not really close enough to Aspen proper to go into A Tier. But close...
- Winter Park
- Big Sky
- Copper
- Squaw
- Kirkwood
C Tier
- Arapahoe Basin: close to Dillon / Frisco / Breck.
- Aspen (Buttermilk): I've only been here during X Games but I think without all that infrastructure they bring in it would just be a parking lot and a cafeteria. I might be wrong. Close to Aspen.
- Monarch: close to Salida.
- Ski Cooper: close to Leadville.
- Bachelor: close to Bend.
Edit: I'll append this list with your suggestions if you'd like to add to it.
Edit 2: The lists within the tiers are in no particular order. I just happened to type them in that order when I thought of them.
17 votes