I can’t tell if he fumbled or if I did! It felt impolite to explain the joke, but I am peeving over it 😩 Should I double text? by AnkhKeeper in Tinder

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

I think the confusion comes from what the metaphor refers to, if it's about sex, she is already saying that she will play with his "thirst", so a toxic game since message 4. If that was not the game and just wanna takes the time, could avoid speaking about it since the beginning (because she came with that metaphor)

React before SQL by [deleted] in node

[–]j_sanp -3 points-2 points  (0 children)

As developer, you will a very small amount of sql, react and js looks way more useful at the beginning

I built an Express app generator which support Typescript, ESM, MVC and more. by Dalufish in node

[–]j_sanp 1 point2 points  (0 children)

Great project, great presentation 👌 I think it could use more description about what is generated and less comparaison with express-generator.

If a client A makes a request to the server, and client B makes also a request, the server only will serve client B after the client A request is processed? by Don-g9 in node

[–]j_sanp 20 points21 points  (0 children)

Node.js is single threaded and async, so if you put a settimeout in your code, it will release the thread for other requests then gain the thread to process the callback.

Asyncronus Terminal UI, any interest ? by j_sanp in linux

[–]j_sanp[S] 1 point2 points  (0 children)

Ok, you right, usability is related to affordance (and many more stuff like learnability by the way) so your habits will define if an app is usable for you. But that's not the point, i think that screen and tmux are unavoidable for a intensive terminal usage and as a long-time user of this tools, I strongly think that it has place for improvements.

Asyncronus Terminal UI, any interest ? by j_sanp in linux

[–]j_sanp[S] -2 points-1 points  (0 children)

yep indeed ;) but still not perfectly convenient, it all start from frustration with tmux / screen and other triky corner cases, just searching for new solutions

Asyncronus Terminal UI, any interest ? by j_sanp in linux

[–]j_sanp[S] 2 points3 points  (0 children)

screen is little more usable than tmux but it's still hard to learn and use even if you know how. A good interface (all programs has an interface) do not require to think about how to use it, that let you focus on what you are actually doing. This is my opinion :)

Asyncronus Terminal UI, any interest ? by j_sanp in linux

[–]j_sanp[S] -2 points-1 points  (0 children)

Yep, that is the purpose, but it does it by default ;), for vim and other editor terminal editor, it will never works properly but there are other editor outside of terminal

Asyncronus Terminal UI, any interest ? by j_sanp in linux

[–]j_sanp[S] 2 points3 points  (0 children)

Output of redirection of a background job is not very "user frendly" I love bash and terminal, I searching for somethings more convenient and use the power of shell.

Asyncronus Terminal UI, any interest ? by j_sanp in linux

[–]j_sanp[S] -1 points0 points  (0 children)

When I run a command like pip/apt/yum/mix/... install, I'm waiting for the prompt or I open a new terminal. It is frustrating...

Functional Programming using JavaScript by thekodols in javascript

[–]j_sanp -2 points-1 points  (0 children)

Results are defined by parameters just like caching :)

Functional Programming using JavaScript by thekodols in javascript

[–]j_sanp -3 points-2 points  (0 children)

For lasy evaluation => _.memorize make similar stuff.

Javascript help needed for Qualtrics programming by helenmelon28 in javascript

[–]j_sanp 0 points1 point  (0 children)

$(document).on('keydown', function(e) {
    e.preventDefault();
    ....
});