This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| // This is an NDJSON so it should actually be flat - just expanding this out for ease of reading | |
| { | |
| // must-have NOW | |
| "event_id": "01J6YX0ABCDEF002", | |
| "client_version": "Revit 2023", | |
| "schema_version": 0.1.0, | |
| "iso_version": 3.2.0, | |
| "engine_version": 3.1.6, | |
| "ts_utc": "2025-09-16T14:30:05.000Z", | |
| "org_id": "ipx", // should match the team_id in Airtable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git fetch -p && git branch -vv | awk '/: gone]/{print $1}' | xargs -r git branch -d |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| parsed: 7 blocks, 39 entities. | |
| denormalised: 39 entities. | |
| grouped entities | |
| ---------------- | |
| 0: 11 | |
| Building Blocks: 28 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :root{ | |
| font-size: 16px; | |
| box-sizing: border-box; | |
| } | |
| html, body, #root { | |
| width: 100%; | |
| overflow-y: hidden; | |
| height: 100%; | |
| /* min-height: 100vh; */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // in a family document | |
| if (!CurrentDocument.IsFamilyDocument) | |
| throw new Exception(); | |
| var mgr = CurrentDocument.FamilyManager; | |
| // get the UNIT_TYPE parameter | |
| var param = mgr.get_Parameter("UNIT_TYPE"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $script = <<-SCRIPT | |
| yes | sudo apt-get update | |
| yes | sudo apt-get install ubuntu-desktop | |
| SCRIPT | |
| Vagrant.configure("2") do |config| | |
| config.vm.box = "hashicorp/precise64" | |
| config.vm.provider :virtualbox do |vb| | |
| vb.name = "machina" |