Brian J. Stinar

Results 6 comments of Brian J. Stinar

I adjusted the initial position of all nodes to be the same (center point) to get a cool explode-from-the-center effect. So, if you adjust the position of a node, everything...

Yes, I think you can set those positions to whatever you want along time steps to dynamically position the nodes. This isn't super useful unless you disable the force calculations,...

What did you guys come up with for this? We're having the same problems.

This works, but I like the safety of using WooCommerce's PHP objects for this kind of manipulation. Here's what I came up with: ``` public function delete_all_orders(){ $orders = wc_get_orders(array('limit'...

@mauran ``` if (php_sapi_name() == "cli"){ include_once("cli_credentials.php"); $annieMigrator = new AnnieMigrator($old_database_host, $old_database_name, $old_database_user, $old_database_password, $old_database_port); $annieMigrator->delete_all_orders(); $annieMigrator->load_orders(10); } ``` then from bash: `$ php noventum-migratation-object.php ` I also built a...

@mauran I've got a bunch of customer specific code in here too. If the project still has any $$$$ I'll try and create a base object that does all of...