66
submitted 9 months ago by [email protected] to c/[email protected]
top 50 comments
sorted by: hot top controversial new old
[-] [email protected] 57 points 9 months ago

Refusing rust and wasm is a signal you don’t care about code quality or security

See? You can keep playing that game all the way down to the most onerous language

[-] [email protected] 13 points 9 months ago

Writing code that can’t be scientifically proven to be correct on all hardware it might run on means you don’t care about code quality. /s

The Internet is full of people with a bloated ego trying to justify their opinion and gatekeeping others.

I see this more and more in software as well.

Not sure if it’s always been like this, or if I just notice it more.

Same way there’s thousands of people giving you a guide to write a task list in , but as soon as you want to use anything slightly more complex than what you can learn from working a few hours with something you quickly run out of material and is usually left to fend for yourself.

[-] [email protected] 10 points 9 months ago

Actually, if you really care about quality and types on the front end rust+wasm is not a bad idea 🤔

Now that I've typed that and read it back, were people using TypeScript for anything other than front-end web dev?

[-] [email protected] 12 points 9 months ago* (last edited 9 months ago)

Because at the end of the day TypeScript is still Javascript and it's still bad. Just has some verbose formats to try and make weakly typed language (javascript) appear to be strongly typed. It adds more build steps to what shouldn't be there; build steps make sense for apps, they make much less sense for libraries.

https://dev.to/bettercodingacademy/typescript-is-a-waste-of-time-change-my-mind-pi8
https://medium.com/@tsecretdeveloper/typescript-is-wrong-for-you-875a09e10176

[-] [email protected] 7 points 9 months ago

I'm sorry. Whoever wrote that should give up trying to write articles. It's poorly written and will never convince anyone to change their mind. It's shit. "I know how to convince people they're wrong. Insult them. Setup a ton of strawman arguments. Genius."

Whoever wrote that is bad and should feel bad.

[-] [email protected] 3 points 9 months ago

Which one? There were multiple links in that comment.

[-] [email protected] 4 points 9 months ago

Second one. Just realized there were two. Being close together and the first being long enough to get trailing "..." it all just looked like one big link when I first saw it. May just be Kbin displaying it that way.

load more comments (1 replies)
[-] [email protected] 5 points 9 months ago

We use TypeScript for our node.js backends.

We had two that started out vanilla, but it became too painful to maintain.

[-] [email protected] 4 points 9 months ago

It was used pretty frequently for back end APIs too

[-] [email protected] 4 points 9 months ago

That is disturbing. From my perspective, anyway. There are already so many great (and more appropriate) stacks for web backends, why Frankenstein a Frankenstein into it?

[-] [email protected] 11 points 9 months ago

Well, usually because you've got a team of frontend folks needing to do a backend.

There's one other advantage, which is that you can have a compile-time shared model between backend and frontend. You also have that advantage with WASM, but not with a traditional backend/frontend technology split...

[-] [email protected] 4 points 9 months ago

🤷 people like nodejs and people like type hinting and IDE reflection. Typescript helps a lot with that

load more comments (2 replies)
[-] [email protected] 4 points 9 months ago

@RandoCalrandian @vitonsky

Languages are just tools, so let's take the shortcut to the xkcd about editors 😁

[-] [email protected] 3 points 9 months ago

Can wasm manipulate the DOM yet?

[-] [email protected] 4 points 9 months ago

It can with some glue code that you better be writing in TypeScript if you care about code quality.

(As far as I know, it can't manipulate the DOM directly. Maybe things changed in the past couple months since I checked, but I doubt it.)

[-] [email protected] 26 points 9 months ago

Expect to see more posts like this. With a few projects announcing they're dropping support for TypeScript we're going to have developers worrying that this tech that they've sunk so much time into is suddenly becoming obsolete, so they're going to evangelise hard in favour of it as a defence strategy. Same thing happened when Perl went out of flavour.

[-] [email protected] 14 points 9 months ago

Only a few libraries announced dropping support due to their requirement generics. It's not that big a deal. TS is still popular.

[-] [email protected] 9 points 9 months ago

I said a few, friend 😛 I agree it's not a big deal, but for developers that are totally entrenched in that ecosystem it might be alarming. Hence OP's post.

load more comments (1 replies)
[-] [email protected] 13 points 9 months ago

I've seen so many front-end libraries come and go over the 25 years I've been doing this. Be good at programming in general, and you can usually hop on board the incoming train pretty easily and hop off again before it goes off a cliff. You can't really get too attached to anything in an ever changing industry.

[-] [email protected] 26 points 9 months ago

Man there have been hot take after hot take in the programming communities over the past few days. Here, I'll give my hot take since nobody asked:

If I have to touch your code and I can't tell what inputs it's supposed to accept, what it should do with those inputs, and what outputs it should produce, I'm probably deleting your code and rewriting it from scratch. Same goes for if I can trivially produce inputs or states that break it. If your code is buggy, it's getting fixed, even if that takes a rewrite.

When working with others, write readable and maintainable code that someone with much less context than you can pick up and work on. It really doesn't matter if you need to use TypeScript, mypy, tabs, doc comments, or whatever to do it.

When doing your own project, it doesn't matter. It's your code, and if you can't understand it when you come back to it then you'll probably rewrite it into something better anyway.

[-] [email protected] 19 points 9 months ago

Reading the responses here, why are people so mad about types? Maybe I'm biased coming from a background of statically typed languages and mathematics. I'd rather have a good typing system that makes me think about data than just hoping I've thought about a problem right.

[-] [email protected] 7 points 9 months ago* (last edited 9 months ago)

I'd rather have a good typing system...

So not typescript then.

I'm half joking, but the problem with typescript is that it's JavaScript with types. The industry needs to stop retrofitting types to dynamically typed languages. The type system is an intrinsic part of the language design and if you're going to have it, it should be there from day 1. Being dynamically typed wasn't a language bug. It is a feature designed for a certain class of problem. I'm sure 90% of proponents only want it so they get better completion in their IDE, but I personally think it makes a lot of code far more difficult to read.

[-] [email protected] 5 points 9 months ago

I have valid criticisms of statically typed languages, based around code patterns that are both expressive and efficient that are either difficult or impossible to implement in a statically typed language without "an ad hoc, informally-specified, bug-ridden, slow implementation of half of Common Lisp."

Typescript, however, is different. Its type annotation functionality is not the same as a static type system, which means I get to keep all those things I like about dynamically typed languages while still having compile-time validation.

Flip-side, however, is the complete lack of runtime validation in typescript, and the fact that junior developers trip on that a lot. I would call that a real advantage of javascript (if not enough to stop me from using Typescript). Having no check at all is better than being convinced typescript is protecting you when it's not.

load more comments (1 replies)
[-] [email protected] 13 points 9 months ago

After having to use TypeScript in a project, I don't see much usefulness. It feels more like a weird linter, than an actual language with extra features. It's tons of ugly boilerplate for little gain, at least so far in my experience.

load more comments (1 replies)
[-] [email protected] 13 points 9 months ago

This is the core thesis of the article:

It's true that sometimes you have to write non-trivial types to convince the compiler that your data is correct.

That's okay. Creating maintainable code with high quality often requires putting in the hard work.

There's no real substantiation of the claim; just the claim itself.

Yes TypeScript is onerous but that's just alright.

Maybe it's true but it's a weak argument.

[-] [email protected] 5 points 9 months ago* (last edited 9 months ago)

100% agree. Typescript is just a bandaid on top of a broken language. Sure it's better than bleeding, but it'd be preferable not to get injured in the first place.

And you can still apply the bandaid wrong.

[-] [email protected] 10 points 9 months ago

I'd say the debate about using a strongly typed relational database and ORM is probably more of an impact on end-user turn around than typed language.

[-] [email protected] 9 points 9 months ago* (last edited 9 months ago)

I don't even know what Turbo 8 is

Maybe you should find out?

The idea behind Turbo is your server sends HTML/CSS to the client, and when the content needs to be updated... the server simply sends new HTML which Turbo will inject into the page. You can also annotate links so they fetch new content from the server instead of navigating to a new URL.

Your server side code can be written in whatever language you prefer... Turbo being a 37Signals project I assume they're using Ruby. It'd work fine with TypeScript too if that's your thing. Turbo just uses HTTP / JSON to talk to the server and doesn't have a server side component.

You can have client side code, but AFAIK there's pretty minimal interaction with Turbo - you might for example add an event listener that processes the HTML and as converts ISO date/times into Date.toLocaleString().

If you're writing complex client side code then you shouldn't be using Turbo at all.

This change doesn't affect, at all, the language used by users of Turbo. What's changed is the Turbo dev team themselves have chosen to write Turbo in vanilla javascript. And there are advantages to vanilla JS - it removes the compilation step from one language to another, for example.

load more comments (1 replies)
[-] [email protected] 8 points 9 months ago

I prefer strong static typing for the most part. I find it difficult to mentally model code when it's not clear what exactly is being passed to functions and whatnot. Can also use them to help ensure code correctness. TypeScript has been a welcome addition to my projects over the years and honestly I want them to implement more functionality like pattern matching expressions.

load more comments (1 replies)
[-] [email protected] 8 points 9 months ago

JSDoc: am I joke to you?

[-] [email protected] 7 points 9 months ago

Damn right. I care about getting features in the hands of my users. If code quality helps with that, if type script helps with that, I’m all in favor.

But the moment I care about code quality for its own sake you need to sack my ass like yesterday.

[-] [email protected] 23 points 9 months ago

What an utterly blind, self-centered view. Write good, readable code so you can actually maintain it and so your coworkers don't want to kill you.

[-] [email protected] 7 points 9 months ago

I think vzq's point is that you can write good, readable code that doesn't do what the user wants. Same with other metrics that are ripe for navel-gazing like code coverage.

It's bordering on a false dichotomy... but I also believe that dynamic, untyped languages have proven exceptionally useful for rapid prototyping and iteration.

[-] [email protected] 11 points 9 months ago* (last edited 9 months ago)

I must admit that I write that deliberately to annoy the “code quality is everything” brigade.

I have no issues prioritizing maintainability where needed, but in my experience people that dogmatically prioritize code quality are not honest with themselves. They almost never chase code quality in general. They are always looking to enforce some burdensome standard or specific tool or archaic process or fiddly CICD script, and if you push back they go cry in a corner about the abstract virtue of “code quality”.

Just be straight with me. You enjoy using type script. Tell me how it adds value to the product and the customer.

Stop trying to shame me into it. I can’t be shamed. I have no shame. I’m a professional software engineer.

[-] [email protected] 6 points 9 months ago

You're setting up a theoretically boogie man that no one said exists and then setup the extreme opposite point of view. You're annoying the people that are actually sane. You're being dogmatic in your one views and too extreme.

[-] [email protected] 3 points 9 months ago

Oh fuck me for wanting to give my users what they want and make money right?

[-] [email protected] 9 points 9 months ago

This is a shitty response. You won't make money if you design the app poorly and can't maintain it.

[-] [email protected] 3 points 9 months ago

It’s a business decision. Why would for example an app that’s only needed for a 24 hour event need to be maintainable?

Sometimes it’s ok to take the money and run. Feel free to make your case, but it’s not a developer’s call to make.

[-] [email protected] 3 points 9 months ago

That sounds like bad business. No application is 100% unique in everything. Code reuse saves time. If you are unable to bring anything from one app to another, you're doing it wrong.

Let me guess though, I was right. You're a manager not a developer.

load more comments (2 replies)
[-] [email protected] 6 points 9 months ago

but I also believe that dynamic, untyped languages have proven exceptionally useful for rapid prototyping and iteration.

Except that prototypes never end up as just prototypes, they die or become the real app with lots of masking tape.

[-] [email protected] 6 points 9 months ago* (last edited 9 months ago)

What an utterly blind, self-centered view.

This is a really surprising retort.

In the end, the only thing that has value is what ends up in the user’s hands. The rest is only a means to an end, in the very best case.

This is not a controversial take in professional software development.

What is self centered and self absorbed is putting misguided notions of “craftsmanship” and maintainability over business needs.

[-] [email protected] 19 points 9 months ago* (last edited 9 months ago)

If you can't see that writing readable code is part of the means to that end, I don't know what to tell you. If nobody can maintain the codebase because it's a mess of spaghetti logic and 20-deep dependency trees (I'm looking at you, every JavaScript project I've ever seen), the end product is going to suffer while also making every single engineer working on it want to leave.

This is not a controversial take in professional software development.

Funny, it sure seems like "maintainability should not be a priority" is a pretty controversial take to me.

[-] [email protected] 4 points 9 months ago

You are making a lot of assumptions. You don’t know what my product is, how it is developed, what it’s used for, what its lifecycle is. Whether improving maintainability or code quality would be a net benefit, and whether using type script would be a possible solution.

You also didn’t bother to find out.

You just charge at me guns blazing, trying to string me up for heresy.

Funny, it sure seems like "maintainability should not be a priority" is a pretty controversial take to me.

How many things can you prioritize?

In my world we prioritize one. And that not the one.

[-] [email protected] 11 points 9 months ago

In my world we prioritize one. And that not the one.

Then I'm really glad I don't live in that world.

[-] [email protected] 7 points 9 months ago

In my world we prioritize one.

Weird. In most cases priorities change as the situation demands. The application doesn't matter when it comes to maintainability. Tech debt will take down any application if you keep ignoring maintainability at the expense of just delivering more and more. You sound more like a manager than a developer.

load more comments (3 replies)
load more comments (1 replies)
[-] [email protected] 12 points 9 months ago* (last edited 9 months ago)

maintainability is arguably not a value-added for the end user. But still absolutely important. Robustness of code is arguably not visible to an end-user, until it fails. And that's very important. Features are great, but quality is still important and is basically the mortar between the bricks that are features. Only caring about features leads to poorly written applications.

load more comments (1 replies)
[-] [email protected] 6 points 9 months ago
[-] [email protected] 5 points 9 months ago

So what is it with Anakin's picture? Javascript is the dark side of the, web development, force? XD

Seriously tho, valid points.

[-] [email protected] 3 points 9 months ago* (last edited 9 months ago)

I think that's an image caching bug.

[-] [email protected] 3 points 9 months ago

Or a signal that you'd rather not support the worst way to introduce type systems to frontend dev. While I'm not sure that applies to DHH, I am sure there are other devs that understand compromising all your goals to codepend on Node or even JS itself isn't that much of a win and rather see support for better options.

load more comments
view more: next ›
this post was submitted on 10 Sep 2023
66 points (100.0% liked)

Programming

13266 readers
7 users here now

All things programming and coding related. Subcommunity of Technology.


This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.

founded 1 year ago
MODERATORS