In a non-user-specific location in "application data":
C:\ProgramData\Autodesk\Revit\Addins\
In a user-specific location in "application data":
-
C:\Users\<user>\AppData\Roaming\Autodesk\Revit\Addins\
-
%appdata%\Autodesk\Revit\Addins\
In a non-user-specific location in "application data":
C:\ProgramData\Autodesk\Revit\Addins\
In a user-specific location in "application data":
C:\Users\<user>\AppData\Roaming\Autodesk\Revit\Addins\
%appdata%\Autodesk\Revit\Addins\
. { iwr -useb https://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
$Boxstarter.RebootOk=$true | |
$Boxstarter.NoPassword=$false | |
$Boxstarter.AutoLogin=$true | |
Update-ExecutionPolicy Unrestricted | |
#--- TEMPORARY --- | |
Disable-UAC |
rebase
vs merge
).rebase
vs merge
)reset
vs checkout
vs revert
)git rev-parse
)pull
vs fetch
)stash
vs branch
)reset
vs checkout
vs revert
)public void DeleteDetailElements() | |
{ | |
Document doc = this.Application.ActiveUIDocument.Document; | |
FilteredElementCollector detailLines = new FilteredElementCollector(doc).WhereElementIsNotElementType().OfCategory(BuiltInCategory.OST_Lines); | |
IList<ElementId> detailLineIds = new List<ElementId>(); | |
foreach(CurveElement dl in detailLines) | |
{ | |
detailLineIds.Add(dl.Id); | |
} |
name: Client Build | |
on: | |
push: | |
branches: | |
- master | |
defaults: | |
run: | |
working-directory: <DIRECTORY_PATH> |
# remap prefix from 'C-b' to 'C-a' | |
unbind C-b | |
set-option -g prefix C-a | |
bind-key C-a send-prefix | |
# split panes using | and - | |
bind | split-window -h | |
bind - split-window -v | |
unbind '"' | |
unbind % | |
# reload config file (change file location to your the tmux.conf you want to use) |