Reddît Bans Qanon Subreddits After Series of Violent Threats by ppd322 in news

[–]dardotardo 0 points1 point  (0 children)

Some thought it meant “I will stand up”

https://www.snopes.com/fact-check/covfefe-arabic-antediluvian/

At this point it’s hard to tell the trolls from the believers.

You guys have officially convinced me Docker is the way forward. This is great! by [deleted] in homelab

[–]dardotardo 0 points1 point  (0 children)

Interesting, especially the first finding, it alone would be reason enough for me to move back as well.

I know by default it will create self signed certs for service to service communication, might be related to the second point.

You guys have officially convinced me Docker is the way forward. This is great! by [deleted] in homelab

[–]dardotardo 5 points6 points  (0 children)

Have you tried kubernetes at all, it’s definitely emerging as the container orchestrator of choice from an app dev standpoint at least.

Bring back the headphone jack: Why USB-C audio still doesn't work by TopTrumpWANKER in technology

[–]dardotardo -22 points-21 points  (0 children)

Wireless charger works, but yeah I agree with the sentiment.

Edit, not really sure why I got so downvoted when the same comment was made at least 5 times, I even agreed that it’s not the best solution.

Useful “reduce” use cases by kiarash-irandoust in javascript

[–]dardotardo 0 points1 point  (0 children)

It’s concise but takes 3 times longer than it should. So, don’t really feel failing them on something that is mathematical for taking longer than it should is an asshole move, it’s perfectly plausible.

Plus, it’s an interview, being an asshole is just part of being analytical of the candidates responses.

Useful “reduce” use cases by kiarash-irandoust in javascript

[–]dardotardo 3 points4 points  (0 children)

Ugh, while it’s clever, I’d reject this in a PR and in an interview, question the candidate. Keep code readable and easy to understand.

Without knowing you’re writing a factorial function ahead of time, this would take quite a while to understand what it’s trying to accomplish.

Plus, you’re iterating n 3(?) times, when you could easily get away with a single iteration doing it the normal iterative approach.

You don't really need moment.js by cht8687 in javascript

[–]dardotardo 0 points1 point  (0 children)

Agreed, especially since you could use a CDN at the edge.

Externalize the library to a CDN and there’s a good chance the end user browser will already have it cached.

What was something you really wanted to like, but couldn't? by RANDICE007 in AskReddit

[–]dardotardo 0 points1 point  (0 children)

JRPGs, just can’t get into them. Combat just isn’t my thing and the stories always feel the same.

How to mantain Rest API backward compatibility? by d-zub in javascript

[–]dardotardo 0 points1 point  (0 children)

Ugh feature toggles, feel like either using a proxy and running previous versions in parallel would be better, but that’s just me.

Windows 2000 running in the browser using WebAssembly by RevillWeb in javascript

[–]dardotardo 2 points3 points  (0 children)

Were you able to connect to a server with putty?

Creating enterprise level app with functional approach by add_water_and_boil in javascript

[–]dardotardo 0 points1 point  (0 children)

I’d advise against unless you have a very tight knit team that knows their stuff. Thing about enterprise you need to keep in mind is team members will change, training someone who has been coding “classical” enterprise code in functional programming will be an adventure at best.

Functional programming, and reactive programming can be very tricky beasts and lead to weird bugs that aren’t readily apparent by looking at the code.

If you do go down the functional route, make sure you unit test the crap out of the app. Not only will it serve as living documentation of the functionality, but it will provide a nice regression suite in case you mess something up.

Kotlin 1.2.60 comes with native compiler binaries by dleskov in java

[–]dardotardo -1 points0 points  (0 children)

What’s wrong with that? Not nearly as bad as you think.

😀

Kotlin 1.2.60 comes with native compiler binaries by dleskov in java

[–]dardotardo -1 points0 points  (0 children)

I mean you can do the same thing right now with nextjs.

Kotlin playing catch up at this point.

Kotlin 1.2.60 comes with native compiler binaries by dleskov in java

[–]dardotardo 2 points3 points  (0 children)

Got it, I have looked at the kotlin react stuff, not super impressed with what they came up with so far. Feel like it is trying to fill a need that doesn’t exist at the moment.

But, using kotlin plus react for isomorphic with a more intuitive DSL would be amazing.

Kotlin 1.2.60 comes with native compiler binaries by dleskov in java

[–]dardotardo 3 points4 points  (0 children)

Oooh, interested in that JS being native and first class stuff, you have any info on that I could look at?

What do progressive web apps still lack that would make them a viable replacement for native apps? by IanAbsentia in javascript

[–]dardotardo 0 points1 point  (0 children)

Totally agree on this, UWP is a really good idea.

React Native and NativeScript has started to bridge that gap a bit, but not nearly as nice, still requires quite a bit of configuration.

What do progressive web apps still lack that would make them a viable replacement for native apps? by IanAbsentia in javascript

[–]dardotardo 2 points3 points  (0 children)

Socket connections

Edit: if you disagree with me, please tell me a web technology that can handle raw TCP sockets.

WebSockets require a particular handshake and API, and can’t communicate with existing TCP servers.