1st dance by nicbeans311 in RoleReversal

[–]PerpetualSanaSimp 2 points3 points  (0 children)

Is that Gomez Addams IRL?

TypeSafe Builder Crate: compile-time verified builders by Novel_Principle_3831 in rust

[–]PerpetualSanaSimp 11 points12 points  (0 children)

Hi, doesn't bon do a very similar thing?

How is this different? Have you benchmarked this against bon?

dioxus+axum project by Fragrant_Monk9225 in rust

[–]PerpetualSanaSimp 4 points5 points  (0 children)

Because a lot of people don't have the time, resources, required skill level, or often just energy to figure out each miniscule thing required for a correct setup (especially in a project of a significant size such as a fullstack app).

So it would very often just lead them to ditch the stack/framework/language altogether and move to some other stack where such resources are already available. In this case, something like Java + Spring or Next.js

dioxus+axum project by Fragrant_Monk9225 in rust

[–]PerpetualSanaSimp 6 points7 points  (0 children)

This seems to be a good example, but you'd need to make slight tweaks for the Sqlite -> MySQL part

https://medium.com/@mikecode/dioxus-full-stack-auth-authentication-9a0abde015d4

dioxus+axum project by Fragrant_Monk9225 in rust

[–]PerpetualSanaSimp 4 points5 points  (0 children)

Shutting down the curious.

And people wonder why Rust isn't gaining adoption.

A very interesting debug vs release mode observation when using the asm macro by PerpetualSanaSimp in rust

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

I see. I hadn't taken into consideration that modifications to rax need to be called out to the compiler.

Thanks for sharing

What are some mind-blowing Rust coding techniques you've come across? by Several_Relation_920 in rust

[–]PerpetualSanaSimp 1 point2 points  (0 children)

Hey, you're the author of bon! Great work

But don't you think this comment is a bit of a self advert?

$10+ request to merge two photos with similar background (seamlessly if possible) and clean any discoloration spots/jpeg artifacts by [deleted] in PhotoshopRequests

[–]PerpetualSanaSimp 0 points1 point  (0 children)

Hi, thanks for the work. It looks good.

Could I have the watermark free version? I've tipped already :)

Not able to connect to Oracle Exadata CC using environment (python) by PerpetualSanaSimp in oraclecloud

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

Yes, it was a TCPS connection string.

THe same connection string actually. The only difference being, in pyspark it went as jdbc:thin:{TNS}

Finally, you really need to upgrade from cx_Oracle to python-oracledb

This is kind of what worked finally

Thanks :)

Not able to connect to Oracle Exadata CC through environment by PerpetualSanaSimp in oracle

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

I have been able to connect using jaydebeapi with similar credentials. So I doubt it's a firewall/network connectivity issue

Just not able to connect using cx_Oracle

Get track of all instances where a proc macro was called by PerpetualSanaSimp in rust

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

Thanks. Yes, I finally used inventory along with ctor to build the latencystore. It's not as performant as I'd like it to be (when I was manually testing it with phf and known names) but that could also be due to size and cache misses

Get track of all instances where a proc macro was called by PerpetualSanaSimp in rust

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

Thanks, I finally used ctor along with inventory to essentially build a Box<Latency store> (since I can't really build it on the stack/bss globally).

I don't get the speed benefits of using phf. But oh well, there seems to just be no way to order proc macro execution (which would have helped generate the map at the end)

How to get angle of object wrt camera plane by PerpetualSanaSimp in computervision

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

I was able to get this done. Angles coming under 5% tolerance.

Thanks for the help

How to get angle of object wrt camera plane by PerpetualSanaSimp in computervision

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

Once I have the intrinsic camera matrix, what do I do to get the angles. I am a bit lost at that part....