230 points miki123211 5 hours ago 76 comments
I recently noticed that an YC company (Run ANywhere, W26) sent me the following email:
From: Aditya <aditya@buildrunanywhere.org>
Subject: Mikołaj, think you'd like this
[snip]
Hi Mikołaj,
I found your GitHub and thought you might like what we're building.
[snip]
I have also received a deluge of similar emails from another AI company, Voice.AI (doesn't seem to be YC affiliated). These emails indicate that those companies scrape people's Github activity, and if they notice users contributing to repos in their field of business, send marketing emails to those users without receiving their consent. My guess is that they use commit metadata for this purpose. This includes recipients under the GDPR (AKA me).
I've sent complaints to both organizations, no response so far.
I have just contacted both Github and YC Ethics on this issue, I'll update here if I get a response.
neya 3 hours ago | parent
ChrisMarshallNY 3 hours ago | parent
Hope they didn’t get too many folks.
nubinetwork 2 hours ago | parent
medi8r 1 hour ago | parent
pscanf 3 hours ago | parent
You mention GDPR, which also "applies" to me, though I wonder if what they're doing is actually illegal. I mean, after all, I'm putting my email on GitHub precisely to give people a way to contact me.
Of course, I do that naïvely, assuming good faith, not expecting _companies_ to use it to spam me. So definitely what they're doing is, at the very least, in poor taste.
zvqcMMV6Zcr 3 hours ago | parent
KomoD 3 hours ago | parent
A lawyer
RobotToaster 2 hours ago | parent
victorbjorklund 2 hours ago | parent
notpushkin 2 hours ago | parent
They’re not only looking at the public email in your profile, they’re also looking at your committer email (git config user.email). You could argue that you’re not putting that out for people to contact you.
(I’ve used that trick a couple times to reach out to people, too, but never mass emailing.)
ValentineC 3 hours ago | parent
There are likely marketing email datasets floating around the internet that contain email addresses scraped from commit metadata.
I use a catchall with a specific Git client (not GitHub) email address, and found spam and phishing emails being sent there quite a few times.
input_sh 2 hours ago | parent
armchairhacker 3 hours ago | parent
https://news.ycombinator.com/item?id=9332418 (11 years ago)
https://news.ycombinator.com/item?id=20660624 (7 years ago)
https://news.ycombinator.com/item?id=27855152 (5 years ago)
https://news.ycombinator.com/item?id=30900237 (4 years ago)
Seems it’s a reoccurring issue
ChrisMarshallNY 3 hours ago | parent
Every day, I get deluged with hundreds of spam and scam emails, often because some knucklehead entered my email in a form (either accidentally, or as a throwaway red herring).
Maxious 2 hours ago | parent
> Some examples of ethical behavior we expect from founders are:
> - Not spamming members of the community
> To maintain our community, if we determine (in our sole discretion) that a founder has behaved unethically during or after YC, we will revoke their YC founder status. This includes access to all Y Combinator spaces, software, lists and events. All founders in a company may be held responsible for the unethical actions of a single co-founder or a company employee, depending on the circumstances.
RobotToaster 2 hours ago | parent
ChrisMarshallNY 2 hours ago | parent
Ah... but there's the rub.
Define "the community."
Do random GH accounts count as "members of the YC community"?
Sorry, but unsolicited contact, much as I hates, HATESSSS it, is a classic component of any business, and has been, for many decades. I don't think it would be appropriate for a business organization to prohibit its members from engaging in "cold calling," of which, UCE is really an example.
Using the YC branding/name, however, is a different matter.
kristoff_it 3 hours ago | parent
neya 2 hours ago | parent
jvwww 55 minutes ago | parent
AznHisoka 2 hours ago | parent
koakuma-chan 3 hours ago | parent
lyu07282 56 minutes ago | parent
outloudvi 3 hours ago | parent
These providers are the only ones that care about their reputation and thus may take some action. Investors? Nope.
c16 2 hours ago | parent
bakugo 2 hours ago | parent
> I came across your GitHub profile and thought you might be interested in what my team and I are building. We're developing an open source SDK that runs LLMs directly on-device.
What's even more interesting is that both buildrunanywhere.org and runanywheresdk.com show a stock hostinger parking page when accessed in a browser. Something tells me they're intentionally registering these "alternate" domains specifically for spam, to avoid tanking the email reputation of their main runanywhere.ai domain.
I guess I shouldn't be surprised given YC is going all in on AI and most AI companies are no better than the crypto scammers of yesteryear, but still.
Imustaskforhelp 1 hour ago | parent
> Something tells me they're intentionally registering these "alternate" domains specifically for spam, to avoid tanking the email reputation of their main runanywhere.ai domain
This is a really bad look on them.
https://www.whatsmydns.net/domain-age?q=buildrunanywhere.org and https://www.whatsmydns.net/domain-age?q=runanywheresdk.com
Both these domain were registered only 36 days ago
Their main domain had been around for 6 month (216 days) tho:- https://www.whatsmydns.net/domain-age?q=runanywhere.ai
(I also couldn't see any post created by them on YC checking algolia from their website fwiw)
Seeing their star history on their product, I see some few interesting observations[0] Their star history was almost horizontal between december and february until it got vertical all of a sudden.
[0]:https://www.star-history.com/#runanywhere.ai/runanywhere.ai&...
I looked through their linkedin and found this website owned by them as well https://www.openclawpi.com/ and using the YC brand here as well. (registerered 26 days ago)
This website looks fairly AI generated to me as well and there are some bugs within the original website as well which I am now incredibly more unsure of if generated by AI or not given the similarities between the two websites UI/UX as well.
rlaabs 2 hours ago | parent
WhatsName 2 hours ago | parent
thinkingtoilet 1 hour ago | parent
buellerbueller 48 minutes ago | parent
martinwoodward 2 hours ago | parent
The fundamental nature of Git makes this pretty easy for folks to scrape data from open source repositories. It's against our terms of service and those folks might want to talk with some lawyers about doing it - but as every Git commit contains your name and email address in the commit data it's not technically difficult even if it is unethical.
From the early days we've added features to help users anonymise their email addresses for commits posted to GitHub. Basically, you configure your local Git client to use your 'no-reply' email address in commits and that still links back to your GitHub account when you push: https://docs.github.com/en/account-and-profile/reference/ema...
I think that's still probably the best route. We want to keep open source data as open as possible, so I don't think locking down API's etc is the right route. We do throttle API requests and scraping traffic, but then again there have been plenty of posts here over the years from people annoyed at hitting those limits so it's definitely a balancing act. Love to know what folks here think though.
ayhanfuat 2 hours ago | parent
AznHisoka 2 hours ago | parent
If someone wants to message someone, it goes through github notifications or github emails them
Also banning an account doesnt seem like a heavy punishment, given they can simply move to gitlab, bitbucket etc
EdNutting 1 hour ago | parent
You can mask your email address in git commits but a lot of open source projects won't accept that. And some pseudo-open-source ones insist on sending you an email to authenticate before they'll give you access to the GitHub repo (looking at you Unreal Engine!)
So, no, I don't think they could simply "not show the email address".
AznHisoka 1 hour ago | parent
easton 1 hour ago | parent
To his point, you can set that to the no-reply email address GitHub gives you if you don't want mail but do want the commit to be linked to your GitHub account.
[0]: https://git-scm.com/docs/git-commit#_commit_information
ericol 1 hour ago | parent
"What you are doing is against Github's TOS"
koito17 52 minutes ago | parent
It's one thing to offer anonymous e-mail addresses, but it's also awesome that GitHub can help prevent mistakes that would otherwise leak a user's e-mail address. I am not sure how many people try to be privacy conscious on GitHub, but I assume most users don't, so it's nice seeing this little feature exist.
danesparza 22 minutes ago | parent
How do I report that person, though? Your support page about reporting abuse assumes I know the person's Github account: https://docs.github.com/en/communities/maintaining-your-safe...
skwashd 21 minutes ago | parent
trympet 20 minutes ago | parent
TheSaifurRahman 8 minutes ago | parent
theturtletalks 2 hours ago | parent
suyash 1 hour ago | parent
nprateem 1 hour ago | parent
scottydelta 1 hour ago | parent
ls-a 1 hour ago | parent
Edit: With AI's help I found its name. Startup called Bad News.
k33n 50 minutes ago | parent
ls-a 48 minutes ago | parent
keiferski 1 hour ago | parent
Cold emailing rarely works by itself. Cold emailing developers via emails you pulled from their GitHub accounts? At that point, you're actively harming your brand, and may as well just send them spam diet pill ads.
EdNutting 1 hour ago | parent
I sometimes use different git/GitHub addresses depending on who I'm working for or specific projects so I can more accurately detect where data is being scraped from.
EdNutting 1 hour ago | parent
gus_massa 1 hour ago | parent
EdNutting 1 hour ago | parent
input_sh 1 hour ago | parent
rodrigodlu 1 hour ago | parent
And I use a different email fromy priority email for GitHub commits since 4 years ago.
So just stop with marketing slop please.
Yes, I work with AI, and I'm becoming pretty good at it.
But this doesn't mean I'm comfortable pushing AI slop into potential users and customers.
I (and they) want to use AI to facilitate their processes, not to ingest slop content.
axegon_ 1 hour ago | parent
dagi3d 1 hour ago | parent
j16sdiz 1 hour ago | parent
This is not GitHub only, I have got a survey on how my experience interacting with folks on lkml
lordgrenville 1 hour ago | parent
[user]
name = lordgrenville
email = <some_kind_of_id>+lordgrenville@users.noreply.github.comidoxer 17 minutes ago | parent
jacquesm 4 minutes ago | parent