I am trying to create a custom event for Query to reload and refresh the query state when the event happens. I need a custom event similar to Spartacus' OrderPl
I have this model: public class Person { @Id String id; @Field Address address; } public class Address { @Id String id; @Field String contry; //.. } I Us
Is there any way to do object.save(validate: false) specifying an attribute that we actually want to validate? So, for example, for the User model, I want to v
I am trying to create two parallel tables that stick to each other on the same row. However, the second table is always stacked under the first table. The only
I am currently working on an neuronal network that can classify cats and dog and everything thats not cat nor dog. And my programm has this: error i can't solve
I am somehow new with the coding. My error appears when I try to "transfer" the table from the SQL Server I have changed the name, I tried many things. Somethi
When I bump my mousewheel, my WPF application crashes sometimes, with an OverflowException. Here's the start of the stack trace: at System.Windows.Shell.Windo
I want to stop a Google Colab Runtime with code when the thing I want to do has ended, so I though of putting a line of at the end that would stop it from runni
I have a function to print a binary tree: void printMe(const std::string& prefix, BinaryNode* node, bool isLeft) { if( node != nullptr )