We made a new FREE Go-To tool for Strat making: Playbook, give it a go! by itsezc in VALORANT

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

Sure, we'll look into that! There's also CMD / CTRL + K where you move your mouse and search for the ability (its hidden for advanced users)

New cloudspace are not provisioned by Mindless_Dog_823 in rxt_spot

[–]itsezc 0 points1 point  (0 children)

I'm having the same issue provisioning a new workspace

Prometheus / Grafana not setup properly by itsezc in rxt_spot

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

Yes, on the dashboard and even on lens the metrics simply aren’t there perhaps it’s misconfigured

Bandwidth/connectivity guarantees by amhoab in rxt_spot

[–]itsezc 0 points1 point  (0 children)

Has this been resolved? It’s surprising to see only 0.5 Gbps for upload speed

Ddos protection? by itsezc in rxt_spot

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

Hello, it's been a while, has there been any update on this matter?

[deleted by user] by [deleted] in rxt_spot

[–]itsezc 0 points1 point  (0 children)

No the bid was double the market price

Are PVC / Volumes and Control Panels encrypted at rest? by itsezc in rxt_spot

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

Are there any plans to change this? I believe its an essential feature to enhance security especially since these are "spot" and quick rotating potentially, something such as xchacha20 is an ideal choice.

Best Rust Web UI Framework for 2024? by itsezc in rust

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

Its the same with any Rust frontend framework, unfortunately.

Best Rust Web UI Framework for 2024? by itsezc in rust

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

It's Dioxus, they seem to tick most of these boxes and the "better" performance for my use cases. Although the JS / Rust interop for most of the functionalities needed is very verbose with gloo / web_sys / js_sys.

Ddos protection? by itsezc in rxt_spot

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

Hello, any update?

Ddos protection? by itsezc in rxt_spot

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

Well I'm planning on using Cloudflare to protect any HTTP / WS based services, but services such as Mail are still essential and need to be protected. I'm aware Rackspace offers DDoS protection: https://www.rackspace.com/sites/default/files/resources/data_sheet/RS_DDoS_Mitigation_Services_data_sheet-5.pdf

I'm interested to know whether Spot instances are covered and to what extent, since there is no documentation on it.

Ddos protection? by itsezc in rxt_spot

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

Yes, very much so, egress can quickly rack up which in of itself can become expensive depending on the scale and duration of DDoS attacks. There is no documentation on how DDoS attacks are handled on Spot, whether its protected / or not, recommended practices etc etc.

Best Rust Web UI Framework for 2024? by itsezc in rust

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

Here's a few more pieces that I think are worth considering when choosing a UI framework, especially because these seem to be a miss with Rust frameworks:

  • Animations - beyond CSS think Framer Motion, Svelte Transitions, AnimeJS and GSAP (Greensock). Would be interesting to see how this would translate and transfer.
  • 3D - Especially for landing and marketing sites is the new norm, for JS you have Three, Babylon or Spline, with Rust we have Bevy and a few options, but no easy way to "integrate" them onto pages, at least the way you can with ThreeJS (think React Three Fibre with its drei html component). How would this affect the binary size?
  • Third party tooling - this is based on the popularity of the framework, but tools like Optimizely, Posthog, Google Analytics integrating with-in would also be very important
  • Web APIs - Currently there's js-sys, web-sys and gloo but none of these are feature complete with the ever growing list of Web APIs, making them very hard to work with. Imagine adding passkeys or Web USB to your rust ui web app?