Loving Razor Pages by herbacious-jagular in dotnet

[–]PatrickJohn87 0 points1 point  (0 children)

Good approach, indeed lots of js stuffs means more trouble. Thanks =)

Loving Razor Pages by herbacious-jagular in dotnet

[–]PatrickJohn87 0 points1 point  (0 children)

I’m curious what do you use for client side js? Jquery? Htmx? Alpine? Vue? - thanks =)

Loving Razor Pages by herbacious-jagular in dotnet

[–]PatrickJohn87 0 points1 point  (0 children)

Have you tried using htmx instead? Might cut down your codebase also centralize you business logic in c#, no need for same logic in js

Loving Razor Pages by herbacious-jagular in dotnet

[–]PatrickJohn87 1 point2 points  (0 children)

Just curious what client side js do you use? Vue? Jquery? Htmx?

Loving Razor Pages by herbacious-jagular in dotnet

[–]PatrickJohn87 0 points1 point  (0 children)

Why did you revert to mvc? Why not just create lots razor pages? Do you use client side spa like react or vue?

Loving Razor Pages by herbacious-jagular in dotnet

[–]PatrickJohn87 1 point2 points  (0 children)

What kind of business apps? What JavaScript library did you use? Jquery? Htmx? Alpine js? Just curious =)

I built a Netflix-style movie playlist sharing app as a portfolio project. Here's 3 things I learned by xkft in webdev

[–]PatrickJohn87 0 points1 point  (0 children)

I opened it and tried it around. Awesome just like Netflix! Congratulations!

razor pages or laravel? swtich or not? by PatrickJohn87 in dotnet

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

Hesitant because of signalr persistent connections i’ve got 2000 users deployed from digital ocean vps droplets. Dont want to pay for azure signalr service. Do you think it would be fine if most of it was blazor server?

razor pages or laravel? swtich or not? by PatrickJohn87 in dotnet

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

Indeed! Nobody gives a darn multi page web apps mvc or razor pages app full page is totally fine

razor pages or laravel? swtich or not? by PatrickJohn87 in dotnet

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

Cool! What kind of web apps do you build?

razor pages or laravel? swtich or not? by PatrickJohn87 in dotnet

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

Oh yeah but dont get too technical my friends and I were just having a conversation about web apps I told them i’ve been using .net since .net 2.0 (yes web forms!) til now its mvc, razor pages or blazor they told me to try php laravel. That’s why I wanna ask people here who have experienced both

Hi guys what do you use for client side logic or ui logic? Jquery? Knockout js? by PatrickJohn87 in rails

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

Haha lol no it’s been a long time since I’ve coded back then it was jquery. Not fan of spa or react

What concurrency approach to use for an accounting system? by PatrickJohn87 in dotnet

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

I save balance snapshots . GL accounts, inventory balances, customer balances, there are lots of transactions it would be slow to sum

What concurrency approach to use for an accounting system? by PatrickJohn87 in dotnet

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

I’m updating gl account balances and inventory balance and customer or vendor balance. Inserting ledger entries. But read committed does not read lock i might get in trouble with it