this post was submitted on 14 Sep 2023
173 points (100.0% liked)

the_dunk_tank

15910 readers
2 users here now

It's the dunk tank.

This is where you come to post big-brained hot takes by chuds, libs, or even fellow leftists, and tear them to itty-bitty pieces with precision dunkstrikes.

Rule 1: All posts must include links to the subject matter, and no identifying information should be redacted.

Rule 2: If your source is a reactionary website, please use archive.is instead of linking directly.

Rule 3: No sectarianism.

Rule 4: TERF/SWERFs Not Welcome

Rule 5: No ableism of any kind (that includes stuff like libt*rd)

Rule 6: Do not post fellow hexbears.

Rule 7: Do not individually target other instances' admins or moderators.

Rule 8: The subject of a post cannot be low hanging fruit, that is comments/posts made by a private person that have low amount of upvotes/likes/views. Comments/Posts made on other instances that are accessible from hexbear are an exception to this. Posts that do not meet this requirement can be posted to [email protected]

Rule 9: if you post ironic rage bait im going to make a personal visit to your house to make sure you never make this mistake again

founded 4 years ago
MODERATORS
 

This is an instance we have never federated making a defederation post about us. You can search the instances page, we've never linked with a kbin instance. we've never interacted with kbin users. we don't even have to dunk on them for our posting power to overwhelm.

rent-free mao-aggro-shining

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 97 points 1 year ago (3 children)

Kbin doesn't comply as well with ActivityPub standards, and it shows posts and comments from Hexbear, which Kbin users comment on and reply to.

Here's an example of a Kbin user commenting on a Hexbear post. But that kbin.social comment doesn't show up on lemmy.ml, because, after all, Hexbear doesn't federate with kbin.social.

So Kbin users are replying to Hexbear, maybe with the intent of rebutting, and Hexbear users never respond. If I were a lib, I'd think I won an argument or something

[–] [email protected] 58 points 1 year ago (1 children)

I really wish there was a bot or something to grab all the defedded libs responses to stuff here. That could be quality dunk tank material.

[–] [email protected] 58 points 1 year ago

AUTOMATE THE SLOP

[–] [email protected] 57 points 1 year ago (2 children)

I'm still trying to figure out why anyone would start a brand new web service project in PHP of all languages in 2021.

[–] [email protected] 35 points 1 year ago* (last edited 1 year ago) (2 children)

The only thing worse than starting a PHP project in 2021 is starting a PHP project any time before 2021. I work in PHP at work and the code we’re writing today is night and day compared to the deranged shit that’s in some of our legacy services. And compared to the JavaScript framework hype train (or maintaining ancient jQuery) I can definitely see why someone would start a greenfield PHP+HTMX project today.

That said, I’ve been starting hobby projects with Go+HTMX for about a month and that’s been pretty fun

[–] [email protected] 22 points 1 year ago (2 children)

ngl, I hate writing go because they managed to design a language that learned nothing from 30 years of development on programming languages. the structure of the code is invariably obscured by the never ending boilerplate, it's impossible to abstract over common patterns or even to write parameterized data structures, and a modern programming language with nulls is inexcusable.

[–] [email protected] 16 points 1 year ago (1 children)

"The key point here is our programmers are Googlers, they’re not researchers. They’re typically, fairly young, fresh out of school, probably learned Java, maybe learned C or C++, probably learned Python. They’re not capable of understanding a brilliant language but we want to use them to build good software. So, the language that we give them has to be easy for them to understand and easy to adopt."

[–] [email protected] 17 points 1 year ago (1 children)

it's such a deeply reductive and patronizing view of the capacities of other human beings. one of the languages they're referring to is Haskell, so using it as an example, someone took it to a primary school near where they lived and taught it as a summer school program to said primary school students (I believe in Brazil). they picked it up readily. conversely, adults who all ready know how to code struggle with the language.

that is, it's precisely because we presuppose that these languages are "too complicated" and don't teach them that creates the circumstances where people struggle to learn. if you expect that people can learn and change and give them support, it's feasible in most cases. if you presuppose that they can't, well by golly what do you know, they can't.

in other news I hate Rob Pike.

[–] [email protected] 3 points 1 year ago

I'm not really competent at Haskell, but having my first language be FORTRAN of all things certainly flattened the learning curve. It's not all that hard you just have to approach it without preconceptions.

[–] [email protected] 8 points 1 year ago (1 children)

I feel that discussing Go is very much a "a vote for Bart is a vote for anarchy" situation. All those are perfectly valid points. But in the end do they really matter in day-to-day situations?

Personally I'm willing to forgive a lot of interesting design choices for all the other benefits the language has. Super-fast compile times, massive standard library that's automatically multithreaded, the elegant simple beauty that is the channel system, one enforced style that helps readability of others' code, easy cross-compilation, memory safety, C-like syntax that's easy to pick up, etc etc etc.

[–] [email protected] 9 points 1 year ago

personally the tedium of writing the same code over and over again + the inability to express invariants to the compiler so it can check my work for me is just plain worth more to me. I'm too dumb and ADHD for it.

[–] [email protected] 13 points 1 year ago

That said, I’ve been starting hobby projects with Go+HTMX for about a month and that’s been pretty fun

Amen to that! Go is easily my favourite language for writing web backends. 95% of what one needs for the average web project is part of the standard library, including that really nice automatically-multithreaded web server. And the html templating is wonderful to work with. Most of what I write has to work javascript-free in a default-settings Tor browser. Go's templating makes it really simple to do server-side rendering of complex pages.

A nice bonus is that the very C-like syntax meshes well with my grew-up-on-C brain. For me PHP's syntax is downright Lovecraftian.

[–] [email protected] 15 points 1 year ago

perl cgi scripts are just a little too "enterprisey"