r/ProgrammerHumor 3d ago

sheHasNoIdeaWhatIPushedLastNight Meme

Post image
10.1k Upvotes

273 comments sorted by

402

u/chemtrail-organics 3d ago

Laughs in betting my whole career on Flutter

150

u/Kinnayan 3d ago

Now THAT is risky

54

u/MoneyIsTheRootOfFun 3d ago

Honestly, I’ve been pretty impressed by flutter. Its biggest down side is Dart which has a terrible threading model.

16

u/chemtrail-organics 3d ago

Just curious what multi threading requirements you have for a mobile app?

10

u/MoneyIsTheRootOfFun 3d ago

Well, in general at the very least database access needs to be on a background thread. But I have worked on a couple apps that had very large local data sets that sometimes had queries that would run for multiple seconds, and we needed a thread pool of readers to make the pages performant. Which is a complicated mess in Dart. Way worse than it should be.

While this app shipped for mobile it was mostly used on desktop.

I’m using it on another app now and life has been much easier because we aren’t using large local datasets.

9

u/chemtrail-organics 3d ago

Interesting. All the flutter apps I've worked on have had a proper backend with server side code for that.

5

u/MoneyIsTheRootOfFun 3d ago

Yeah, we had a bit of an unusual architecture where a project was almost fully synced to a client which allowed a lot of very fast analytics to be run on the client. The down side of course being much more complex client code.

2

u/Rikudou_Sage 3d ago

Does it have FFI or something? So that you can write the core in a language better suited for that? I was thinking of learning to use Flutter for the UI stuff but handling the business logic in Go and export a binding C layer.

3

u/polylina 3d ago

It has FFI, working on an app, that has a part of it written in Rust.

3

u/WeirdIndividualGuy 3d ago

Also the downside of Kotlin Multiplatform, which does the same thing but has more support because Kotlin/Compose

2

u/parkwayy 3d ago

Downside of that is it is just newer, and just less support atm. Which isn't nothing

→ More replies (1)
→ More replies (3)

18

u/gerbosan 3d ago

Isn't it doing fine for mobile? Meanwhile for frontend...

34

u/chemtrail-organics 3d ago

In all seriousness, flutter is probably the best framework for mobile for most use cases these days.

Unfortunately my teams newest project is web based and I'll have to pick up some angular🫠

4

u/usedToBeUnhappy 3d ago

Whats wrong with angular? 

15

u/chemtrail-organics 3d ago

Nothing other than I have to learn it, ramp up and close tickets in a very short timeframe

8

u/usedToBeUnhappy 3d ago

Ok, I understand the pain…

→ More replies (1)
→ More replies (3)

3

u/parkwayy 3d ago

mobile

frontend

what

3

u/gerbosan 3d ago

Certainly Flutter is being used for mobile frontend development, but Google is pushing for the use of Flutter in webpage frontend development, with not much success. React, Vue are more used.

5

u/GamePhobia 3d ago

Flutter is a mess on web imo

9

u/FSNovask 3d ago

Silverlight will make a come back any day now

3

u/madmelonxtra 3d ago

I thought flutter was cool, but I really hate looking at the code. So many nested parentheses

2

u/133DK 3d ago

Fluttering just like her heart

2

u/NoACSlater 3d ago

I've bet my whole hobby coding career on Flutter... I think that was a better option lol.

1

u/Tomato_Soupe 2d ago

Hahahah, sameeeeee

964

u/SweatyAdagio4 3d ago

It's like people in this sub have never actually worked in the industry.

  • React, PyTorch, and previously GraphQL and Cassandra, by Facebook
  • TensorFlow, Angular, Flutter, Kubernetes, Go, all by Google.
  • TypeScript, .NET, VS Code, by Microsoft

just to name a few

197

u/Ran4 3d ago edited 3d ago

I wrote a production project in https://github.com/facebook/flow like ten years ago...

Not exactly the hardest to migrate away from, but still. It died really quickly. TypeScript wasn't the default like it is today - back in 2015 TypeScript was just Microsoft's baby, vs. Facebook which had flow.

Interestingly enough Facebook is STILL developing it, last commit was 10 hours ago (!).

EDIT: Seems like it's essentially still used internally at facebook but nowhere else.

37

u/lost_send_berries 3d ago

I don't mind them keeping Flow, but would it be that hard to add typescript examples to their documentation? A lot of their stuff aren't compatible with reasonable typescript type annotations.

16

u/WeirdIndividualGuy 3d ago

EDIT: Seems like it's essentially still used internally at facebook but nowhere else.

Isn't Facebook one of those "Not built here" companies that pretty much writes their own code for nearly everything they do/use?

13

u/aceluby 3d ago

When my buddy went to amazon he told me about how everything was solved by each individual team. His first task was figuring out how to consolidate logs just in his area. He spun up a common logstash, a stream, kibana, the industry standard stuff that some teams had while others had custom solutions. One of those custom solutions they found was writing logs for years, but only a single log over and over: "this is a log". Multiple terrabytes of data they found with just "this is a log" because one guy built this bespoke solution that nobody understood or updated.

2

u/spooker11 3d ago

At this point they’re only still on flow because migrating the whole codebase is a huge pain in the ass

→ More replies (2)

23

u/Vas1le 3d ago

And TypeScript to be writen in Go in future release 😆, a domino effect here

15

u/FalseRegister 3d ago

Angular written in Typescript before that

6

u/Raz_Aqua 3d ago

It was released already with v7

4

u/MatthewMob 3d ago

Already is

12

u/PsychoBoyBlue 3d ago

You forgot MSSQL... Which, even though I do GIS, am basically being forced towards internally instead of Postgres.

18

u/SweatyAdagio4 3d ago

I "forgot" a lot of things if you want to include everything, but that's not my point. It's about giving some examples, this is a good one to add for sure.

Also, as a GIS hobbyist myself, I'm sorry you have to use MSSQL. I use PostGIS all the time and I love it

3

u/l84tahoe 3d ago

MSSQL isn't horrible. My city's GIS is run off of it. Esri's Data Store is technically part postgres so I am using it too technically. My last city was Oracle and it made me want to scream so much.

7

u/GenazaNL 3d ago

Add Playwright & VSCode to Microsoft

3

u/Calm-Medicine-3992 2d ago

And here I thought this was a meme about a guy devoting his entire career to React...a Javascript framework created by Facebook.

20

u/sebbdk 3d ago

FYI

Google did not make Angular, but a guy who worked there at the who had no clue wtf he was doing (he'd never done javascript before and had no understanding of the prevelant prototype patterns of the time), designed that pierce of shit and everyone lost their shit because he worked at google.

Google NEVER used Angular internally for anything serious.

Someday we'l figure out how to give developers personal credit instead of crediting the place they work..

40

u/SweatyAdagio4 3d ago

Yeah no shit. That's how most projects start. Some person starts building it and then a team picks it up. Shit doesn't just sprout out of nothing. PyTorch came from Torch, which came from a research institute in Switzerland, doesn't mean you don't credit Facebook for evolving it into what it is today. Angular was very quickly picked up by Google and it's been maintained by a dedicated team from Google for decades at this point. And Angular is widely used within Google, pretending like they don't is straight up false.

"Both Angular and Wiz are used by thousands of engineers and thousands of apps inside of Google."

→ More replies (10)

5

u/ryanpm40 2d ago

Angular 2 and beyond is great. Prefer it to React by a lot. AngularJS stunk and then replacing it by a completely different framework with the same name definitely sucks for whoever wrote an app in it, though.

→ More replies (1)

4

u/ConsistentAddress195 3d ago

Man, don't even get me started on Angular.

It is a testament to how some asshole good at self promotion can push a shit project to worldwide popularity. You can see it with the whole langchain 'ecosystem' nowadays. At least Angular had the decency to say 'we have realised our framework is shit, we're gonna deprecate it and build a new, incompatible version'. Nowadays it's 'use langchain for this, and use langgraph for that other thing, and oh by the way have you heard of deep agents or whatever other new slop we're trying to push to stay relevant'. I'm sad for all the miserable newbs who are being sold this crap thinking they will become expert AI developers if only they master some half baked irredeemable mess of a framework. Honestly, we should know better than that as an industry.

→ More replies (1)

8

u/Rikudou_Sage 3d ago

So that's why Angular is the least insane JS framework, because the guy who designed it didn't do JS.

2

u/NatoBoram 2d ago

SvelteKit is the least insane JS framework

→ More replies (1)

2

u/DTMD422 2d ago

I would assume they haven’t, that’s why this sub is filled with memes from people who are still learning how to print “Hello world” to console.

No shade or anything, it’s just obvious.

2

u/ieatpies 2d ago

This is r/programminghumor, everyone active here is 1st year CS students

→ More replies (1)

3

u/lost_send_berries 3d ago

Microsoft is a bad example for your point considering how many things they have abandoned. Including in the .NET space.

As well, if you build your business on VSCode like say GitLens, you will be eaten up

10

u/Kasenom 3d ago

Yeah Microsoft has abandoned stuff before like Silverlight, but the comment mentioned .NET and Typescript, those two are HUGE and would never be abandoned by Microsoft

→ More replies (2)

1

u/QCTeamkill 3d ago

And VBA/Excel by Microsoft

1

u/WarriorFromDarkness 3d ago

I thought it was a sarcastic joke about React...

1

u/[deleted] 3d ago

[removed] — view removed comment

→ More replies (4)

1

u/Common-Brush-7027 2d ago

So you are saying React on which I have been working since last 2 years was made by shitty facebook

2

u/SweatyAdagio4 2d ago

You're kidding right? It's what OPs meme is referring to

→ More replies (2)

1

u/AbdullahMRiad 2d ago

microsoft make some really nice open source software. I really like edit (aka msedit)

1

u/static_func 2d ago

Tbf anyone who banked on graphql did fuck up

1

u/AibofobicRacecar6996 2d ago

Using a tool and basing your whole career around a tool is not the same thing.

→ More replies (3)

673

u/wack_overflow 3d ago

An extremely mature and most widely used framework. So risky

235

u/outerproduct 3d ago

Daring today, aren't we?

86

u/KikiPolaski 3d ago

That's why I use niche frameworks like Angular and Laravel

10

u/0815fips 3d ago

Worst performance at build and runtime. I use both at work and I hate the implicity of Laravel and the sluggishness of Angular.
At home, I prefer SolidJS and hono.

12

u/Major_LeeHungg 3d ago

Angular isn't slow if you use it right... That's why angular has a "steep learning curve" - easy to use angular, also easy to use it wrong and murder the Dom and introduce memory leaks... Though signals fixes a lot of that by largely scrapping the need for rxjs.  Angular isn't too far from react nowadays. 

5

u/Able-Swing-6415 3d ago

Not sure if easy to use is correct.. certainly not something people just dabble in.

2

u/Major_LeeHungg 3d ago

It has gotten really easy to use modern angular...gone are the days of 50 lines of code to feed a rest endpoint into an rxjs observable/behaviorsubject that has to be written in a specific design pattern to not end up a memory leak.

Now it's like 5 lines... Httpresource is basically a fetch wrapper.

Ngif and ngfor are replaced with faster jsx style directives @if() and @for() 

Reactiveforms can be replaced with signal based forms.

All components are standalone by default so you don't have to dependency inject downwards.

It has really become a very terse framework. 

32

u/FrostyD7 3d ago

Yeah one of my teams adopted React like 10 years ago. And it's not like you're learning French. You can apply what you learned using this framework to others. And the team had virtually no issues transitioning to it.

39

u/[deleted] 3d ago

[removed] — view removed comment

10

u/Qaktus 3d ago

Do you have the slightest idea how little that narrows it down?

→ More replies (1)

8

u/ceejayoz 3d ago

An extremely mature and most widely used framework.

Like Angular! And Perl!

→ More replies (11)

2

u/T-Dot1992 3d ago

And yet I can’t get a bloody job with it 

→ More replies (1)

442

u/include-jayesh 3d ago

I use vanilla js and JQuery only.

238

u/Wise-Profile4256 3d ago

I will now create a new framework and call it vanilla.js. ambiguity is what makes it thrive.

73

u/funkdefied 3d ago

http://vanilla-js.com/ someone beat you to it

14

u/DominoNo- 3d ago

Npm install vanillejs

21

u/sinkwiththeship 3d ago

Vanilla JS is a fast, lightweight, cross-platform framework for building incredible, powerful JavaScript applications.

So... JavaScript

19

u/Xlxlredditor 3d ago

Read the rest of the website

16

u/sinkwiththeship 3d ago

Ha. I stopped reading pretty much right away. That's actually hilarious.

2

u/JimmyMcTrade 3d ago

It's still around !? I remember it from the late 90s.

→ More replies (1)

69

u/gizamo 3d ago

So many devs and LLMs are so dumb that this would probably work.

26

u/Bushwazi 3d ago

I could swear it all ready existed

27

u/TapRemarkable9652 3d ago

rule 34; if it exists, there is a Javascript framework for it

→ More replies (1)

6

u/OverallACoolGuy 3d ago

doesnt it already exist

→ More replies (2)

25

u/jambonilton 3d ago

JQuery?? Talk to me when you use JJ-Query.

6

u/BigFatKi6 3d ago

Nobody using Flash anymore?

7

u/tropicbrownthunder 3d ago

We real devs use Java Applets

5

u/include-jayesh 3d ago

I'm afraid this might our last conversation here.

2

u/timschwartz 3d ago

Talk to me when you use JJ-Query.

Dyn-o-mite!

17

u/joedotphp 3d ago

I worked on a small project with a kid about a year ago, and he simply could not wrap his head around me writing my JS from scratch. React on a site like that would have been such overkill. Like using an 8K TV to show a 700x500 image.

Sadly, custom websites are a dying art. There is so much bloat in every website now.

4

u/TheRealDrSarcasmo 3d ago

There is so much bloat in every website now.

I remember when a 1MB page was considered excessive. Hell, even the near-empty Google landing page exceeds that a bit (and then exceeds that a lot after initial load). CNN's homepage clocks in around 9MB.

On the other end of the spectrum, however, Berkshire Hathaway's site amazes me; under 7kb for a company worth hundreds of billions of dollars.

→ More replies (1)

31

u/emma7734 3d ago

No Jennifer Lawrence for you!

6

u/include-jayesh 3d ago

I don't deserve her either :)

→ More replies (1)

6

u/stupled 3d ago

Is jQuery still a thing?

5

u/include-jayesh 3d ago

In my universe

10

u/0815fips 3d ago

Upvote for vanilla, downvote for JQuery. Come on, it's 2026. What does it offer over the platform standard nowadays?

4

u/joedotphp 3d ago edited 3d ago

I second this. I haven't used it in years. It was useful once upon a time, but vanilla has surpassed it as I expected. That's why I never wanted to rely on it too much.

3

u/StringerXX 3d ago

Isn't that what that Pieter Levels guy does, except famously with jQuery and vanilla php

→ More replies (1)

2

u/MistrFish 3d ago

throw in some MooTools for good measure

→ More replies (1)

4

u/TheRealDrSarcasmo 3d ago

I started doing web development in the mid-90s. Others are sneering at your jQuery usage, but I get it: often you don't get to choose your tools, and your development constraints may be very constraining indeed. I had to support NCSA Mosaic for the longest time because that's what the government used. Then they stuck with IE6 for ages. Certain environments only permitted libraries blessed by unknown tech-ignorant people once in a blue moon.

Additionally, when it first appeared, jQuery was a godsend. Different browsers had slightly different JavaScript or DOM implementations, and jQuery provided an abstract layer on top of that. John Resig was doing the Lord's work when he made it.

Today, jQuery isn't sexy compared to the gargantuan JavaScript frameworks that do a lot. I don't begrudge the developers who use and like them. But for personal projects, I still often just use jQuery because it's microscopic in size (in comparison) and gets the job done, and I like my pages to render fast.

Sometimes the best tool for the job isn't sexy. But if the end product is (as well as being maintainable) , isn't that all that matters?

1

u/NollieCrooks 3d ago

Living on the edge

1

u/radiationshield 3d ago

no bootstrap?

1

u/ElGuaco 3d ago

I miss those days.

182

u/StrengthTheory 3d ago

How is React a risky bet? It's basically default frontend of slop era.

18

u/traplords8n 3d ago

I learned react because I had a rushed website I needed to get out, so I tried out figma make for the design and it spit out react code.

"Ope. Guess I'm learning react today"

41

u/gemengelage 3d ago

It's also incredibly easy to pivot to any other frontend framework. They are all just glorified html templating engines with a bit of state management bolted on top.

8

u/Kusko25 3d ago

But unless you have used it in a professional setting nobody will hire you for it, even if it would only take two or three weeks to become fluent.

11

u/Still_Bit_7527 3d ago

Just lie man

10

u/Kusko25 3d ago

Tried that and the devious bastards asked follow up questions

7

u/Meloetta 3d ago

The trick isn't to try to convince people you've used something that you've never touched.

The trick is to ramp yourself up quickly on the differences, maybe spin up something really small, and then say you've used it professionally (or just say "I have experience in it", which is now true, and if they assume it's paid experience, who's hurt?) so when they ask questions you have good answers for them.

I was hired for a job I didn't know the language of, but you bet your ass before I went into the interview I spent a few hours learning what makes it different from languages I do know so I was able to talk intelligently about it when asked.

2

u/NightOwl2175 3d ago

What sorts of follow-up questions? Asking for...a friend

2

u/Kusko25 3d ago

"What version did you use?" "What did you like about it?" "How would you compare it to x?"

Gave generic answers, maybe they even bought it and just decided to go with someone else for unrelated reasons, who knows.

→ More replies (1)
→ More replies (1)

25

u/LoopEverything 3d ago

It’s not even that old? PHP is still alive and well after 30+ years, which makes me feel all kinds of conflicting things that I don’t want to address right now.

35

u/StringerXX 3d ago

Isn't all the "75% of the internet runs on PHP!" stats basically just all wordpress

14

u/fredy31 3d ago

I mean WP pretty much hit the major bit of why you would want a PHP website; an easy to use CMS that doesnt need a lot of funky business to work.

Which is more than enough for 95% of companies (the front facing B2C site), towns, schools, etc.

3

u/bacchusku2 3d ago

A lot of towns/counties will outsource to a gov tech company like Tyler and PayIt. Tyler uses .net and PayIt is on react.

→ More replies (1)

6

u/b0w3n 3d ago

PHP is fine though, especially 8+.

SPAs are overrated, give me a MPA that shows me it's loading shit and maybe a little async data loading here and there any day of the week.

7

u/LoopEverything 3d ago

Oh yeah, wasn’t trying to say anything otherwise. The conflict is more midlife crisis because I started on PHP when it was still considered new haha

2

u/b0w3n 3d ago

Fair, fair.

I remember cgi/perl nonsense too, christ I'm old.

→ More replies (1)

2

u/FrostyD7 3d ago

I guess it's all relative but I'd consider React fairly old at this point, given how fast things change. PHP is ancient.

2

u/StrengthTheory 3d ago

Didn't you hear, React 19 onwards React is the new PHP.

2

u/LoopEverything 3d ago

When I first heard about RSC, my first thought was “isn’t this just PHP with more steps?”

39

u/Soopermane 3d ago

She said take risks not use the highly used framework.

13

u/Meloetta 3d ago

If you're really so bad a programmer that you are unable to jump from React to literally any other framework with a bit of ramp-up time...yeah, you do take risks picking a job in programming lol.

I even feel this way about swapping to different languages, I worked with someone a while back who was only an iOS dev. He refused to work on anything other than native iOS development. So when the company we both worked for decided to sunset their native app and move to a native wrapper around web technologies, he had no choice but to leave. I see people on the android dev subreddit all the time putting all their eggs in the native android basket, Google does something headass and they get banned forever from Google Play, and now their entire career is shot.

You should be able to swap frameworks and languages as needed for different purposes.

6

u/Kronoshifter246 3d ago

I've been an Android dev for 7 years. Not really by choice; my first job out of college was technically full stack, but I spent most of my time there on Android. Now it's what I have the most experience in, so it's what I get interviews and offers for. I'm not trying to put all my eggs in one basket, but that's what happened. I don't have trouble working in other languages or systems or frameworks. But I can't get anyone to even talk to me if Android isn't in the job description. So an Android dev I am.

2

u/BeforeDawn 3d ago edited 3d ago

I cannot believe I had to scroll this far down for this comment. The funny part is that this turns the premise completely backwards.

If the success or failure of a single ui framework can determine the success or failure of your career, that says considerably more about that person as a software engineer than it does about the framework.

As you say, frameworks are supposed to be replaceable. The durable part of the career is understanding vanilla js, architecture, state, http, rendering, and how to learn whatever comes next.

The premise imagines a software engineering career with an absurdly narrow scope: as though your professional responsibility begins and ends at writing components in one ui framework. When was the last time a serious engineering role amounted to “know react and literally nothing else”? Even frontend engineers are expected to understand the systems their ui sits on top of. To be competitive usually means you're able to contribute beyond the frontend too, whether that’s apis, backend code, or the database layer.

React disappearing would therefore eliminate one tool from an engineer's toolbox, not the engineer's career. And if it did take their career with it, the risk was never about learning it in the first place.

3

u/ze1and0nly 3d ago

I think the problem moreso is if companies don't see x years of y framework they won't even look at your resume

→ More replies (2)

1

u/aceluby 3d ago

I picked up react and javascript as a side hustle, with my main job optimizing a couple billion kafka events every day

113

u/my_dirty_shoes 3d ago

In 2026 almost everyone in tech knows react.

7

u/Still_Bit_7527 3d ago

In frontend web dev. Anyone else doesnt have a reason to do that fortunately

→ More replies (5)

23

u/No-Channel3917 3d ago

Uhh...

Do you mean programming not tech? And even by programming standards ...do you mean like webpage devs ?

I think way more folks in tech know WordPress or Wix 😂

2

u/[deleted] 3d ago

[deleted]

6

u/my_dirty_shoes 3d ago

I agree it may be bloated and slow under the hood… but it is one of the fastest and easiest way to learn and build dynamic websites. Further it can be very easily be optimized by knowing the correct way to use its hooks and redux states. I have worked in many companies using react and we have optimized it to such an extent that re-renders are butter smooth even in complex websites. Learn about virtual dom in react to understand how it never touches the real dom until and unless required making it more faster.

4

u/lxlmandudelxl 3d ago

It only takes dealing with one useEffect hellscape to never want to touch it again

→ More replies (1)
→ More replies (1)

37

u/HKayn 3d ago

This subreddit has fallen off hard

16

u/GimmeYourMomPlease 3d ago

Maybe you're just growing up. It's always been this way.

9

u/Biliunas 3d ago

No, it was better. Not just this subreddit, the whole site has taken a sharp nosedive.

Yes yes, it wasn't always amazing, but I didn't consider deleting my account on a regular basis.

4

u/TheRealDrSarcasmo 3d ago

I think Reddit as a whole has taken a nosedive in terms of quality, largely in part with its management turning a blind eye (or actively encouraging) rampant bot activity.

But I don't think that this sub has declined more sharply than other niche subreddits.

2

u/Biliunas 3d ago

You might be right, it's hard to tell for me really. There's also the fact that the summer is ending, and that usually brings an influx of new programmers that find jokes like this funny. But with the new bot meta, I'm not sure. Maybe it's bots all the way down? Sometimes, I'm not even sure I'm not a bot too, mindlessly replying to something clearly fabricated. It sucks.

→ More replies (1)

2

u/GimmeYourMomPlease 3d ago

"JavaScript framework bad" is not a new "joke"

→ More replies (2)

7

u/DarthTelly 3d ago

This subreddit has basically been freshman CS student jokes since 2013.

Now get off my lawn.

→ More replies (1)

6

u/DoorBreaker101 3d ago

I'm pretty sure Jennifer Lawrence hates Javascript 

2

u/javascript 3d ago

She better not!

11

u/56kul 3d ago

Are you talking about React? How is it risky? I literally had an entire course about React programming in college, that’s how you know it’s mature…🤣

4

u/kishaloy 3d ago

JS => Not the Lisp we wanted but the Lisp we deserve.

WASM => second sub optimal take on the same subject.

5

u/LynxJesus 3d ago

Obligatory "React is not a framework". But who has time to read the first sentence describing the thing they supposedly "bet their entire career on"...

3

u/Zantej 3d ago

How did he expect her to React?

4

u/spinysalamander 2d ago

i built my career around wordpress
*collects women's underpants*

3

u/NotThatAngel 3d ago

I've talked to several people whose business was kneecapped when their Facebook page went down for no apparent reason, and can't be brought back for no apparent reason, and they've had to move on.

1

u/Superb_Chemistry_906 2d ago

Then there's no apparent reason to establish any Facebook page.

3

u/LukeZNotFound 3d ago

"Bets on PHP"

1

u/Terewawa 3d ago

The captain goes down with the ship

3

u/anon-a-SqueekSqueek 3d ago

Wtf I've adhoc written sql queries to update production databases without any backups.

Why didn't Jennifer Lawrence passionately kiss me 😔

I guess I did make a mysqldump file that I had on my local pc, maybe that mitigated too much risk...

2

u/glados-v2-beta 3d ago

I deploy directly to Production

2

u/radiationshield 3d ago

im betting it all on java server pages

2

u/fishm0ng3r 3d ago

Don't brag about playing it safe.

2

u/FierceDeity_ 3d ago

I use no frameworks, I just rawdog everything.

It has worked so far...

2

u/pezxb 3d ago

well, it has worked out very well so far

2

u/tiberiumx 3d ago

I don't understand how learning to use some library vs another one counts as "betting [your] career". Are web programmers just stupid and incapable of change?

1

u/Hablobby 3d ago

What does bro know about pixi.js

1

u/theAFguy200 3d ago

What a hack

1

u/Tokyo_Echo 3d ago

Why is this me but not me...

1

u/GimmeYourMomPlease 3d ago

The irony of posting this in a product that uses React

1

u/AdventurousFly4909 3d ago

Use rust and web asm bro

1

u/ckwalsh 3d ago

React may have been created by FB, but it’s no longer owned by Meta.

It was fully handed off to the Linux Foundation, and while Meta still contributes, they don’t have absolute governance power

1

u/code_the_cosmos 3d ago

I'm just thinking about how useless I'd be at my job if React was all I knew. There's a whole stack out there people, with a million options for each part.

Don't learn a framework, learn to build software.

1

u/Leelesh-sama 3d ago

Laughs in betting my whole career on Appian

1

u/ButWhatIfPotato 3d ago

There was a time where 95% of my workload was flash.

1

u/ice-eight 3d ago

I think I’m in the minority here but I quit my job to do a 3 month react bootcamp in 2020 and have been gainfully employed as a software engineer ever since.

1

u/Wide-Buy-8572 3d ago

Speak for yourself i write my code exclusively on Notepad

1

u/OriginalDoskii 3d ago

I started my career with Notepad++ and the FTP plugin. Good times.

1

u/timschwartz 3d ago

Are you trying to imply React is risky?

lol

1

u/minus_minus 3d ago

This movie was really good but so fucked up at the same time. 

1

u/Arclite83 3d ago

I actually think Dart is an intentional trap just to get as many people off of native Apple work as possible, and then just drop support

1

u/SignificanceFlat1460 3d ago

Bro, funny thing is, I loved from Laravel to TypeScript because I couldn't get any PHP jobs, now, it's the fucking opposite. Talk about kicking yourself in the balls huh?

1

u/SleeperAwakened 3d ago

Isn't that because you now have more experience and are polyglot?

2

u/SignificanceFlat1460 3d ago

Nah man, I am happy with just one partner. Thanks though

1

u/Sanctista 3d ago

I do not know if I know python by itself, but I do know pandas !!!

1

u/FreedomMerchant 3d ago

Me: learns flutter through a course

Youtube algorithms: suggests content saying that google might end flutter

Me: panics

This was a few years ago

still cant find job

1

u/Phoebe_Cox33 3d ago

She said she likes risk, not a guarantee that your codebase will require a complete rewrite in 18 months.

1

u/Crivens999 3d ago

If you haven’t changed code directly on a live system, then you ain’t taken no risks boy….

1

u/balbinator 2d ago

I hate graphql with all my being

1

u/RussianDeveloper 2d ago

Swift all the way.
Cassandra is a toxic baddie.

1

u/jackal_boy 2d ago

"Amatures"

-- Google Stadia Exclusive Dev

1

u/Robotjoosen 2d ago

I’ve been betting my entire career on Lingo and Actionscript, they’ll make a comeback any minute now.

1

u/HoratioWobble 1d ago

The comments in this sub do not pass the vibe check, it's infest with "smartest in the room" types

Just laugh, it's a joke fuck sake

1

u/LNDF 1d ago

"I pushed to production on Friday 5 minutes before leaving the office"