TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Prisma laying off 28% staff

153 点作者 alopes超过 2 年前

39 条评论

danjac超过 2 年前
"I take full responsibility" is the new "our incredible journey" of failing tech company cliches.
评论 #34476633 未加载
评论 #34476778 未加载
评论 #34476845 未加载
评论 #34481644 未加载
评论 #34476770 未加载
评论 #34478112 未加载
评论 #34477730 未加载
评论 #34566358 未加载
评论 #34478157 未加载
评论 #34476956 未加载
评论 #34476994 未加载
评论 #34477738 未加载
评论 #34479000 未加载
评论 #34477621 未加载
franciscop超过 2 年前
I explained the other day to a friend how Prisma looks great but it&#x27;s very unresponsive on Github [1], specially surprising since they raised a lot of money so I thought they&#x27;d have more resources. So he introduced me to the concept of FOSS-washing (in relation to greenwashing). Launch a cool open source piece of software, get big clients and funding thanks to it and then basically ignore Github or just dedicate enough resources to it so that it doesn&#x27;t seem &quot;dead&quot;.<p>I had seen and complained about this before here in HN, how when Github said they were sunsetting Atom for lack of engagement I pointed out that the lack of engagement was... by them, not a single commit in few years so of course there was no activity [2]<p>Edit: looking at the Github tracker now, it seems that now they use Github as the main tracking software? So there&#x27;s a bunch of new issues by internal contributors with &quot;bad description&quot; (meaning it&#x27;s probably the tip of the iceberg of an internal issue just for tracking, not the typical issue someone finds and reports), but the old ones sit there unanswered.<p>[1] <a href="https:&#x2F;&#x2F;github.com&#x2F;prisma&#x2F;prisma&#x2F;issues&#x2F;4433">https:&#x2F;&#x2F;github.com&#x2F;prisma&#x2F;prisma&#x2F;issues&#x2F;4433</a><p>[2] <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=31670443" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=31670443</a>
评论 #34478049 未加载
moomoo11超过 2 年前
I think all these layoffs really come down to haves and have nots. You don’t need prisma, to be completely honest. You do need a lot of other software, otherwise some companies that depend on it cannot operate.<p>I have tried my best over my short (just six years so far in swe, and a few years in a non tech role) career to be on teams where our work is basically in the top 1-3 annual initiatives. It guarantees I keep my job 99% because I work on the things that make money for the company. It’s not my company, so that’s my terms of employment I set for myself. Don’t work on things that push the envelope too far (moonshot), if things don’t work out you lose as an employee (granted if you’re at a big tech company layoffs don’t really mean much with 3+ month severance packages and cozy amounts of additional support).<p>If I’m on an employee vesting schedule I’m gonna make sure I win as much as I can.
rightbyte超过 2 年前
So I read their website and to my understanding, they make a DB interface layer, and have 100+ staff? How is this not a company of like 10 people.
评论 #34476802 未加载
评论 #34476978 未加载
评论 #34476652 未加载
评论 #34484033 未加载
评论 #34477188 未加载
评论 #34476628 未加载
mk89超过 2 年前
Yesterday I stumbled upon this: <a href="https:&#x2F;&#x2F;news.stanford.edu&#x2F;2022&#x2F;12&#x2F;05&#x2F;explains-recent-tech-layoffs-worried&#x2F;" rel="nofollow">https:&#x2F;&#x2F;news.stanford.edu&#x2F;2022&#x2F;12&#x2F;05&#x2F;explains-recent-tech-la...</a><p>Interesting read if you&#x27;re recently reading about a lot of &quot;layoffs&quot;.
评论 #34477430 未加载
decasia超过 2 年前
It gets to the point where it&#x27;s hard to even know what to say about the nth tech layoff announcement.<p>It&#x27;s a good reminder, if we needed one, of how fragile the good times are, for anyone who is an ordinary professional working in an economy like this. I wish there were something more concrete we could do to support each other - like something more concrete than &quot;sure I would recommend people from my network for jobs once we aren&#x27;t in a hiring freeze.&quot;
评论 #34476906 未加载
评论 #34476567 未加载
评论 #34477508 未加载
blanb超过 2 年前
Does this company make any money? Any at all?<p>They have burned so much cash making an average ORM. First in Scala. Then in Rust. For what benefit over just TypeScript? None.<p>Just impossible to debug and a total pain to contribute to for JS devs.<p>When this company dies so to will the ORM. No one else is going to maintain this thing.
puika超过 2 年前
I defaulted to Prisma for edge apps I&#x27;m experimenting with (supabase db). Given it&#x27;s not possible to connect via TCP to a database and I&#x27;m stuck with JS&#x2F;TS for the edge, I opted for Prisma&#x27;s data proxy and henceforth Prisma.<p>Using the ORM means I&#x27;m tied to this mess of an abstraction, migrations and scripts that require so many workarounds and experimentation to make it worthwhile when your app is not a simple CRUD or you want performance optimizations without ending up writing your own queries yet again. The generated TS API is the only pleasant feature, but doing things the Prisma way I noticed my app is now tied to this ecosystem and its quirks and I dread it. Being unable to check generated queries&#x27; SQL beforehand is also a huge issue that is not getting solved any time soon from what I&#x27;ve gathered on their github.<p>You could also use Prisma as a SQL client and leverage their data proxy, without needing to use the ORM and execute SQL migrations and queries directly, which is what I intend to do from now on. Please do let me know if there are any other generic alternatives database-wise (for &quot;the edge&quot;), I miss raw [Postgre]SQL. Supabase&#x27;s client is the closest I can think of and it also generates types from your db, but it&#x27;s obviously not a generic solution.<p>Lastly, one particular thing that disgusts me (I believe it&#x27;s not on Prisma but due to how the edge works) is that you cannot use a local database for development. Perhaps ngrok will work, but then you&#x27;d need to constantly update your data proxy project settings manually - I need to experiment more on that.
评论 #34477814 未加载
评论 #34477731 未加载
评论 #34477554 未加载
satvikpendem超过 2 年前
Damn, I use Prisma, it&#x27;s a good way to have a unified database schema for which you can generate code in any language you want. It was very useful for converting a TypeScript project to a Rust one, I use prisma-client-rust in particular.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;Brendonovich&#x2F;prisma-client-rust">https:&#x2F;&#x2F;github.com&#x2F;Brendonovich&#x2F;prisma-client-rust</a>
评论 #34477385 未加载
beardedman超过 2 年前
I&#x27;d be interested to know the age (or any other) demographic of HN&#x27;ers commenting on posts like these. Lot of people sounding very personally slighted by companies trying to remain profitable (or just in business).
评论 #34478304 未加载
评论 #34477997 未加载
评论 #34477680 未加载
hsn915超过 2 年前
This company is based on an ORM library? How do they make money?
评论 #34477279 未加载
评论 #34476620 未加载
评论 #34476607 未加载
评论 #34477256 未加载
benjaminwootton超过 2 年前
This feels like a pithy negative quote, but I’ll say it anyway. How is a Node.js ORM a business in the first place?
评论 #34477321 未加载
评论 #34477441 未加载
saos超过 2 年前
I’m curious. These lay-off were inevitable… however what are people predicting will happen in 3-4 years time? Back to hiring frenzy?<p>&gt; Severance pay: All departing team members will receive one month of additional pay per year of service, plus the payout of any accrued PTO.<p>Compared to other companies. This is worst I’ve seen
bottlepalm超过 2 年前
Ugg the whole node stack ecosystem is so good, but so shakey. It makes me nervous building on these foundations managed by relatively small companies - Vercel and Prisma. Who knows if one day they’ll just collapse. Also React, is Meta really committed to it?<p>This is why we gravitate towards more stable platforms like .Net for big important projects, but their current client&#x2F;server stack is not very good (Blazor)
throwaway230122超过 2 年前
Funny timing. 3 days before this they had a major product release[0].<p>One wonders how related those are.<p>At a minimum, I suspect there were some GTM folks working pretty hard on the launch the last few weeks who 3 days later are out of a job…<p>[0] <a href="https:&#x2F;&#x2F;www.prisma.io&#x2F;data-platform&#x2F;accelerate" rel="nofollow">https:&#x2F;&#x2F;www.prisma.io&#x2F;data-platform&#x2F;accelerate</a>
revskill超过 2 年前
The issues with &quot;enterprise offerings&quot;, is that they never tell about their &quot;weakness, shorcomings or disadvantages&quot; comparing to other tools. Why ?<p>I found it&#x27;s kinda like an &quot;asshole&quot; behaviour, because it tricks people into illusion of a &quot;one tool to do it all&quot;. The reality is not, far from truth.
评论 #34477520 未加载
varsketiz超过 2 年前
There&#x27;s many comments about what does &quot;I the take full responsibility mean&quot; in these threads about layoffs. I&#x27;m curious - what do you think it means and should mean? I take that a company offering better severance than required by law is taking at least some responsibility.
评论 #34477751 未加载
评论 #34477782 未加载
pcthrowaway超过 2 年前
Isn&#x27;t giving only a month of severance terrible for morale of remaining team members?<p>I suspect I&#x27;d be looking for another job if this was me.<p>Or conversely, why is every other company giving a minimum of 2 months of severance?
评论 #34477504 未加载
nemo44x超过 2 年前
Is the word “impact” the latest way of saying “fired” without saying it? We are seeing that particular word in nearly every note regarding these types of action.<p>Why this word and why is everyone using it? It’s not only CEOs and HR but on LinkedIn I see many people referring to themselves as “impacted” and open to word, etc.<p>Is there a word for this type of memetic term suddenly being used everywhere as a substitute for previous words? Wasn’t “downsized” the word like 20 years ago?
评论 #34477344 未加载
评论 #34476960 未加载
评论 #34477183 未加载
1attice超过 2 年前
We&#x27;re quickly approaching a tipping-point, where the now-traditional promises of wealth (or at least, wealth&#x27;s <i>possibility</i>) are less plausible, and meanwhile, the inequality between winners and losers is skyrocketing.<p>I&#x27;m excited to see what contributions the tech industry&#x27;s workers wind up making to the union movement. That&#x27;s a whole lot of big, juicy, pissed-off brains, and a whole lotta matches.
vijaybritto超过 2 年前
Comes as a shock to me when I&#x27;m literally reading their documentation on setting up sqlite with prisma for an internal project
评论 #34476971 未加载
kvz超过 2 年前
&gt; “those affected have already been notified via personal and work email”<p>Even for remote staff, there are many more human ways of informing someone they are out of a job than shooting an email. Am I the only one who feels that way? Is it actually better to get an email an process the blow in async? Genuinely curious as I didn’t see this comment yet.
评论 #34476864 未加载
评论 #34476819 未加载
评论 #34476822 未加载
评论 #34476996 未加载
marmada超过 2 年前
I&#x27;ve used Prisma before, and I will note that there pace of feature development seemed mind numbingly slow for a company as large as they were. Entirely possible I&#x27;m missing a lot of things, but it was just a big disappointment overall.
sidcool超过 2 年前
As someone who&#x27;s scared of all the lay offs happening, what should I do to calm down and keep going?
评论 #34478145 未加载
评论 #34477820 未加载
cebert超过 2 年前
Is there a communication strategy that recommends that the heads of companies state that they “take full responsibility”? This seems to be a common statement in the recent layoff memos, but it doesn’t appear that the C-suite ever faces substantial consequences.
mountainriver超过 2 年前
Everyone wants to dog on these companies but it was just the natural result of loose monetary policy.<p>When money was cheap, you basically had to outgrow your competitors and take on as much as possible or get beat.<p>That rapidly reversed with inflation and now the game is efficiency
atdrummond超过 2 年前
If I ever had to layoff a double digit number of employees, I would also layoff myself. I couldn’t in good conscience externalize the impact of my bad decisions on employees whilst leaving myself unaffected.
评论 #34476823 未加载
评论 #34477019 未加载
评论 #34477000 未加载
blippitybleep超过 2 年前
Hmm. I just brought that into a tech stack for a client. A 28% reduction in head count surely doesn’t bode well for the future of Prisma.
评论 #34478128 未加载
jbirer超过 2 年前
This is why I use no ORMs and use mysql like a man.
评论 #34477903 未加载
评论 #34483225 未加载
评论 #34481947 未加载
bottlepalm超过 2 年前
As good as Prisma is, it’s still light years behind Entity Framework in functionality. I’d kill for a JS ORM as good as EF.
KyeRussell超过 2 年前
I don’t want to be another HN commenter saying I could build Prisma in a weekend, because I can’t. I couldn’t build Prisma in a year, in five years, in large part because I’m not smart enough.<p>But bloody hell, VC backing and that many employees? I happened to recently give Prisma a whirl, and even for my simple toy project, the holes in the client functionality do not feel consistent with my understanding of what that many people can do, even taking to account a large percentage of non-eng roles.<p>The JS ecosystem seems particularly tolerant of VC funded for-profit efforts (try saying that five times fast) holding this sort of prominence. Who remembers all the drama at npm before Microsoft bought it? The whole thing puts me into a deeply cynical, judgemental headspace. The JS ecosystem feels way more enamoured with branding, celebrity, and money, than what I am personally used to. I’m no old-timer either by any measure. There’s certainly more effort put into marketing to developers, and there’s much less of a sense of collaborative goodwill because everyone wants their piece. Either money, or this new higher standard of tech micro-celebrity.<p>Say what you want about the massive shortcomings of the previous generation&#x2F;s of tech culture but at least we had a pretty good run of not letting this happen.<p>I’m too tired and worn out to have this sort of boom and bust cycle so directly implicate tooling that can have so many points of interaction with something I’m building.
评论 #34477870 未加载
readthenotes1超过 2 年前
Wouldn&#x27;t transparency require addressing the problem with the team before firing them?
mesmertech超过 2 年前
Been using Prisma quite a bit recently, wonder if this causes a slowdown in new features.
turbobooster超过 2 年前
What&#x27;s the best Prisma alternative for js web projects?
评论 #34478720 未加载
cute_boi超过 2 年前
I am fully responsible for this layoff<p>- CEO of every tech company
rutierut超过 2 年前
&gt; Upholding Prisma’s culture of openness and transparency<p>We will disclose the bare minimum amount that we can get away with, plus things that would end up biting us in the ass if we didn’t.
jalino23超过 2 年前
how many are affected? 28% of what?
评论 #34476549 未加载
评论 #34476827 未加载
drstewart超过 2 年前
Wait let me guess, the CEO is taking full responsibility but with no actual consequences?
评论 #34476503 未加载
评论 #34476521 未加载
评论 #34476533 未加载
评论 #34476591 未加载
评论 #34476487 未加载
评论 #34476493 未加载
GnarfGnarf超过 2 年前
ORM = &quot;Object–relational mapping&quot;<p>You&#x27;d think they&#x27;d mention that once in their Website?
评论 #34477666 未加载
评论 #34478162 未加载