User Sakin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T09:54:52Z http://stackoverflow.com/feeds/user/12818 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/388904/performance-degrades-when-compiling-with-win32winnt0x0501-instead-of-0x400 1 Performance degrades when compiling with _win32_winnt=0x0501 instead of 0x400 Sakin 2008-12-23T13:48:31Z 2009-12-08T21:00:02Z <p>Is anyone aware of any performance implications from changing the _win32_winnt from 0x400 to 0x0501? </p> <p>I am compiling C++ on VS2005. My Application is very communications oriented, doing quite a lot of Winsock work.</p> http://stackoverflow.com/questions/298259/looking-for-a-strong-build-management-system 0 Looking for a strong Build Management system Sakin 2008-11-18T09:34:53Z 2009-11-23T12:04:09Z <p>My team works on a Medium sized product which takes about 2 hours to build on a single dual-core machine. As part of an effort to improve productivity I am looking for alternatives to improve hour build process.</p> <p>Currently we build C++ code and .NET code using VS2005 solutions, we also have some legacy code built using makefiles and we pack the products using installshield. We also have unit tests written in UnitTest++, Nunit, CPPUnit and some tests that we wrote ourselves without any testing framework. Everything is coordinated by a set of Perl scripts that we wrote.</p> <p>I am looking for a product, or a suite of products, or a bunch of non-related products that will allow me to do the following:</p> <ol> <li><p>Improve building time. I tried Incredibuild for parallelizing the build with some success. I will be happy to find more alternatives (cheaper ones???)</p></li> <li><p>Improve the build process definition. I need something to replace our complicated perl scripts with something that will allow me to define the build process easily.</p></li> <li><p>Improve our ability to discover problems in the build (maybe a web interface for looking at build outputs, highlight compilation errors, gather statistics on build times and build failures etc.</p></li> <li><p>Any other nice features that can help us improve our build management.</p></li> </ol> http://stackoverflow.com/questions/1756259/creating-a-ecommerce-application-how-long-did-it-take-you/1756366#1756366 -1 Answer by Sakin for creating a ecommerce application, how long did it take you? Sakin 2009-11-18T14:27:50Z 2009-11-18T14:27:50Z <p>There are a lot of ecommerce solutions out there, both commertial and free.</p> <p>Since your requirements seem quite simple and straight forward, I would recommend the following tools:</p> <ul> <li>WordPress. Although it's originally designed for blogs, it has a lot of plugins that can help you implement an ecommerce site really quickly. It's really fast to deploy and relatively easy to customize.</li> <li>wp-ecommerce plugin. <a href="http://www.instinct.co.nz/e-commerce/" rel="nofollow">link</a>. This is probabbly not the strongest e-commerce plugin available, but it's certainly the fastest to deploy, its free version is good enough for a small business and its admin side is really easy to use. It supports different payment methods, categories for products, software downloads, shipping calculators and more.</li> </ul> <p>With a little PHP knowledge, and some experience with WordPress you can have your site up and running in a few hours.</p> <p>I implemented a site using the above tools in about 5 hours from scratch. The store is not the best, or the most nice-looking, but it provides everything needed to start selling. The site is <a href="http://www.asparagus-soap.com" rel="nofollow">Asparagus Soap</a> (Still under development, and needs some polishing...)</p> http://stackoverflow.com/questions/1756224/really-quick-and-dirty-solution-for-embedding-webkit-in-a-swing-ui 2 Really quick and dirty solution for embedding webkit in a Swing UI? Sakin 2009-11-18T14:03:42Z 2009-11-18T14:19:35Z <p>Hi, I am looking for a really quick and dirty solution for embedding webkit in a Swing application.</p> <p>What I am looking for is a way to implement a panel that contains a webkit browser running some JavaScript that will be able to do one or more of the following:</p> <ul> <li>Call a Java function of the containing application</li> <li>Send JSON objects to the containing application</li> </ul> <p>I would also like to have access to the DOM from my Java code.</p> <p>Thanks,</p> <p>Ariel</p> http://stackoverflow.com/questions/1660961/how-can-i-listen-to-windows-events-from-a-java-app 1 How can I listen to Windows events from a Java app? Sakin 2009-11-02T12:16:11Z 2009-11-03T19:08:15Z <p>I have a process written in C++ that raises a named event using CreateEvent. Is there a java implementation of the WaitForSingleObject function?</p> <p>Is there a better way to pass events between a C++ or .NET process and a Java process?</p> <p>(I am aware of the option to use JNI to wrap whatever calls I want. I am looking for a library that already took care of it.)</p> <p>thanks,</p> <p>Ariel</p> http://stackoverflow.com/questions/356122/assembly-binding-problems-in-net 0 Assembly binding problems in .NET Sakin 2008-12-10T14:00:49Z 2009-09-29T14:17:37Z <p>I am writing a .NET library that for various reasons cannot be registered in the GAC. This dll (let's call it SDK.dll) depends on other DLLs in order to be loaded.</p> <p>When writing a program that uses this SDK.dll, I noticed that my program failed loading the dll with a FileNodFoundException thrown. This happens because although I was able to find the referenced SDK.dll, the CLR failed to load its dependencies.</p> <p>The only way I found to solve the problem is to "Copy Local" the SDK.dll and all its dependencies (something I can't do because of deployment problems), or compiling my program into the same directory as SDK.dll</p> <p>Is there a way to tell SDK.dll where to look for it's dependencies regardless of its location? Maybe a SDK.dll.config file can help?</p> http://stackoverflow.com/questions/365016/distributed-development-team-tools-needed 2 Distributed development team - Tools Needed Sakin 2008-12-13T08:55:36Z 2009-09-22T16:55:10Z <p>I have a team of developers distributed Globally over different time zones.</p> <p>what are the best tools to achieve maximum productivity in such a team?</p> <p>I am looking for:</p> <ul> <li>Source Control</li> <li>Bug Tracking</li> <li>Build Management</li> <li>Any other thing that may help</li> </ul> <p>Thanks</p> http://stackoverflow.com/questions/388779/profiling-com-libraries-used-from-a-net-application 1 Profiling COM libraries used from a .NET Application Sakin 2008-12-23T12:39:51Z 2009-09-03T12:16:30Z <p>I am looking for a performance profiler that is able to profile a C++ library that is being called from a .NET Application.</p> <p>I tried Purify+ without success (I don't get the calls the COM library) and a few others.</p> http://stackoverflow.com/questions/1259771/building-an-automatic-web-crawler 0 Building an automatic web crawler Sakin 2009-08-11T11:25:20Z 2009-08-11T11:38:07Z <p>I am building a web application crawler that's meant not only to find all the links or pages in a web application, but also perform all the allowed actions in the app (such as pushing buttons, filling forms, notice changes in the DOM even if they did not trigger a request etc.) </p> <p>Basically, this is a kind of "browser simulator".</p> <p>I find WebKit a good option to implement my crawler, since it has all the needed technology (Javascript engine, parsers, DOM manipulation, etc.) but it seems kind of an overkill being a fully featured browser. </p> <p>Is there any toolkit you know that can provide the above functionality?</p> http://stackoverflow.com/questions/91384/unit-testing-for-c-code-tools-and-methodology 30 Unit testing for C++ code - Tools and methodology Sakin 2008-09-18T10:08:47Z 2009-06-18T01:38:44Z <p>I'm working on a large c++ system that is has been in development for a few years now. As part of an effort to improve the quality of the existing code we engaged on a large long-term refactoring project.</p> <p>Do you know a good tool that can help me write unit tests in C++? Maybe something similar to Junit or Nunit?</p> <p>Can anyone give some good advice on the methodology of writing unit tests for modules that were written without unit testing in mind?</p> http://stackoverflow.com/questions/101128/how-do-i-read-text-from-the-windows-clipboard-from-python/101167#101167 6 Answer by Sakin for How do I read text from the (windows) clipboard from python? Sakin 2008-09-19T11:20:29Z 2008-09-19T11:20:29Z <p>You can use the module called win32clipboard (see documentation at <a href="http://docs.activestate.com/activepython/2.5/pywin32/win32clipboard.html" rel="nofollow">http://docs.activestate.com/activepython/2.5/pywin32/win32clipboard.html</a>)</p> <p>some Examples:</p> <pre><code>import win32clipboard win32clipboard.OpenClipboard() win32clipboard.EmptyClipboard() data = win32clipboard.GetClipboardData() win32clipboard.SetClipboardText(text) win32clipboard.CloseClipboard() </code></pre> http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100793#100793 3 Answer by Sakin for Hidden Features of Visual Studio (2005-2008)? Sakin 2008-09-19T09:44:50Z 2008-09-19T09:44:50Z <p>When developing C++, Ctrl-F7 compiles the current file only.</p> http://stackoverflow.com/questions/91386/what-is-the-best-ajax-framework-for-jsf/91401#91401 0 Answer by Sakin for What is the best Ajax framework for JSF Sakin 2008-09-18T10:12:08Z 2008-09-18T10:12:08Z <p>Dojo seems like the right choice for the task</p> <p>look at <a href="http://dojotoolkit.org/" rel="nofollow">http://dojotoolkit.org/</a></p> <p>and a nice article about it from Sun:</p> <p><a href="http://java.sun.com/javaee/javaserverfaces/ajax/tutorial.jsp" rel="nofollow">http://java.sun.com/javaee/javaserverfaces/ajax/tutorial.jsp</a></p> http://stackoverflow.com/questions/81052/when-should-a-class-member-be-declared-virtual-c-overridable-vb-net/81167#81167 0 Answer by Sakin for When should a class member be declared virtual (C#)/Overridable (VB.NET)? Sakin 2008-09-17T08:35:56Z 2008-09-18T09:26:46Z <p>First of all, I will answer you second question. Only methods can be declared virtual. You would choose virtual instead of abstract when you want some default functionality in your base class, but you want to leave the option of overriding this functionality by classes that inherit from your base class. For examples:</p> <p>If you are implementing the <strong>Shape</strong> class, you would probably have a method called <strong>getArea()</strong> that returns the area of your shape. In this case, there's no default behavior for the getArea() method in the Shape class, so you would implement it as <strong>abstract</strong>. Implementing a method as abstract will prevent you to instantiate a <strong>Shape</strong> object.</p> <p>On the other hand, if you implement the class <strong>Dog</strong>, you may want to implement the method <strong>Bark()</strong> in this case, you may want to implement a default barking sound and put it in the <strong>Dog</strong> class, while some inherited classes, like the class <strong>Chiwawa</strong> may want to override this method and implement a specific barking sound. In this case, the method bark will be implemented as <strong>virtual</strong> and you will be able to instantiate Dogs as well as Chiwawas.</p> http://stackoverflow.com/questions/73751/what-is-the-dual-table-in-oracle/73803#73803 0 Answer by Sakin for What is the dual table in Oracle? Sakin 2008-09-16T15:48:44Z 2008-09-16T15:48:44Z <p>The DUAL table is a special one-row table present by default in all Oracle database installations. It is suitable for use in selecting a pseudocolumn such as SYSDATE or USER</p> <p>The table has a single VARCHAR2(1) column called DUMMY that has a value of "X"</p> <p>You can read all about it in <a href="http://en.wikipedia.org/wiki/DUAL_table" rel="nofollow">http://en.wikipedia.org/wiki/DUAL_table</a></p> http://stackoverflow.com/questions/356122/assembly-binding-problems-in-net/356142#356142 Comment by Sakin on Assembly binding problems in .NET Sakin 2008-12-10T15:47:59Z 2008-12-10T15:47:59Z The problem is that I am not allowed to register the DLL in the GAC...