- runtime
- ide
- path :
c:\arduino-1.6.5-r2 - version :
1_6_5
- path :
- ide
- name :
Arduino Leonardo - vid
- 1 :
0x2341 - 0 :
0x2341 - 3 :
0x2A03 - 2 :
0x2A03
- 1 :
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 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
| Copyright (c) 2021 Christian Fobel | |
| Permission is hereby granted, free of charge, to any person obtaining | |
| a copy of this software and associated documentation files (the | |
| "Software"), to deal in the Software without restriction, including | |
| without limitation the rights to use, copy, modify, merge, publish, | |
| distribute, sublicense, and/or sell copies of the Software, and to | |
| permit persons to whom the Software is furnished to do so, subject to | |
| the following conditions: |
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 gtk | |
| from pygst_utils.video_view.mode import VideoModeSelector | |
| # Run with `ipython -i video_mode_selector_demo.py` | |
| selector = VideoModeSelector() | |
| selector.show_and_run() | |
| # Press <ctrl>+c to drop back to IPython prompt. | |
| checkbox = gtk.CheckButton() | |
| selector.widget.add(checkbox) |
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
| ; /opt/janus/etc/janus/janus.plugin.streaming.cfg | |
| ; [stream-name] | |
| ; type = rtp|live|ondemand|rtsp | |
| ; rtp = stream originated by an external tool (e.g., gstreamer or | |
| ; ffmpeg) and sent to the plugin via RTP | |
| ; live = local file streamed live to multiple listeners | |
| ; (multiple listeners = same streaming context) | |
| ; ondemand = local file streamed on-demand to a single listener | |
| ; (multiple listeners = different streaming contexts) | |
| ; rtsp = stream originated by an external RTSP feed (only |
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
| # 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: |
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 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
| # 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] |
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]
See here.