I tought i’d seen a post about a repository for working dynamo scripts…
But the search isn’t helping me
Marcel
I tought i’d seen a post about a repository for working dynamo scripts…
But the search isn’t helping me
Marcel
Something like this?
actually…no, it was on the forum
seen it on the Dutch Dynamo User Group aswell, the trello site
Marcel
I think he is referring to a website that would allow you to run the actual .dyn without having to recreate it from a forum or ask someone to send it to you.
nooo…
The trello site is about sharing.
Marcel
DynaWeb, maybe?
Edit: late additions to this thread:
Yes kinda like that. I haven’t had much/any time to test it yet, though I have installed the package.
OK, but you probably won’t run any program from that site, or will you?
This site?
The more I learn from you guys the more I feel like I need to move…
Edit:
Link won’t host right on my phone. Hopefully you guys can see it.
Thought it was called DDUG…
Anyways, the question was or here on the forum, or on LinkedIn
new question…
would a website like that do any good…in general…
For the project i’m working on i guess yes, all scripts up to date and running on all computers for all team members…
Marcel
Yes, here it is, we can even see you:
Where is Conrad
ok time for a cleanup, way to cozy this
Here is a way to share Dynamo generated geometry without having to share code
Irrelevant to Revit workflows though.
Geometry is converted to serialized binary stream data using Geometry.SerializeAsSAB and saved to an external file.
Generated geometry could be shared without having to share code.
For example, a designer could share a pattern (with no flexible parameters) without having to share the code that generates it.
This could potentially be incorporated into a workflow that generates Revit elements.
Code for this pattern had been posted here. Hiding nothing
Did this with my apprentice…mesmerized and hooked for he rest of her life she is.
Had to uninstall packages tho…to make it work
In short and to round up…sharing this made someone happy
Thnx vikram
Except for the few All Elements of … nodes, most other nodes either have code equivalents or alternatives
It is very much possible to have your definitions completely in a code block. I do so most of the time.
However, it’s better done right from the start, at regular intervals, not just by ‘Node to Code’ at the end.
“However, it’s better done right from the start, at regular intervals”
Why?What would change if not done at regular intervals?
Marcel
You can then avoid including nodes that don’t work with Node to Code
There are alternatives that can be considered.
Doing so periodically has several benefits:
It’s easier to debug issues in nodes than it is with code block. Commenting out lines with /* code here */ can help with that process, but it’s not often as effective as it can become difficult to review all the outputs.
It allows for “pickup points” of nested functions which can be referenced again in other graphs. IE: How often do you want to use a filter by X where you have to call the same seven functions repeatedly? Why not open a sandbox copy of the graph and re-run the results?
If something causes an issue down the line you have multiple points to go back to.
It allows side stepping node to code issues such as all elements of category, and other similar ‘uncodeblockable’ items. @Vikram_Subbaiah beat me to this one.