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
| nuget sources Add -Name "ASP.NET Core CI dev" -Source https://dotnet.myget.org/F/aspnetcore-ci-dev/api/v3/index.json |
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
| .\nuget.exe push .\Adobe.CreativeCloud.3.2.0.129.nupkg -s http://localhost:33478/ 252a2b0db5d14418b8d654be875e176a |
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
| nuget update -self |
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
| nuget locals all -clear |
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
| # Reinstall all packages | |
| update-package -reinstall | |
| # Reinstall an individual package | |
| update-package -reinstall PACKAGENAME |
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
| Update-package -reinstall <PackageName> |
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
| ########################################################## | |
| # Custom Blender -> Unity Pipeline | |
| # http://www.mimimi-productions.com, 2014 | |
| # Version: 1.9.M2 | |
| # Only for Blender 2.58 and newer | |
| # | |
| # Thanks to kastoria, jonim8or and Freezy for their support! | |
| # Special thanks to Sebastian hagish Dorda for implementing the sort methods. | |
| # http://www.blenderartists.org | |
| ########################################################## |
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
| import System.Threading.Tasks as tasks | |
| import Rhino | |
| import rhinoscriptsyntax as rs | |
| import time, math | |
| import scriptcontext | |
| def radial_contour(brep, parallel, slice_count=360): | |
| """Generate series of curve slices through a brep by rotating a plane | |
| multiple times and intersecting that plane with the brep. This function |
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
| import scriptcontext | |
| import rhinoscriptsyntax as rs | |
| import clr | |
| import sys | |
| clr.AddReference("Eto") | |
| clr.AddReference("Rhino.UI") | |
| from Rhino.UI import * | |
| from Eto.Forms import Form, Dialog, Label, TextBox, StackLayout, Orientation, Button, HorizontalAlignment, VerticalAlignment, TextAlignment, NumericUpDown, MessageBox, DropDown, CheckBox, TableLayout, StackLayoutItem, DynamicLayout, Control, Panel, Form | |
| from Eto.Drawing import * |
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
| import System.Drawing | |
| import System.Windows.Forms | |
| from System.Drawing import * | |
| from System.Windows.Forms import * | |
| class SliderForm(Form): | |
| def __init__(self): | |
| self.__value_changed_callback = None | |
| self.InitializeComponent() |