I'm pretty sure it is just how evolving cards typically works, except that you can't usually evolve ex cards. So it's an ex card that you can specifically evolve.
The only other ex we have that isn't fully evolved is Pikachu ex - and you cannot evolve it into a Raichu during battles.
Using they/them by default is already a good start - I would be surprised to learn if neopronouns are a thing at all in languages that don't have gendered pronouns to begin with. they/them is perfectly acceptable to 99+% of people - both cis and LGBT+.
You can just say LGBT or LGBT+. Lots of others are in use but very, very few people will legitimately get mad at you for picking one over any other.
If someone specifically tells you to call them a certain thing, you should call them that thing. Otherwise just stick to they/them.
If someone tells you their sexuality and it is not relevant to you, you have no obligation to ever bring it up again, just as with any form of oversharing.
And as for why some people share these things even though you may personally find it too revealing - that's just down to personal preference. Different things are important to different people in different ways. Some people might go through their life never giving their gender a single thought. Others might base their life around affirming and fighting for it in various ways. Most people are somewhere in the middle. Everyone has a cause they believe in a lot - for some people, this is that cause. As an "Aero Ace" (a term I had to look up - "aromantic asexual" for those who also haven't encountered it), you're probably pretty predisposed to not care about any of this stuff on any significant level.
If the penalties are harsh for not attributing ai to an image, what’s to stop sites from just having a blanket disclaimer saying that ALL images on the page were generated by AI?
Just like what happens with companies slapping Prop. 65 warnings on products that don't actually need them, out of caution and/or ignorance
No, mostly because I'm against laws which are literally impossible to enforce. And it'll become exponentially harder to enforce as the years pass on.
I think a lot of people will get annoyed at this comparison, but I see a lot of similarity between the attitudes of the "AI slop" people and the "We can always tell" anti-trans people, in the sense that I've seen so many people from the first group accuse legitimate human works of being AI-created (and obviously we've all seen how often people from the second group have accused AFAB women of being trans). And just as those anti-trans people actually can't tell for a huge number of well-passing trans people, there's a lot of AI-created works out there that are absolutely passing for human-created works in mass, without giving off any obvious "slop" signs. Real people will get (and are getting) swept-up and hurt in this anti-AI reactionary phase.
I think AI has a lot of legitimately decent uses, and I think it has a lot of stupid-as-shit uses. And the stupid-as-shit uses may be in the lead for the moment. But mandating tagging AI-generated content would just be ineffective and reactionary. I do think it should be regulated in other, more useful ways.
What I'd really like to know is, why are screenshots of tweets and such always so poorly cropped? Why do they all need to be 80% dead space vertically?
When they plaster that "If everyone reading this donated $x.yz right now, we'd be done within the hour" message I'll usually donate exactly the amount it says.
gen z: Roughly the generation currently in their teens to twenties.
dommes - Sexual dominants, as opposed to subs. Specifically female in this case, with "doms" being the masculine/gender-neutral variant.
puppygirls - Dog equivalent of a catgirl. A girl who takes on visual and personality traits of a puppy to various extents, often as a form of sexual play.
dogcage - Where you put your puppygirl when she's been chewing on the remote or peeing on the rug.
rawdog - To experience something "raw", without any aides to make the experience safer or more tolerable.
Translation: It's incredulous that young sexual dominants allow their submissives to use their phones while in their cage. It lessens the experience!
The headline is of course misleading, but not really for the reasons you pointed out. Nobody is going to read that headline and think it means 93% of gynecological research is conducted on men. Some people might read it and think it means 93% of medical research overall is conducted on men, though.
Literally none of this matters anyways if pennies are going, because making prices end in certain amounts won't work as nice in practice as it does here for the simple reason that US prices almost never include taxes.
It is 33% if the answer itself is randomly chosen from 25%, 50%, and 60%. Then you have:
If the answer is 25%: A 1/2 chance of guessing right
If the answer is 50%: A 1/4 chance of guessing right
If the answer is 60%: A 1/4 chance of guessing right
And 1/31/2 + 1/31/4 + 1/31/4 = 1/3, or 33.333...% chance
If the answer is randomly chosen from A, B, C, and D (With A or D being picked meaning D or A are also good, so 25% has a 50% chance of being the answer) then your probability of being right changes to 37.5%.
This would hold up if the question were less purposely obtuse, like asking "What would be the probability of answering the following question correctly if guessing from A, B, C and D randomly, if its answer were also chosen from A, B, C and D at random?", with the choices being something like "A: A or D, B: B, C: C, D: A or D"
Here is an imgur album of all the images from the OP, for easier viewing - if you like one I recommend then downloading it from OP's link since I'm pretty sure imgur recompresses uploads
Yes but it's not hooked up to cable or the internet. I just use it for the Switch, or I'll occasionally hook it up as an alternate second monitor to my PC and play a movie on it. It hasn't been turned on in a few weeks and the last time was to be used as a temporary monitor to set up a new headless PC.
Just curious about how this works out. At scale, would either decision make any sort of impact? I know most people, including me, will end up avoiding heavily tariffed products out of personal financial reasons. But in theory, would US residents buying or not buying tariffed products be the larger anti-tariff statement? I feel like the obvious answer is "only buy tariffed products" which is why I chose this community but I'm not entirely certain.
I would like to stress again that I am asking this hypothetically, and specifically and only in the context of political statements regarding tariffs. I am of course aware that no single person will have any impact on their own, and I am similarly aware that almost everyone will be avoiding highly tariffed products for non-political reasons either way.
I have a rather large Python script that I use as basically a replacement for autohotkey. It uses pynput for keyboard and mouse control - and at least on Windows, it works exactly how I expect.
I recently started dual-booting with Linux and have been trying to get the script to work here as well. It does work but with mixed results - in particular, I found that pynput has bizarrely wrong output for special characters, in a way that's both consistent and inconsistent.
The simplest possible case I found that reproduces the error is this script:
python
import time
from pynput import keyboard
# Sleep statement is just to give time to move the mouse cursor to a text input field
time.sleep(2)
my_kb = keyboard.Controller()
text = '🍆' # Eggplant emoji
my_kb.type(text)
time.sleep(1)
te
I have a rather large Python script that I use as basically a replacement for autohotkey. It uses pynput for keyboard and mouse control - and at least on Windows, it works exactly how I expect.
I recently started dual-booting with Linux and have been trying to get the script to work here as well. It does work but with mixed results - in particular, I found that pynput has bizarrely wrong output for special characters, in a way that's both consistent and inconsistent.
The simplest possible case I found that reproduces the error is this script:
python
import time
from pynput import keyboard
# Sleep statement is just to give time to move the mouse cursor to a text input field
time.sleep(2)
my_kb = keyboard.Controller()
text = '🍆' # Eggplant emoji
my_kb.type(text)
time.sleep(1)
text = '𝕥𝕖𝕤𝕥' # blackboard bold test
my_kb.type(text)
time.sleep(1)
text = '𝐭𝐞𝐬𝐭' #
I have a rather large Python script that I use as basically a replacement for autohotkey. It uses pynput for keyboard and mouse control - and at least on Windows, it works exactly how I expect.
I recently started dual-booting with Linux and have been trying to get the script to work here as well. It does work but with mixed results - in particular, I found that pynput has bizarrely wrong output for special characters, in a way that's both consistent and inconsistent.
The simplest possible case I found that reproduces the error is this script:
python
import time
from pynput import keyboard
# Sleep statement is just to give time to move the mouse cursor to a text input field
time.sleep(2)
my_kb = keyboard.Controller()
text = '🍆' # Eggplant emoji
my_kb.type(text)
time.sleep(1)
text = '𝕥𝕖𝕤𝕥' # blackboard bold test
my_kb.type(text)
time.sleep(1)
text = '𝐭𝐞𝐬𝐭' # bold test
my_kb.type(text)
When I run that script right now, it produces the output "🍆𝕥𝕥𝕤𝕥𝐭𝐭𝐬
Does the GDPR define what the default behavior should be when the user refuses to specify? Does it vary by site? Is it like clicking either "Accept all" or "Reject all"?
Why YSK: Certain topics are stressful and tend to spread all over the site, including to unrelated communities. Blocking communities can be overkill and ineffective, and likewise for blocking individual users.
To do so, open up the uBlock Origin dashboard, go to the 'My filters' tab, and add this filter:
Then apply the changes and reload any open tabs, and all posts which contain any of your filtered words will simply not show up.
You'll have to change "lemmy.world" at the start to whatever your actual instance is. You can filter as many or as few words as you want, just keep the / at the start, the /i at the end, and separate words with | pipes. What's actually being filtered is a case-insensitive regex, if you want to get fancy with it.
Here are equivalent filters for reddit and Ars Technica:
I read this article and still walked away feeling like I didn't understand the situation that well.
Is it $56 billion that he's already been paid, and he needs to return it? $56 billion he's partially been paid, and he can keep what he has, but won't get the rest? Something more complicated?
I want to run two different autohotkey scripts. I want to trigger a hotstring in the first script, the output of which ends up being part of the hotstring trigger for the second script. Is this possible?
Here's a simplified version of my intended workflow.
Script 1:
undefined
#Hotstring EndChars \
#Hotstring o
#Hotstring ?
::iv::ǐ
::av::ǎ
Script 2:
undefined
#Hotstring EndChars \
#Hotstring o
#Hotstring ?
::nǐ::你
::hǎo::好
So the idea is that I can type niv\ and the first script will convert it to nǐ - then I can immediately type \ and the second script will convert it to 你. So I type niv\ and my text goes from niv to nǐ to 你. I can then type hav\o\ and have my text go: h, ha, hav, hǎ, hǎo, 好. So I can do niv\ hav\o and get nǐ hǎo, or I can do niv\ hav\o\ and get 你 好. Both writing systems in a reasonably simple format.
There are reasons I want to set it up like this. The first script has dozens of functions beyond writ
Those photos were taken under extreme magnification and bright light - the actual size is about the size of an uncooked grain of rice. Maybe smaller. This one was killed by freezing to preserve its form.
In the last few days I've started to see a lot of these - I can find one crawling across my desk every 5 or 10 minutes if I remember to look (Though I can't find where they're coming from at all). They don't move all that fast - they're frankly pretty easy to capture or squash.
In person I don't think they look very much like ants but in the closeup I think they kind of do. Also hoping they aren't termites.
For example - if a popular TV show is about to have its season or series finale, or a sport league is about to have its championship game. Are there any websites that track these, without all the noise of less important shows or games, to keep track of?
ESPN.com does seem to track upcoming sporting events pretty well, but it's not that easy to tell which upcoming games are "big" for the league in question or not.
It seems like every shower has its own unique way of controlling water temperature and pressure. Of all the showers I've ever used, no two of which have ever been alike, I like my controls the least. Plus the faucet has started dripping lately.
Is this likely to be something I can replace on my own, without a plumber? To me, that means: Can I likely do this without damaging the wall, without having to mess with pipes, and without needing to do anything involving words like "hacksaw", "weld", or "plumbing torch"?
Basically I believe in my ability to buy a faucet and control thingie from Home Depot; to use screwdrivers, allen wrenches, pliers, and regular wrenches; to use things like plumbing tape, lubricants, and caulk; and to remember to turn the water off to the house.
Would a project like this likely require anything more complex than that? I tend to prefer shower controls that have separate knobs for hot and cold, but I figure going from a one-knob setup to a two-knob
I'm mostly thinking about insurance here. I've been told conflicting information. I live in Florida.
I live with someone who has a driver's license and a car, but I don't have either. I've avoided getting one because I have no interest in car ownership, and I feel like if I started driving regularly I'd probably die - I have driven before but I really don't think it's something I'd ever get good at.
It's undeniable that having one would be convenient though - for rare occasions like emergencies at a minimum but also other scenarios.
I know almost nothing about how this stuff works. If I get a license, am I required to acquire and pay for insurance, even if I don't own a car or regularly drive? Or will the person I live with have to pay more for their insurance? Are there any other costs or downsides associated with it that I might not be thinking of?
What kind of cat is this? It was taken behind a Chinese food restaurant in southwest Florida.
The person who took the picture said it's a Bobcat, but other people who've seen it have said it doesn't really look like one, and is probably something non-native. Anyone know for certain?
Hollow Knight is an incredibly competent game on pretty much all fronts. In my opinion, Hollow Knight is a masterpiece and we will discuss all the things that make it so great in detail in this Hollow Knight retrospective. However - the one thing that I find most fascinating about Hollow Knight is an aspect of the game that is seldom discussed.
The most fascinating aspect of Hollow Knight is that it exists in the first place - because to put it mildly - Hollow Knight’s existence should not be possible.
Hollow Knight was developed by only three people, in roughly three years.
Three people managed to produce a game that looks this beautiful, features a combat system with a skill ceiling this high, crafted a beautiful world this big, wrote lore that deep, and crafted gameplay this fluid.
Three people did a job that puts most teams of 60 people that work for half a decade on a game to shame.
How did three pull this off?
In this Hollow Knight retrospective, we are going to investigate thi
Rumors are flying of confirmation, but the situation is still frustratingly vague.
Link Actions
In late July, a couple of startling papers appeared on the arXiv, a repository of pre-peer-review manuscripts on topics in physics and astronomy. The papers claim to describe the synthesis of a material that is not only able to superconduct above room temperature, but also above the boiling point of water. And it does so at normal atmospheric pressures.
Instead of having to build upon years of work with exotic materials that only work under extreme conditions, the papers seem to describe a material that could be made via some relatively straightforward chemistry and would work if you set it on your desk. It was like finding a shortcut to a material that would revolutionize society.
The perfect time to write an article on those results would be when they've been confirmed by multiple labs. But these are not perfect times. Instead, rumors seem to be flying daily about possible confirmation, confusing and contradictory results, and informed discussions of why this material either should
I'm very much awaiting a time when users can block specific instances. I still don't want to check the option to hide NSFW content, because I do want to see NSFW content that may show up on non-porn communities. Just not really interested in seeing so much porn in All.
You can check on your settings page, btw, in the Blocks tab - count quickly with Ctrl+F.
About two weeks ago I believe there was some sort of update that let posts that are just youtube links open in-line on the lemmy feed as embeds, by clicking the post thumbnail. This was pretty great.
It seems to be back to the old behavior now, where you can't do that anymore. Why? What happened?
I've had this cactus for a few years, and for a while it's had a problem where it grows so tall that it can't stand up. You can see in the photo that I have it tied to some stakes to keep it upright - if not for those it would literally uproot itself in under a day.
Why might this be? I don't know all that much about houseplants. I water this cactus (and my other cactuses, which are not the same species) once every two weeks, about 1 to 1.5 cups of water. I use some cactus fertilizer like twice a year, pretty inconsistently. It lives perpetually indoors with those three light rods visible in the picture as its sole light source (On for 12 hours a day).
Given how little I know about proper plant care, I'm sure none of that is ideal - but is any of it the obvious culprit for why this happens? What should I be doing better?
Thanks for any help.
P.S. Those two nodules just above the lower string are brand new, and it's never branched out like that before - what should I e