This file contains 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 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 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 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" |