LE
LE
I revised Data to be a static class but following internal discussion with @2adicted it should probably be non-static and more object oriented. It's constructor can then perform the logic...
https://github.com/teamtreedyn/Binoculars/blob/e0cf00e74b95c37f2ac07381bae780b42e9a1c58/Data.cs#L83 hh is currently reporting the hour as a 12 hour clock rather than 24 hour. @brencass [suggests using HH instead](https://github.com/teamtreedyn/Binoculars/pull/1#issuecomment-480635405) @radumg [suggests ISO8601 standard format](https://github.com/teamtreedyn/Binoculars/pull/1#discussion_r273248729) As we're targeting a...
As discussed by @2adicted, @brencass, and @radumg https://github.com/teamtreedyn/Binoculars/pull/1#issuecomment-481343121 We can use ```c# Model.HostName Model.HostVersion ``` To determine which environment the Dynamo graph is being run in: Dynamo Revit, Dynamo Sandbox,...
Add methods to export run data to `.csv` and `.json` saved on the local file system or networked server. Proposed method names are `Data.ExportToCSV()` and `Data.ExportToJSON()`. The methods will accept...
The groundwork is already there; Binoculars has been configured to build and run tests on [AppVeyor CI](https://ci.appveyor.com/project/StudioLE/binoculars-vuboo) but currently it only confirms that Binoculars builds without errors, next we need...
Rather than sending data to the Google Sheets API every run we should save to a local `.csv` or `.json` file then export to the server / API endpoint on...
Investigate the feasibility of using AWS CloudWatch as a storage and visualisation endpoint. https://aws.amazon.com/cloudwatch/
AWS S3 is one of the cheapest cloud storage options available with incredible uptime and reliability. It would be well worth considering as an alternative storage platform, but we may...
Tried running `./matter.py` on Project BlueFin but it fails as `/usr/sbin` is read-only ``` [I] Prepare installation directory [I] Clean install directory [I] Copy built theme to installation directory [I]...
I noted the following tweaks while implementing the sample on an internal project. Each tweak is broken into an individual commit as follows: 1) [Suppress an unnecessary and noisy warning](https://github.com/alvpickmans/multiversion-revit-plugin-sample/commit/8c27a27ad1c825d4a0b434b1af87052de5d7942c)...