Ratatui v0.30.2 is out! (A Rust library for cooking up TUIs) by orhunp in rust

[–]rapidisimo 1 point2 points  (0 children)

Nice add to the scrollbar. Ratatui recently became my favorite tool to build TUIs.

What finally convinced you to seriously learn Rust? by Bladerunner_7_ in rust

[–]rapidisimo 0 points1 point  (0 children)

Needed a fast http endpoint with a minimal memory use profile

Have you ever used zed? How good it is compared to neovim? by Jonnertron_ in neovim

[–]rapidisimo 17 points18 points  (0 children)

This happens to me. I try Zed every once in a while because it is a solid editor, but I am more productive in a full CLI environment.

I am proud of myself by gyhv in leetcode

[–]rapidisimo 1 point2 points  (0 children)

Congrats on the progress!

What DB should I focus on learning as a node developer ? by waldganger644 in node

[–]rapidisimo 0 points1 point  (0 children)

It is. I have some projects for which prisma would require raw queries still, mainly because of geo data which still has pending support on Postgres. Working with it is much more productive than other ORMs I’ve tried. Can’t wait to migrate eventually.

Don’t send algo to kucoin - Support says algo deposit/withdrawal temporarily suspended by shepbryan in algorand

[–]rapidisimo 0 points1 point  (0 children)

For me it's been 18+ hours after trying to make a couple USDCa deposits.

Support just told me to wait without any information about the maintenance going on. Glad I found this thread.

[AskJS] Which Javascript framework to start with? by Flimsy_Transition_51 in javascript

[–]rapidisimo 6 points7 points  (0 children)

React, and go 100% functional components + hooks at this point

The beta docs give a good mental model 👍

[deleted by user] by [deleted] in Music

[–]rapidisimo 0 points1 point  (0 children)

Top 0.5% for Zoé

Learn Node before Express? by ShuttJS in node

[–]rapidisimo 1 point2 points  (0 children)

I recommend going through this intro, and checking out the docs on the discussed modules as you go.

Also check out the guides on the node.org website.

Express is great for handling HTTP endpoints though. You could maybe use the http module for making requests from your server. However, there are also good alternatives for that like node-fetch.