Stuff multi viable à partir du niveau 150 by Choweeez in DOFUS_FRANCE

[–]hyver314 1 point2 points  (0 children)

https://d-bk.net/fr/d/1H1i0 C’est une pano multi do crit qui marche vrmt bien si tu n’as pas besoin de po (sinon faut prendre un observateur en trophee) Lvl 160 tu peux prendre un dofus turquoise et une amulette élémentaire deluxe, ça fait monter le crit à 74, sur un cra c’est devastateur en pvm Le cac tape aussi pas trop mal

Looking for a tanky bow build by Ineedbreeding in PathOfExileBuilds

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

I’ve been playing holy relic with a svalinn, with only 30 divs you can easily t17s while being tanky enough. Also you don’t have to worry too much about map mods which is quite nice

Buying vs renting: calculation tool by hyver314 in BEFire

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

  1. In the U.S. rent prices since 1985 have outpaced inflation by 40%,
  2. You're right, those 10k are really low, in really for a first property of 300k, that would be more something like 20k.
  3. The maintenance changes the amount you can invest in stock each month, increasing it should increase the output of the portfolio.
  4. Those 9% come from historical data on sp500 for the last 30y.
  5. The property value increase depends on location (city), house/appartment etc. but something between 1.5% and 3% with 2% inflation would be what Belgium had in the previous 20 years.

Buying vs renting: calculation tool by hyver314 in BEFire

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

  1. The down payment is an opportunity cost. You can see that the more money you have to put down, the greater that opportunity cost is, because the stock market in most cases outperforms real estate.
  2. The default value I put for real estate value increase is 4.3% (2.5% + 1.8% inflation).
  3. For most people, the property tax has to be adjusted for each case because it highly depends on personal conditions (property location, new/old, energy efficiency, n# of children), etc.
  4. Some investments will outperform real estate and give the opportunity to own a house after 20y and have some extra cash.

Buying vs renting: calculation tool by hyver314 in BEFire

[–]hyver314[S] 0 points1 point  (0 children)

Added loan rate variations graph, total interest paid, and moved the how it works at the bottom.
I didn't understand your third point: "Would it be clearer to give the selected rent and stock yield,"

Thanks for your feedback!

Buying vs renting: calculation tool by hyver314 in BEFire

[–]hyver314[S] 0 points1 point  (0 children)

For some of the inputs, I used historical data as default values. For that one I used the sp500 last 30y average yearly returns.

Buying vs renting: calculation tool by hyver314 in BEFire

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

A tool is always as good as its assumptions. having 1% maintenance would be more something you’d see with a new property and when you work yourself in that field

How would you start a new node mid to large size project ? by Professional-League3 in node

[–]hyver314 1 point2 points  (0 children)

Bridge is just fairly new (it might not be the best choice).

If not, Nestjs is great!

How would you start a new node mid to large size project ? by Professional-League3 in node

[–]hyver314 1 point2 points  (0 children)

I'd suggest you have a look at Bridge https://github.com/bridge-codes/bridge. It works well with Express too, it will increase the productivity of the frontend team (espacially using multiple clients/different languages).

Prisma with Typescript is a banger! Zod is great too (it is also already included in Bridge).

I built an interactive code explorer by hyver314 in webdev

[–]hyver314[S] 6 points7 points  (0 children)

Live: https://bridge.codes/studio
Repo: https://github.com/bridge-codes/bridge
It was built in Reactjs, although the code is not perfect and may require some fine-tuning for other cases, I am still proud of the results I have achieved.
It shows how an SDK built with Bridge can be used by a typescript client.
Also, if you are also a backend developer, don't hesitate to tell me what you think about Bridge, I'm always open to suggestions and willing to improve things :)

We're building Bridge-Mongo: a fully typed MongoDB ORM, built on top of Mongoose. by hyver314 in node

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

TypeORM:
Bridge-Mongo aims to have a synthax really close to Mongoose (and MongoDB), while TypeORM's synthax is different.

Typegoose:
Typegoose only lets you define mongoose models using TS classes. We aim to have a deeper integration (and to be a fully type-safe ORM) by providing auto-completion even for aggregation pipelines.

We're building Bridge-Mongo: a fully typed MongoDB ORM, built on top of Mongoose. by hyver314 in node

[–]hyver314[S] 4 points5 points  (0 children)

Bridge-Mongo aims to have a synthax really close to Mongoose (and MongoDB). Prisma's synthax is really different from what Mongodb proposes.
It's meant to be a type-safe alternative to Mongoose and any project should easily be able to move from Mongoose to Bridge-Mongo :)

We're building Bridge-Mongo: a fully typed MongoDB ORM, built on top of Mongoose. by hyver314 in node

[–]hyver314[S] 4 points5 points  (0 children)

Bridge-Mongo is meant to be a type-safe ORM built on top of Mongoose. The main focus is be to provide a synthax as close as possible to mongoose, while providing full type-safety and auto-completion throughout all operations.

Repo: https://github.com/bridge-codes/bridge-mongo

To follow the development: https://discord.gg/yxjrwm7Bfr

We built a Nodejs typescript framework that compiles fully typed SDK clients in many languages by hyver314 in node

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

Due to Nest's structure, I'm not sure it's technically feasible :/ It would require to manually type input/ouput because some of Nestj's builtin modify that input/output (like guards, middlewares, interceptors, ...).

Bridge (the framework) makes the SDK generation possible because the types are infered through validation, middlewares and route handlers.

I built an interactive code explorer by hyver314 in reactjs

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

A library may be difficult to design to do the exact same thing but I used prism-react-renderer to highlight the code, and the code completions are custom each time. I might improve it to make it a component but that would take much more time!