User ZebZiggle - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T09:26:33Z http://stackoverflow.com/feeds/user/3011 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1722254/finding-the-mac-address-of-the-sender-of-a-multicast-udp-message-in-python 0 Finding the MAC address of the sender of a multicast UDP message in Python? ZebZiggle 2009-11-12T13:42:02Z 2009-11-12T14:31:31Z <p>I have some code that listens for "announcements" via UDP multicast. I can get the IP address of the sender, but what I really need is the MAC address of the sender (since the IP address can and will change).</p> <p>Is there an easy way to do this in Python?</p> <p>A code snippet is included for reference, but likely unnecessary.</p> <pre><code>sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM, socket.IPPROTO_UDP) # Allow multiple sockets to use the same PORT number sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) # Bind to the port that we know will receive multicast data sock.bind((self.interface, MCAST_PORT)) # Tell API we are a multicast socket sock.setsockopt(socket.IPPROTO_IP, socket.IP_MULTICAST_TTL, 255) # Tell API we want to add ourselves to a multicast group # The address for the multicast group is the third param status = sock.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, socket.inet_aton(MCAST_ADDR) + socket.inet_aton(self.interface)); data, addr = sock.recvfrom(1024) </code></pre> <p>...</p> http://stackoverflow.com/questions/39663/what-is-the-best-way-to-do-bit-field-manipulation-in-python 8 What is the best way to do Bit Field manipulation in Python? ZebZiggle 2008-09-02T14:28:40Z 2009-10-11T10:01:04Z <p>I'm reading some MPEG Transport Stream protocol over UDP and it has some funky bitfields in it (length 13 for example). I'm using the "struct" library to do the broad unpacking, but is there a simple way to say "Grab the next 13 bits" rather than have to hand-tweak the bit manipulation? I'd like something like the way C does bit fields (without having to revert to C).</p> <p>Suggestions?</p> http://stackoverflow.com/questions/27832/how-can-i-reverse-engineer-a-directshow-graph 3 How can I reverse engineer a DirectShow graph? ZebZiggle 2008-08-26T12:02:08Z 2009-07-01T17:21:42Z <p>I have a DirectShow graph to render MPEG2/4 movies from a network stream. When I assemble the graph by connecting the pins manually it doesn't render. But when I call Render on the GraphBuilder it renders fine. </p> <p>Obviously there is some setup step that I'm not performing on some filter in the graph that GraphBuilder is performing. </p> <p>Is there any way to see debug output from GraphBuilder when it assembles a graph?</p> <p>Is there a way to dump a working graph to see how it was put together?</p> <p>Any other ideas for unraveling the mystery that lives in the DirectShow box?</p> <p>Thanks! -Z</p> http://stackoverflow.com/questions/378057/not-getting-all-windows-messages-in-mfc-activex-composite-control 0 Not getting all windows messages in MFC ActiveX Composite Control ZebZiggle 2008-12-18T14:46:01Z 2009-02-21T06:26:15Z <p>Hi, </p> <p>I have a composite control with a declaration like this:</p> <pre><code> class ATL_NO_VTABLE CFooCtrl : public CComObjectRootEx&lt;CComSingleThreadModel&gt;, public IDispatchImpl&lt;CFooCtrl, &amp;IID_IFooCtrl, &amp;LIBID_FooLib&gt;, public CComCompositeControl&lt;CFooCtrl&gt;, public IPersistStreamInitImpl&lt;CFooCtrl&gt;, public IOleControlImpl&lt;CFooCtrl&gt;, public IOleObjectImpl&lt;CFooCtrl&gt;, public IOleInPlaceActiveObjectImpl&lt;CFooCtrl&gt;, public IViewObjectExImpl&lt;CFooCtrl&gt;, public IOleInPlaceObjectWindowlessImpl&lt;CFooCtrl&gt;, public IConnectionPointContainerImpl&lt;CFooCtrl&gt;, public IPersistStorageImpl&lt;CFooCtrl&gt;, public ISpecifyPropertyPagesImpl&lt;CFooCtrl&gt;, public IQuickActivateImpl&lt;CFooCtrl&gt;, public IDataObjectImpl&lt;CFooCtrl&gt;, public IProvideClassInfo2Impl&lt;&amp;CLSID_FooCtrl, &amp;DIID__IFooCtrlEvents, &amp;LIBID_FooCtrlLib&gt;, public IPropertyNotifySinkCP&lt;CFooCtrl&gt;, public CComCoClass&lt;CFooCtrl, &amp;CLSID_FooCtrl&gt;, public CProxy_IFooCtrlEvents&lt;CFooCtrl&gt;, { ... BEGIN_MSG_MAP(CFooCtrl) CHAIN_MSG_MAP(CComCompositeControl&lt; CFooCtrl &gt;) DEFAULT_REFLECTION_HANDLER() MESSAGE_HANDLER(WM_TIMER, OnTimer) MESSAGE_HANDLER(WM_ERASEBKGND, OnEraseBkgnd) MESSAGE_HANDLER(WM_KEYDOWN, OnKeyDown) MESSAGE_HANDLER(WM_KEYUP, OnKeyUp) MESSAGE_HANDLER(WM_LBUTTONDBLCLK, OnLButtonDblClk) MESSAGE_HANDLER(WM_LBUTTONDOWN, OnLButtonDown) MESSAGE_HANDLER(WM_LBUTTONUP, OnLButtonUP) MESSAGE_HANDLER(WM_PAINT, OnPaint) MESSAGE_HANDLER(WM_RBUTTONDBLCLK, OnRButtonDblClk) MESSAGE_HANDLER(WM_RBUTTONDOWN, OnRButtonDown) MESSAGE_HANDLER(WM_RBUTTONUP, OnRButtonUp) MESSAGE_HANDLER(WM_MOUSEMOVE, OnMouseMove) MESSAGE_HANDLER(WM_MOUSEWHEEL, OnMouseWheel) MESSAGE_HANDLER(WM_SIZE, OnSize) MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog) MESSAGE_HANDLER(WM_DESTROY, OnDestroy) END_MSG_MAP() LRESULT OnTimer(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL&amp; bHandled); LRESULT OnEraseBkgnd(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL&amp; bHandled); LRESULT OnKeyDown(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL&amp; bHandled); LRESULT OnKeyUp(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL&amp; bHandled); LRESULT OnLButtonDblClk(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL&amp; bHandled); LRESULT OnLButtonDown(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL&amp; bHandled); LRESULT OnLButtonUP(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL&amp; bHandled); LRESULT OnPaint(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL&amp; bHandled); LRESULT OnRButtonDblClk(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL&amp; bHandled); LRESULT OnRButtonDown(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL&amp; bHandled); LRESULT OnRButtonUp(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL&amp; bHandled); LRESULT OnMouseMove(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL&amp; bHandled); LRESULT OnMouseWheel(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL&amp; bHandled); LRESULT OnSize(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL&amp; bHandled); LRESULT OnInitDialog(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL&amp; bHandled); LRESULT OnDestroy(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL&amp; bHandled); </code></pre> <p>I get events like OnMouseMove, OnLButtonDown/Up/DblClk, but I don't get events like KeyUp, KeyDown or MouseWheel.</p> <p>Everything seems to be defined correctly. I've moved </p> <pre><code> CHAIN_MSG_MAP(CComCompositeControl&lt; CFooCtrl &gt;) DEFAULT_REFLECTION_HANDLER() </code></pre> <p>To the end of the Message Map and no difference. I find that when I remove the Reflection_handler() I don't get crashes on KeyDown, but I suspect those are from my Python program that's driving the control. </p> <p>The only thing I can assume is that the chained msg map is eating these events, but there is no parent control that should be interested in them. </p> <p>Anyone have any ideas why I get some messages but not others? Any ideas for regaining those messages?</p> http://stackoverflow.com/questions/279094/how-do-i-script-an-ole-component-using-python/363885#363885 1 Answer by ZebZiggle for How do I script an OLE component using Python? ZebZiggle 2008-12-12T19:33:01Z 2008-12-12T19:33:01Z <p>win32com is a good package to use if you want to use the IDispatch interface to control your objects (slow). comtypes is a better, native python, package that uses the raw COM approach to talking to your controls. WxPython uses comtypes to give you an ActiveX container window from Python ... sweet.</p> http://stackoverflow.com/questions/86582/singleton-how-should-it-be-used/86741#86741 0 Answer by ZebZiggle for Singleton: How should it be used ZebZiggle 2008-09-17T19:33:19Z 2008-09-17T19:33:19Z <p>The real downfall of Singletons is that they break inheritance. You can't derive a new class to give you extended functionality unless you have access to the code where the Singleton is referenced. So, beyond the fact the the Singleton will make your code tightly coupled (fixable by a Strategy Pattern ... aka Dependency Injection) it will also prevent you from closing off sections of the code from revision (shared libraries).</p> <p>So even the examples of loggers or thread pools are invalid and should be replaced by Strategies. </p> http://stackoverflow.com/questions/20510/executing-javascript-from-flex-is-this-javascript-function-dangerous/63603#63603 0 Answer by ZebZiggle for Executing JavaScript from Flex: Is this javascript function dangerous? ZebZiggle 2008-09-15T14:52:25Z 2008-09-15T14:52:25Z <p>Remember also that the script actions are controlled by the "AllowScriptAccess" tag in the statement. If the web page doesn't want these actions, they should not permit scripts to call out. </p> <p><a href="http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_16494" rel="nofollow">http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_16494</a></p> http://stackoverflow.com/questions/3150/how-to-set-up-unit-testing-for-visual-studio-c/30776#30776 0 Answer by ZebZiggle for How to set up unit testing for Visual Studio C++ ZebZiggle 2008-08-27T18:15:50Z 2008-08-27T18:15:50Z <p>I like the CxxTest as well for the same reasons. It's a header file only so no linking required. You aren't stuck with Perl as there is a Python runner as well. I will be reviewing the google library soon. The Boost stuff pulls in too much other baggage. </p> http://stackoverflow.com/questions/30504/programmatically-retrieve-visual-studio-install-directory/30512#30512 2 Answer by ZebZiggle for programmatically retrieve Visual Studio install directory ZebZiggle 2008-08-27T15:51:08Z 2008-08-27T15:51:08Z <p>I'm sure there's a registry entry as well but I couldn't easily locate it. There is the VS90COMNTOOLS environment variable that you could use as well.</p> http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/27851#27851 0 Answer by ZebZiggle for What Hosting Service is best for Django applications? ZebZiggle 2008-08-26T12:11:06Z 2008-08-26T12:11:06Z <p>I used highspeedrails.com but found their support to be terrible. It's fast support, but tramples on your install and is very surly (one over-taxed support person). Webfaction sounds good.</p>