Use Appveyor to build pyinsane2.
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
<style> | |
body { margin: 1em 2em } | |
h1 { text-decoration : underline } | |
div { border: 10px solid; background: #ddd } | |
@page { margin: 2.5cm; } | |
header { | |
position: fixed; | |
top: -2.5cm; | |
left: -2.5cm; |
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
[user] | |
name = "Christian Fobel" | |
email = "[email protected]" | |
editor = vim | |
[alias] | |
lg = log --graph --pretty=format:'%Cred%h%Creset - [%an] %s %Cgreen(%cr)%Creset %d' --abbrev-commit --date=relative | |
tree = log --graph --decorate --pretty=oneline --abbrev-commit | |
[color] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
See here.
Error building nodejs-feedstock
recipe for Node 8.2.1:
1505844854503\work\node-v
8.2.1\cctest.vcxproj]
C:\bld\nodejs_1505844854503\work\node-v8.2.1\deps\v8\include\v8-inspector.h(80): warning C4251: 'v8_inspector::V8ContextInfo::context': class 'v8::Local<v8::C
ontext>' needs to have dll-interface to be used by clients of class 'v8_inspector::V8ContextInfo' (compiling source file src\inspector_io.cc)c:\bld\nodejs_150
5844854503\work\node-v8.2.1\src\base64.h(76): warning C4003: not enough actual parameters for macro 'V' (compiling source file src\inspector_socket.cc) [C:\bl
d\nodejs_1505844854503\work\node-v8.2.1\cctest.vcxproj]
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
# Isolate selected item(s): | |
# - Save list of selected items | |
# - Save list of visible items | |
# - Hide non-selected items that are currently visible | |
import FreeCAD | |
selected_objects = set(object_i.Label for object_i in Gui.Selection.getSelection()) | |
objects_by_label = {object_i.Label: object_i for object_i in Gui.ActiveDocument.Document.Objects if object_i.ViewObject.Visibility} | |
[setattr(object_i.ViewObject, 'Visibility', False) for label_i, object_i in objects_by_label.iteritems()] | |
[setattr(object_i.ViewObject, 'Visibility', True) for object_i in Gui.ActiveDocument.Document.Objects if object_i.Label in selected_objects] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
# See also [here][1]. | |
# | |
# [1]: http://robot-framework.readthedocs.io/en/latest/_modules/robot/utils/dotdict.html | |
class DotOrderedDict(OrderedDict): | |
def __getattr__(self, attr): | |
try: | |
result = super(DotOrderedDict, self).__getattribute__(attr) | |
return result | |
except AttributeError: |
NewerOlder