User Sven - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T17:25:21Z http://stackoverflow.com/feeds/user/46 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/24109/c-ide-for-linux 23 C++ IDE for Linux? Sven 2008-08-23T09:52:59Z 2009-11-22T23:58:21Z <p>I'm currently in the process of expanding my programming horizons to Linux. In order to do that, it is important to have a good basic toolset on which you can rely on. and what is more basic then the IDE in which you write your code? (honestly, you don't want to code in Notepad; been there done that).</p> <p>There are two other questions/answers I could find here at Stack Overflow that are somewhat related:</p> <ul> <li><a href="http://beta.stackoverflow.com/questions/2756/lightweight-ide-for-linux" rel="nofollow">Lightweight IDE for linux</a> and</li> <li><a href="http://beta.stackoverflow.com/questions/17228/what-tools-do-you-use-to-develop-c-applications-on-linux" rel="nofollow">What tools do you use to develop C++ applications on Linux?</a></li> </ul> <p>But I'm not really looking for a <em>lightweight</em> IDE and if it is really worth the money I will pay for it, so it doesn't need to be free as well.</p> <p>So my question is: <em>what is a good IDE available in Linux to use as a programming platform for writing C++ code?</em></p> <p>The minimum should be like any other good IDE: syntax highlighting, code completion (like <a href="http://en.wikipedia.org/wiki/IntelliSense" rel="nofollow">intellisense</a> or its Eclipse counterpart) and integrated debugging (basic breakpoints are good).</p> <p>I already have searched for it myself, but there is so much to choose from that it is almost impossible to separate the good from the bads by hand, especially for someone like me without any C++ coding experience in Linux. However I do know that <a href="http://www.eclipse.org/cdt/" rel="nofollow">Eclipse supports C++</a>, and I really like that IDE for Java, but is it any good for C++ and won't I miss out on something that is even better?</p> <p>The second post actually has some good suggestions, but what I am missing is what exactly makes the sugested IDE so good for the user, what are its advantages/disadvantages?</p> <p>Maybe my question should therefore be: <em>what IDE do you propose given your own experience with it?, and why that one?</em>. Convince me.</p> http://stackoverflow.com/questions/2027/pass-by-reference-or-pass-by-value 10 pass by reference or pass by value? Sven 2008-08-05T08:56:01Z 2009-11-21T17:14:18Z <p>When learning a new programming language, one of the possible roadblocks you might encounter is the question whether the language is, by default, <em>pass-by-value or pass-by-reference</em></p> <p>So here is my question to all of you, in your favorite language, <em>how</em> is it actually done? and what are the <em>possible pitfalls</em>?</p> <p>your favorite language can, of course, be anything you have ever played with: <a href="http://www.ruby-lang.org/en/" rel="nofollow">popular</a>, <a href="http://www.devtopics.com/a-obscure-programming-language-of-the-month/" rel="nofollow">obscure</a>, <a href="http://en.wikipedia.org/wiki/Brainfuck" rel="nofollow">esoteric</a>, <a href="http://www.nvidia.com/object/cuda_get.html" rel="nofollow">new</a>, <a href="http://en.wikipedia.org/wiki/FORTRAN" rel="nofollow">old</a> ...</p> http://stackoverflow.com/questions/714905/threads-in-x86-assembler-using-the-gnu-assember-as 3 Threads in x86 assembler (using the GNU assember: as) Sven 2009-04-03T17:31:43Z 2009-10-18T12:40:24Z <p>Whilst learning the "assembler language" (in linux on a x86 architecture using the GNU as assembler), one of the aha moments was the possibility of using <a href="http://www.ibm.com/developerworks/linux/library/l-system-calls/" rel="nofollow">system calls</a>. These system calls come in very handy and are sometimes even necessary as your program <a href="http://en.wikipedia.org/wiki/Kernel%5Fmode#Supervisor%5Fmode" rel="nofollow">runs in user-space</a>.<br /> However system calls are rather expensive in terms of performance as they require an interrupt (and of course a system call) which means that a context switch must be made from your current active program in user-space to the system running in kernel-space.</p> <p>The point I want to make is this: I'm currently implementing a compiler (for a university project) and one of the extra features I wanted to add is the support for multi-threaded code in order to enhance the performance of the compiled program. Because some of the multi-threaded code will be automatically generated by the compiler itself, this will almost guarantee that there will be really tiny bits of multi-threaded code in it as well. In order to gain a performance win, I must be sure that using threads will make this happen.</p> <p>My fear however is that, in order to use threading, I <em>must</em> make system calls and the necessary interrupts. The tiny little (auto-generated) threads will therefore be highly affected by the time it takes to make these system calls, which could even lead to a performance loss...</p> <p><strong>my question is therefore twofold (with an extra bonus question underneath it):</strong> </p> <ul> <li>Is it possible to write assembler code which can run multiple threads simultaneously on multiple cores at once, <em>without</em> the need of system calls?</li> <li>Will I get a performance gain if I have really tiny threads (tiny as in the total execution time of the thread), performance loss, or isn't it worth the effort at all?</li> </ul> <p>My guess is that multithreaded assembler code is <em>not</em> possible without system calls. Even if this is the case, do you have a suggestion (or even better: some real code) for implementing threads as efficient as possible?</p> <p>Many thanks!</p> http://stackoverflow.com/questions/327379/benchmark-problems-for-testing-concurency 2 Benchmark problems for testing concurency Sven 2008-11-29T09:22:56Z 2009-10-16T13:54:37Z <p>For one of the projects I'm doing right now, I need to look at the performance (amongst other things) of different <a href="http://en.wikipedia.org/wiki/Concurrent_computing" rel="nofollow">concurrent enabled</a> programming languages.</p> <p>At the moment I'm looking into comparing <a href="http://www.stackless.com/" rel="nofollow">stackless python</a> and <a href="https://computing.llnl.gov/tutorials/pthreads/" rel="nofollow">C++ PThreads</a>, so the focus is on these two languages, but other languages will probably be tested later. Ofcourse the comparison must be as representative and accurate as possible, so my first thought was to start looking for some standard <strong><em>concurrent/multi-threaded benchmark problems</em></strong>, alas I couldn't find any decent or standard, tests/problems/benchmarks.</p> <p>So my question is as follows: <em>Do you have a suggestion for a good, easy or quick problem to test the performance of the programming language</em> (and to expose it's strong and weak points in the process)?</p> http://stackoverflow.com/questions/2826/do-you-have-any-recommended-plugins-for-eclipse/36259#36259 8 Answer by Sven for Do you have any recommended plugins for Eclipse? Sven 2008-08-30T19:01:21Z 2009-10-11T02:44:21Z <p>When I code in Eclipse I also use the excellent <a href="http://eclipse-cs.sourceforge.net/" rel="nofollow">checkstyle</a> plug-in, which is a modifiable code analyzer. That way you can always see if you abide by your (or the general) coding standards.<br /> I also recommend the <a href="http://eclipse-metrics.sourceforge.net/" rel="nofollow">metrics plug-in</a> for Eclipse which calculates the complexity of your code. It can handle:</p> <ul> <li>McCabe's Cyclomatic Complexity</li> <li>Efferent Couplings</li> <li>Lack of Cohesion in Methods</li> <li>Lines Of Code in Method</li> <li>Number Of Fields</li> <li>Number Of Levels</li> <li>Number Of Locals In Scope</li> <li>Number Of Parameters</li> <li>Number Of Statements</li> <li>Weighted Methods Per Class</li> </ul> <p>Finally the <a href="http://www.eclemma.org/index.html" rel="nofollow">code coverage plug-in</a> is really handy when you also (and you should!) unit test your code. This plug-in allows you to visualize which code paths are checked and which ones are not. (It can also do this check when you launch the project from the static main function of your project.)</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/156760#156760 7 Answer by Sven for C++ IDE for Linux? Sven 2008-10-01T08:53:37Z 2009-10-07T13:23:35Z <p>Just a quick follow up for this question...</p> <p>It's been a month since I started using Vim as my main 'GUI' tool for programming C++ in Linux. At first the learning curve was indeed a bit steep but after a while and with the right options turned on and <a href="http://ctags.sourceforge.net/" rel="nofollow">scripts running</a> I really got the hang of it!</p> <p>I love the way how you can shape Vim to suite your needs; just add/change <a href="http://www.vim.org/htmldoc/map.html" rel="nofollow">key mappings</a> and Vim is turned into a highly productive 'IDE'.</p> <p>The toolchain to build and compile a C++ program on Linux is also really intuitive. make and g++ are <em>the</em> tools you'll use.</p> <p>The <a href="http://www.gnu.org/software/ddd/" rel="nofollow">debugger ddd</a> is however not really that good, but maybe that's because I haven't had the time to master it properly.</p> <p>So to anyone who is, or was looking for a good C++ IDE in Linux, just like I was, your best bet lays with the standard available tools in Linux itself (Vim, g++, ddd) and you should really at least try to use them, before looking for sonething else...</p> <p>Last but not least, I really want to thank <a href="http://stackoverflow.com/users/1968/konrad-rudolph">konrad</a> for his answer here, It really helped me find my way in the Linux development environment, thank you!</p> <p>I'm also <em>not</em> closing this question, so people can still react or maybe even add new suggestions or additions to the already really nice answers...</p> http://stackoverflow.com/questions/47376/how-can-i-monitor-the-executed-sql-statements-on-a-ms-sql-server-2005 2 How can I monitor the executed sql statements on a ms SQL server 2005 Sven 2008-09-06T10:48:06Z 2009-07-31T04:57:05Z <p>In a project of mine the SQL statements that are executed against a ms SQL server are failing for some unknown reason. Some of the code is already used in production so debugging it is not an easy task. Therefore I need a way to see in the database itself what SQL statements are used, as the statements are generated at runtime by the project and could be flawed when certain conditions are met. </p> <p>I therefore considered the possibility to monitor the incoming statements and check myself if I see any flaws. </p> <p>The database is running on a ms SQL server 2005, and I use SQL server management studio express as primary tool to manipulate the database. So my question is, what is the best way to do this?</p> http://stackoverflow.com/questions/3255/big-o-how-do-you-calculate-approximate-it 33 Big O, how do you calculate/approximate it? Sven 2008-08-06T10:18:16Z 2009-03-10T22:04:42Z <p>Most people with a degree in CS will certainly know what <a href="http://www.nist.gov/dads/HTML/bigOnotation.html" rel="nofollow">Big O stands for</a>. It helps us to measure how (in)efficient an algorithm really is and if you know in <a href="http://en.wikipedia.org/wiki/List_of_complexity_classes" rel="nofollow">what category the problem you are trying to solve lays in</a> you can figure out if it is still possible to squeeze out that little extra performance.*</p> <p>But I'm curious, how do <em>you</em> calculate or approximate the complexity of your algorithms?</p> <p>*: but as they say, don't overdo it, <a href="http://en.wikipedia.org/wiki/Optimization_%28computer_science%29#When_to_optimize" rel="nofollow">premature optimization is the root of all evil</a>, and optimization without a justified cause should deserve that name as well.</p> http://stackoverflow.com/questions/481976/is-there-a-dive-into-smalltalk-book/484526#484526 1 Answer by Sven for Is There a "Dive Into Smalltalk" Book Sven 2009-01-27T18:06:43Z 2009-01-27T18:18:33Z <p>I would recommend <a href="http://stephane.ducasse.free.fr/FreeBooks/WithStyle/SmalltalkWithStyle.pdf" rel="nofollow">smalltalk with style [PDF]</a><br /> (you can find it on the <a href="http://stephane.ducasse.free.fr/FreeBooks.html" rel="nofollow">http://stephane.ducasse.free.fr/FreeBooks.html</a> website like <a href="http://stackoverflow.com/questions/481976/is-there-a-dive-into-smalltalk-book#482018">Loki</a> mentioned)</p> <p>It helped me not too long ago, and I think it will suite you as well.</p> <p>it shows you the preferred programming style (hence the "with style" in the title) whilst teaching you how to use the language and its features.</p> http://stackoverflow.com/questions/306779/redialing-a-pppoe-connection-programatically/484495#484495 1 Answer by Sven for Redialing a PPPOE connection programatically Sven 2009-01-27T18:01:00Z 2009-01-27T18:01:00Z <p>you can use rasdial (which is build in into windows) and create a batch script (.bat extension) like so:</p> <pre><code>rasdial connectionname </code></pre> <p>-or- </p> <p>if you want to do it in a programming language, you can just call the command internally</p> <p>C# example:</p> <pre><code>public static int OpenConnection(string connectionName, int Timeout) { int ExitCode; ProcessStartInfo ProcessInfo; Process Process; ProcessInfo = new ProcessStartInfo("cmd.exe", "/C rasdial " + connectionName); ProcessInfo.CreateNoWindow = true; ProcessInfo.UseShellExecute = false; Process = Process.Start(ProcessInfo); Process.WaitForExit(Timeout); ExitCode = Process.ExitCode; Process.Close(); return ExitCode; } </code></pre> <p>and I guess your desired language will have something like this available as well.</p> <p>oh and you can use:</p> <pre><code>rasdial "connection name" /d </code></pre> <p>to drop the connection.</p> http://stackoverflow.com/questions/98225/vim-macros-dont-work-when-using-viper-vimpulse-in-emacs/482719#482719 0 Answer by Sven for Vim macros don't work when using viper + vimpulse in emacs. Sven 2009-01-27T09:05:30Z 2009-01-27T09:05:30Z <p>I'm not sure if I answer your question, as it is not entirely clear what you are asking (why the macro's are not working, or which tweaks are available for emulating vim in emacs)<br /> so, is this your problem?:</p> <blockquote> <ul> <li>One user who uses an ancient emacs-snapshot (from 2005) mentions<br /> that this mode causes all the keys on his keyboard to stop working unless he deletes the line that reads 'viper--key-maps from the macro my-get-emulation-keymap in this file</li> </ul> </blockquote> <p>if it is, you can try the stated solution.</p> <p>I got this information from <a href="http://www.emacswiki.org/emacs/vimpulse.el" rel="nofollow">the emacs wiki</a>, and it's a known bug.</p> http://stackoverflow.com/questions/442057/what-is-your-linux-vim-cheat-sheet/442075#442075 1 Answer by Sven for What is your linux/vim cheat sheet? Sven 2009-01-14T06:17:52Z 2009-01-14T06:17:52Z <p>I have used <a href="http://tnerual.eriogerg.free.fr/vimqrc.pdf" rel="nofollow">this one (PDF)</a> from <a href="http://tnerual.eriogerg.free.fr/vim.html" rel="nofollow">http://tnerual.eriogerg.free.fr/vim.html</a> and it's quite extensive and useful.</p> <p>another good one is this at: <a href="http://www.tuxfiles.org/linuxhelp/vimcheat.html" rel="nofollow">http://www.tuxfiles.org/linuxhelp/vimcheat.html</a> which has a little extra information about the commands.</p> http://stackoverflow.com/questions/439091/what-company-would-you-like-to-work-for/439261#439261 0 Answer by Sven for What company would you like to work for? Sven 2009-01-13T15:05:28Z 2009-01-13T15:05:28Z <p>I'm thinking about a more academic oriented career choice for myself. I think that it must be really exiting to be at the edge of technology, doing research related to computer science.</p> <p>Maybe I'm just naive, but thats the image I have of that career choice, and it can't hurt to try it out, at the very least, and see if it suits me as well as I imagined.</p> http://stackoverflow.com/questions/438729/smalltalk-singleton-pattern-how-do-i-initialize-the-instance-variables 2 smalltalk singleton pattern: how do I initialize the instance variables? Sven 2009-01-13T11:47:53Z 2009-01-13T13:03:50Z <p>I'm having trouble in getting the singleton pattern to initialize a instance variable in smalltalk. (here is a <a href="http://www.eli.sdsu.edu/courses/spring01/cs635/notes/singleton/singleton.html#slide7" rel="nofollow">link to another implementation</a> for clarification)</p> <p>this is what I have:</p> <pre><code>new ^UniqueInstance ifNil: [UniqueInstance := self basicNew. UniqueInstance: instanceVar := Object new. ]. </code></pre> <p>that last line (UniqueInstance: instanceVar := Object new.) doesn't work, but that's basically what I need to do: instantiate instanceVar as an Object before returning UniqueInstance back to the caller.</p> <p>Notice that this 'new' method is used as a classinstantiation, and that libraries is a instance variable of UniqueIsntance (the isntance of the wanted class).</p> <p>Can anyone point me in the right direction?</p> http://stackoverflow.com/questions/231201/autostart-smart-client-application/436879#436879 2 Answer by Sven for Autostart Smart Client application Sven 2009-01-12T20:24:30Z 2009-01-12T20:24:30Z <p>My guess is that it has something to do with the network not being available directly at startup. Those batch (delayed) files, are they running from the computer's own harddrive? if not, you can try that.</p> http://stackoverflow.com/questions/158993/printdialog-filter-list-of-printers/436837#436837 0 Answer by Sven for PrintDialog filter list of printers Sven 2009-01-12T20:13:54Z 2009-01-12T20:13:54Z <p>I don't think that (re)writing a DLL is the easiest method. Why not use <a href="http://msdn.microsoft.com/en-us/library/aa393964(VS.85).aspx" rel="nofollow">WMI</a> to retrieve the wanted <a href="http://msdn.microsoft.com/en-us/library/aa394363.aspx" rel="nofollow">information (printers in this case)</a>?</p> <p>The following code is for retrieving all the locally installed printers:<br /> (code samples borrowed from <a href="http://weblogs.asp.net/aghausman/archive/2008/12/30/get-list-of-installed-printers-using-c-wmi.aspx" rel="nofollow">here</a>)</p> <pre><code> ManagementScope objScope = new ManagementScope(ManagementPath.DefaultPath); //For the local Access objScope.Connect(); SelectQuery selectQuery = new SelectQuery(); selectQuery.QueryString = "Select * from win32_Printer"; ManagementObjectSearcher MOS = new ManagementObjectSearcher(objScope, selectQuery); ManagementObjectCollection MOC = MOS.Get(); foreach (ManagementObject mo in MOC) { listBox1.Items.Add(mo["Name"].ToString().ToUpper()); } </code></pre> <p>To get the printers known accross a domain use this: </p> <pre><code>ConnectionOptions objConnection = new ConnectionOptions(); objConnection.Username = "USERNAME"; objConnection.Password = "PASSWORD"; objConnection.Authority = "ntlmdomain:DDI"; //Where DDI is the name of my domain // Make sure the user you specified have enough permission to access the resource. ManagementScope objScope = new ManagementScope(@"\\10.0.0.4\root\cimv2",objConnection); //For the local Access objScope.Connect(); SelectQuery selectQuery = new SelectQuery(); selectQuery.QueryString = "Select * from win32_Printer"; ManagementObjectSearcher MOS = new ManagementObjectSearcher(objScope, selectQuery); ManagementObjectCollection MOC = MOS.Get(); foreach (ManagementObject mo in MOC) { listBox1.Items.Add(mo["Name"].ToString().ToUpper()); } </code></pre> <p>Of course, the list is not "filtered" as you would like as you didn't specify any criteria. But I'm sure you can manage from here on by yourself.</p> http://stackoverflow.com/questions/159227/can-anyone-recommend-a-good-reference-for-setting-up-hibernate3-with-eclipse/436777#436777 1 Answer by Sven for Can anyone recommend a good reference for setting up Hibernate3 with Eclipse? Sven 2009-01-12T19:53:46Z 2009-01-12T19:53:46Z <p>I'm not sure if you are still needing an answer to your question, but our very own stackoverflow website has probably <a href="http://stackoverflow.com/questions/351640/how-to-install-hibernate-tools-in-eclipse#352429">the solution you are looking for</a>.</p> <p>If that doesn't fully answer your question, then this might do the trick : <a href="http://www.hibernate.org/311.html" rel="nofollow">"Hibernate and Eclipse Integration</a>. </p> <p>from the linked Hibernate website:</p> <blockquote> <p>In the MANIFEST.MF file of the Hibernate plugin (which NEEDS the buddy loading), such as org.hibernate.eclipse, add a line:</p> <p>Eclipse-BuddyPolicy:registered</p> <p>and in the MANIFEST.MF file of your plugin project or RCP project, add the line:</p> <p>Eclipse-RegisterBuddy:org.hibernate.eclipse</p> <p>Important to notice the syntax - our plugin is willing to be seen by the hibernate library, using Eclipse-RegisterBuddy, and Hibernate is registering itself with Eclipse-BuddyPolicy. While this is stated clearly in the Eclipse Help (in retrospect!) it is critical to get the syntax precisely correct.</p> <p>Finally, if you are using HibernateUtil as your main entry point into Hibernate, then in your plugin start method add the line:</p> <p>Class.forName("myPlugin.HibernateUtil"); //full class name should go here</p> <p>This works - assumption is that hibernate.cfg.xml is in the src directory of your plugin and this is in the classpath.</p> </blockquote> <p>Hope this helps you out.</p> http://stackoverflow.com/questions/428068/what-is-the-worst-case-time-complexity-for-this-algorithm/428107#428107 1 Answer by Sven for What is the worst case time complexity for this algorithm? Sven 2009-01-09T13:52:22Z 2009-01-09T13:52:22Z <p><strong>worst case is O(n²).</strong></p> <p>there are indeed three loops, but not all inside each other, thus giving O(n²).</p> <p>also, you can clearly see that the inner loops won't go from 1 to n (like the outer loop does). But because this would only change the time complexity by some constant, we can ignore this and say that it is just O(n^2).</p> <p>This shows that time complexity is a measure saying: your algorithm will <em>scale</em> with this order, and it won't ever take any longer. (faster is however always possible)</p> <p>for more information about "calculating" the worst case complexity of <em>any</em> algorithm, I can point you to a <a href="http://stackoverflow.com/questions/3255/big-o-how-do-you-calculate-approximate-it">related question I asked earlier</a></p> http://stackoverflow.com/questions/377254/stackless-python-and-multicores/377366#377366 13 Answer by Sven for Stackless python and multicores? Sven 2008-12-18T09:43:07Z 2008-12-18T17:46:24Z <p>Stackless python does <em>not</em> make use of any kind of multi-core environment it runs on.<br /> This is a common misconception about Stackless, as it allows the programmer to take advantage of thread-based programming. For many people these two are closely intertwined, but are, in fact two seperate things.</p> <p>Internally Stackless uses a round-robin scheduler to schedule every <a href="http://www.stackless.com/wiki/Tasklets" rel="nofollow">tasklet</a> (micro threads), but no tasklet can be run concurrent with another one. This means that if one tasklet is busy, the others must wait until that tasklet relinquish control. By default the scheduler will not stop a tasklet and give processor time to another. It is the tasklet's responsibility to schedule itself back in the end of the schedule queue using Stackless.scedule(), or by finishing it's calculations.</p> <p><strong>all tasklets are thus executed in a sequential manner</strong>, even when multiplpe cores are available.</p> <p>The reason why Stackless does not have multi-core support is because this makes threads a whole lot easier. And this is just wat stackless is all about:</p> <p><a href="http://www.stackless.com/" rel="nofollow">from the official stackless website</a></p> <blockquote> <p>Stackless Python is an enhanced version of the Python programming language. It allows programmers to reap the benefits of thread-based programming without the performance and complexity problems associated with conventional threads. The microthreads that Stackless adds to Python are a cheap and lightweight convenience which can if used properly, give the following benefits:</p> <ul> <li>Improved program structure.</li> <li>More readable code.</li> <li>Increased programmer productivity.</li> </ul> </blockquote> <p>Here is a <a href="http://www.stackless.com/pipermail/stackless/2007-August/001963.html" rel="nofollow">link</a> to some more information about multiple cores and stackless. </p> http://stackoverflow.com/questions/358033/what-are-your-favorite-programming-related-academic-papers/358413#358413 3 Answer by Sven for What are your favorite programming-related academic papers? Sven 2008-12-11T04:02:33Z 2008-12-11T09:37:23Z <p>of course, the answer would be <a href="http://pdos.csail.mit.edu/scigen/" rel="nofollow">any computer generated scientific paper</a>! </p> <p>but joking aside, I'm (like many other probably) really intrigued by the whole <a href="http://en.wikipedia.org/wiki/P_%3D_NP_problem" rel="nofollow"><strong>P != NP</strong></a> problem. </p> <p>The first time I heard about (this was in my first bachelor year at VUB) it had a huge influence on me. I still can remember how the problem got my attention for several weeks... I kept reading and looking up information about, even foolishly tried to come up with some <em>clever</em> algorithms on my own. Good times it were back then!</p> <p>here is an <a href="http://publications.ias.edu/files/2007/11/w06.pdf" rel="nofollow">example</a> of such a paper, but there are <a href="http://www.google.be/search?hl=en&amp;client=firefox-a&amp;rls=com.ubuntu%3Aen-US%3Aunofficial&amp;hs=SqH&amp;q=np+paper+complexity&amp;btnG=Search&amp;meta=" rel="nofollow">many, many others just like it</a></p> http://stackoverflow.com/questions/358389/how-would-you-refactor-this-conditional-to-use-polymorphism/358409#358409 0 Answer by Sven for How would you refactor this conditional to use polymorphism? Sven 2008-12-11T04:00:49Z 2008-12-11T04:00:49Z <p>I assume <code>internTableName</code> and <code>InternalTableNumber</code> are some sort of value for the same thing. Why not wrap it up inside a class and pass a instance of that class to <code>this.RunTableInfoCommand</code> like so: </p> <pre><code>public int Number { get { string returnValue; internalTableClass myinstance(parameters); return Convert.ToInt32(this.RunTableInfoCommand(myinstance, TableInfoEnum.TAB_INFO_NUM)); } } </code></pre> <p>if you still want to use polymorphism then, you can do so in that class by overloading for example a <code>giveInternalTableIdentifier</code> that returns the number or the name</p> <p>the code here could then look like this:</p> <pre><code>public int Number { get { string returnValue; internalTableClass myinstance(parameters); return Convert.ToInt32(this.RunTableInfoCommand(myinstance.giveInternalTableIdentifier, TableInfoEnum.TAB_INFO_NUM)); } } </code></pre> <p>and the code for the internalTableClass will be trivial (using: internalAbstractTableClass, and two classes that inherit from it, one giving the name, and the other the number)</p> http://stackoverflow.com/questions/327379/benchmark-problems-for-testing-concurency/333412#333412 0 Answer by Sven for Benchmark problems for testing concurency Sven 2008-12-02T09:09:10Z 2008-12-02T09:09:10Z <p>Below you can find the code I hacked together to test the <strong>multi threaded</strong> performance of pthreads. I haven't cleaned it up and no optimizations have been made; so the code is a bit <em>raw</em>. </p> <p>the code to save the calculated mandelbrot set as a bitmap is not mine, you can find it <a href="http://www.programmersheaven.com/d/click.aspx?ID=F54666" rel="nofollow">here</a></p> <pre><code>#include &lt;cstdlib&gt; //for atoi #include &lt;iostream&gt; #include &lt;iomanip&gt; //for setw and setfill #include &lt;vector&gt; #include "bitmap_Image.h" //for saving the mandelbrot as a bmp #include &lt;pthread.h&gt; pthread_mutex_t mutexCounter; int sharedCounter(0); int percent(0); int horizPixels(0); int vertPixels(0); int maxiter(0); //doesn't need to be locked std::vector&lt;std::vector&lt;int&gt; &gt; result; //create 2 dimensional vector void *DoThread(void *null) { double curX,curY,xSquare,ySquare,x,y; int i, intx, inty, counter; counter = 0; do { counter++; pthread_mutex_lock (&amp;mutexCounter); //lock intx = int((sharedCounter / vertPixels) + 0.5); inty = sharedCounter % vertPixels; sharedCounter++; pthread_mutex_unlock (&amp;mutexCounter); //unlock //exit thread when finished if (intx &gt;= horizPixels) { std::cout &lt;&lt; "exited thread - I did " &lt;&lt; counter &lt;&lt; " calculations" &lt;&lt; std::endl; pthread_exit((void*) 0); } //set x and y to the correct value now -&gt; in the range like singlethread x = (3.0 / horizPixels) * (intx - (horizPixels / 1.5)); y = (3.0 / vertPixels) * (inty - (vertPixels / 2)); curX = x + x*x - y*y; curY = y + x*y + x*y; ySquare = curY*curY; xSquare = curX*curX; for (i=0; i&lt;maxiter &amp;&amp; ySquare + xSquare &lt; 4;i++){ ySquare = curY*curY; xSquare = curX*curX; curY = y + curX*curY + curX*curY; curX = x - ySquare + xSquare; } result[intx][inty] = i; } while (true); } int DoSingleThread(const double x, const double y) { double curX,curY,xSquare,ySquare; int i; curX = x + x*x - y*y; curY = y + x*y + x*y; ySquare = curY*curY; xSquare = curX*curX; for (i=0; i&lt;maxiter &amp;&amp; ySquare + xSquare &lt; 4;i++){ ySquare = curY*curY; xSquare = curX*curX; curY = y + curX*curY + curX*curY; curX = x - ySquare + xSquare; } return i; } void SingleThreaded(std::vector&lt;std::vector&lt;int&gt; &gt;&amp; result) { for(int x = horizPixels - 1; x != -1; x--) { for(int y = vertPixels - 1; y != -1; y--) { //3.0 -&gt; so we always have -1.5 -&gt; 1.5 as the window; (x - (horizPixels / 2) will go from -horizPixels/2 to +horizPixels/2 result[x][y] = DoSingleThread((3.0 / horizPixels) * (x - (horizPixels / 1.5)),(3.0 / vertPixels) * (y - (vertPixels / 2))); } } } void MultiThreaded(int threadCount, std::vector&lt;std::vector&lt;int&gt; &gt;&amp; result) { /* Initialize and set thread detached attribute */ pthread_t thread[threadCount]; pthread_attr_t attr; pthread_attr_init(&amp;attr); pthread_attr_setdetachstate(&amp;attr, PTHREAD_CREATE_JOINABLE); for (int i = 0; i &lt; threadCount - 1; i++) { pthread_create(&amp;thread[i], &amp;attr, DoThread, NULL); } std::cout &lt;&lt; "all threads created" &lt;&lt; std::endl; for(int i = 0; i &lt; threadCount - 1; i++) { pthread_join(thread[i], NULL); } std::cout &lt;&lt; "all threads joined" &lt;&lt; std::endl; } int main(int argc, char* argv[]) { //first arg = length along horizontal axis horizPixels = atoi(argv[1]); //second arg = length along vertical axis vertPixels = atoi(argv[2]); //third arg = iterations maxiter = atoi(argv[3]); //fourth arg = threads int threadCount = atoi(argv[4]); result = std::vector&lt;std::vector&lt;int&gt; &gt;(horizPixels, std::vector&lt;int&gt;(vertPixels,21)); // init 2-dimensional vector if (threadCount &lt;= 1) { SingleThreaded(result); } else { MultiThreaded(threadCount, result); } //TODO: remove these lines bitmapImage image(horizPixels, vertPixels); for(int y = 0; y &lt; vertPixels; y++) { for(int x = 0; x &lt; horizPixels; x++) { image.setPixelRGB(x,y,16777216*result[x][y]/maxiter % 256, 65536*result[x][y]/maxiter % 256, 256*result[x][y]/maxiter % 256); //std::cout &lt;&lt; std::setw(2) &lt;&lt; std::setfill('0') &lt;&lt; std::hex &lt;&lt; result[x][y] &lt;&lt; " "; } std::cout &lt;&lt; std::endl; } image.saveToBitmapFile("~/Desktop/test.bmp",32); } </code></pre> <p>good results can be obtained using the program with the following arguments:</p> <blockquote> <p>mandelbrot 5120 3840 256 3</p> </blockquote> <p>that way you will get an image that is 5 * 1024 wide; 5 * 768 high with 256 colors (alas you will only get 1 or 2) and 3 threads (1 main thread that doesn't do any work except creating the worker threads, and 2 worker threads)</p> http://stackoverflow.com/questions/327379/benchmark-problems-for-testing-concurency/327860#327860 0 Answer by Sven for Benchmark problems for testing concurency Sven 2008-11-29T19:08:57Z 2008-11-29T19:08:57Z <p>I have decided to use the <a href="http://en.wikipedia.org/wiki/Mandelbrot_set" rel="nofollow">Mandelbrot set</a> (the <a href="http://en.wikipedia.org/wiki/Mandelbrot_set#Escape_time_algorithm" rel="nofollow">escape time algorithm</a> to be more precise) to benchmark the different languages.<br /> It fits me quite well as the original algorithm can easily be implemented and creating the multi threaded variant from it is not that much work.</p> <p>below is the code I currently have. It is still a single threaded variant, but I'll update it as soon as I'm satisfied with the result.</p> <pre><code>#include &lt;cstdlib&gt; //for atoi #include &lt;iostream&gt; #include &lt;iomanip&gt; //for setw and setfill #include &lt;vector&gt; int DoThread(const double x, const double y, int maxiter) { double curX,curY,xSquare,ySquare; int i; curX = x + x*x - y*y; curY = y + x*y + x*y; ySquare = curY*curY; xSquare = curX*curX; for (i=0; i&lt;maxiter &amp;&amp; ySquare + xSquare &lt; 4;i++) { ySquare = curY*curY; xSquare = curX*curX; curY = y + curX*curY + curX*curY; curX = x - ySquare + xSquare; } return i; } void SingleThreaded(int horizPixels, int vertPixels, int maxiter, std::vector&lt;std::vector&lt;int&gt; &gt;&amp; result) { for(int x = horizPixels; x &gt; 0; x--) { for(int y = vertPixels; y &gt; 0; y--) { //3.0 -&gt; so we always have -1.5 -&gt; 1.5 as the window; (x - (horizPixels / 2) will go from -horizPixels/2 to +horizPixels/2 result[x-1][y-1] = DoThread((3.0 / horizPixels) * (x - (horizPixels / 2)),(3.0 / vertPixels) * (y - (vertPixels / 2)),maxiter); } } } int main(int argc, char* argv[]) { //first arg = length along horizontal axis int horizPixels = atoi(argv[1]); //second arg = length along vertical axis int vertPixels = atoi(argv[2]); //third arg = iterations int maxiter = atoi(argv[3]); //fourth arg = threads int threadCount = atoi(argv[4]); std::vector&lt;std::vector&lt;int&gt; &gt; result(horizPixels, std::vector&lt;int&gt;(vertPixels,0)); //create and init 2-dimensional vector SingleThreaded(horizPixels, vertPixels, maxiter, result); //TODO: remove these lines for(int y = 0; y &lt; vertPixels; y++) { for(int x = 0; x &lt; horizPixels; x++) { std::cout &lt;&lt; std::setw(2) &lt;&lt; std::setfill('0') &lt;&lt; std::hex &lt;&lt; result[x][y] &lt;&lt; " "; } std::cout &lt;&lt; std::endl; } } </code></pre> <p>I've tested it with gcc under Linux, but I'm sure it works under other compilers/Operating Systems as well. To get it to work you have to enter some command line arguments like so:</p> <blockquote> <p>mandelbrot 106 500 255 1</p> </blockquote> <p>the first argument is the width (x-axis)<br /> the second argument is the height (y-axis)<br /> the third argument is the number of maximum iterations (the number of colors)<br /> the last ons is the number of threads (but that one is currently not used)</p> <p>on my resolution, the above example gives me a nice ASCII-art representation of a Mandelbrot set. But try it for yourself with different arguments (the first one will be the most important one, as that will be the width)</p> http://stackoverflow.com/questions/327379/benchmark-problems-for-testing-concurency/327386#327386 0 Answer by Sven for Benchmark problems for testing concurency Sven 2008-11-29T09:44:26Z 2008-11-29T09:44:26Z <blockquote> <p><a href="http://stackoverflow.com/questions/327379/benchmark-problems-for-testing-concurency#327380">Surely you should be testing hardware and compilers rather than a language for concurrency performance?</a></p> </blockquote> <p>No, hardware and compilers are irrelevant for my testing purposes. I'm just looking for some good problems that can test how well code, written in one language, can compete against code from another language. I'm really testing the constructs available in the specific languages to do concurrent programming. And one of the criteria is performance (measured in time).</p> <p>Some of the other test criteria I'm looking for are:</p> <ul> <li>how <em>easy</em> is it to write correct code; because as we all know concurrent programming is harder then writing single threaded programs</li> <li>what is the technique used to to concurrent programming: event-driven, actor based, message parsing, ...</li> <li>how much code must be written by the programmer himself and how much is done automatically for him: this can also be tested with the given benchmark problems</li> <li>what's the level of abstraction and how much overhead is involved when translated back to machine code</li> </ul> <p>So actually, I'm not looking for performance as <em>the</em> only and best parameter (which would indeed send me to the hardware and the compilers instead of the language itself), I'm actually looking from a programmers point of view to check what language is best suited for what kind of problems, what it's weaknesses and strengths are and so on...</p> <p>Bare in mind that this is just a small project and the tests are therefore to be kept small as well. (rigorous testing of everything is therefore not feasible)</p> http://stackoverflow.com/questions/292338/which-are-the-most-important-math-skills-in-order-to-better-understand-cryptograp/292370#292370 19 Answer by Sven for Which are the most important Math skills in order to better understand cryptography? Sven 2008-11-15T10:04:49Z 2008-11-15T19:22:22Z <p>Discrete mathematics is definitely needed for cryptography, and there is no way around it. </p> <p>off the top of my head, you won't get far without:</p> <ul> <li><a href="http://en.wikipedia.org/wiki/Modular_exponentiation" rel="nofollow">Modular exponentiation</a></li> <li>primes (of course), and more specifically <a href="http://mathworld.wolfram.com/news/2005-11-08/rsa-640/" rel="nofollow">the difficulty of factoring a (large) number into its primes</a>, actually it is one of the <a href="http://www.rsa.com/rsalabs/node.asp?id=2189" rel="nofollow">fundamental principles used for most asymmetric encryption schemes in use today</a>. </li> <li>the understanding of what <a href="http://www.rsa.com/rsalabs/node.asp?id=2188" rel="nofollow">one-way-functions</a> are (if they exist at all)</li> <li>the difference between <a href="http://en.wikipedia.org/wiki/Symmetric_key_algorithm" rel="nofollow">symmetric</a> and <a href="http://en.wikipedia.org/wiki/Public-key_cryptography" rel="nofollow">asymmetric key algorithms</a></li> <li><a href="http://en.wikipedia.org/wiki/Computational_complexity_theory" rel="nofollow">computational complexity</a> (and it's big oh notation)</li> </ul> <p>but really, most of these are directly related to discrete mathematics, so there is no way around (re)studying that.</p> http://stackoverflow.com/questions/249632/what-is-the-time-complexity-of-this-scheme-function/249654#249654 2 Answer by Sven for What is the time complexity of this Scheme function? Sven 2008-10-30T09:25:37Z 2008-11-06T12:33:46Z <p>the time complexity for the mult part can be found like this:</p> <p>to calculate (mult a b), (internal a accum) is called until a = 1 so we have some kind of tail recursion (loop) that iterates over a.</p> <p>we thus know that the time complexity of (mult a b) is <strong>O(a)</strong> (= linear time complexity)</p> <p>(to-the-power-of m n) also has an (internal x accum) definition, that also loops (until x = 0)</p> <p>so again we have <strong>O(x)</strong> (= linear time complexity)</p> <p><em>But</em>: we didn't take into account the time needed for the function calls of internal...<br /> In internal, we use the (mult a b) definition which is linear in time complexity so we have the following case: in the first iteration mult is called with: (mult 1 m) --> O(1)<br /> second iteration this becomes: (mult m m) --> O(m)<br /> third iteration: (mult m² m) --> O(m*m) and so on It is clear that this grows until n = 0 (or in internal this becomes x = 0)</p> <p>thus we can say that the time complexity will depend on m and n: <strong>O(m^n)</strong></p> <p>[edit:] you can also take a look at a related question I asked earlier: <a href="http://stackoverflow.com/questions/3255/big-o-how-do-you-calculateapproximate-it">Big O, how do you calculate/approximate it?</a> which may give you a clue how you can handle the approximation more generally</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/219232#219232 0 Answer by Sven for C++ IDE for Linux? Sven 2008-10-20T17:28:48Z 2008-10-20T17:28:48Z <blockquote> <p><a href="http://stackoverflow.com/questions/24109/c-ide-for-linux#219039">why wouldn't you also use it for C++? CDT meets every requirement you've mentioned.</a></p> </blockquote> <p>I didn't use eclipse at first because I wasn't sure that it was equally good at giving me the means of developing in C++ (efficiently). Besides that, I was also convinced that there had to be better, more specialized tools available for c++ development in Linux: </p> <blockquote> <p>and I really like that [eclipse] IDE for java, but is it any good for c++ and won't I miss out on something that is even better?</p> </blockquote> <p>I honestly believe that, although some tools (like eclipse) are great at many things, it is best to look for other options as well (and I don't mean that for IDE's only, but in general and even in <em>real life</em>)...<br /> Like in this case, vim is really great, and I would have missed out on it if I sticked to something I already knew. </p> http://stackoverflow.com/questions/214987/dilemma-about-image-cropping-algorithm-is-it-possible/215044#215044 -1 Answer by Sven for Dilemma about image cropping algorithm - is it possible? Sven 2008-10-18T13:28:31Z 2008-10-18T13:28:31Z <p>I think that you will never get good results without a real user telling the program what to do. Think of it this way: how should your program decide when there is more than 1 <em>interesting</em> object present (for example: 2 cars)? what if the object you want is actually the mountain in the background? what if nothing of interest is inside the picture, thus nothing to select as the object to crop out? etc, etc...</p> <p>With that said, if you can make <em>assumptions</em> like: only 1 object will be present, then you can have a go with using <a href="http://www.efg2.com/Lab/Library/ImageProcessing/Algorithms.htm" rel="nofollow">image recognition algorithms</a>.<br /> Now that I think of it. I recently got a lecture about artificial intelligence in robots and in robotic research techniques. Their research went on about <a href="http://www.csl.sony.fr/items/1998/the-naming-game/" rel="nofollow">language interaction, evolution, and language recognition</a>. But in order to do that they also needed some simple image recognition algorithms to process the perceived environment. One of the tricks they used was to make a 3D plot of the image where x and y where the normal x and y axis and the z axis was the brightness of that particular point, then they used the same technique for red-green values, and blue-yellow. And lo and behold they had something (relatively) easy they could use to pick out the objects from the perceived environment.<br /> (I'm terribly sorry, but I can't find a link to the nice charts they had that showed how it all worked).</p> <p>Anyway, the point is that they were not interested (that much) in image recognition so they created something that worked <em>good enough</em> and used something less advanced and thus less time consuming, so it is possible to create something simple for this complex task.</p> <p>Also any good image editing program has some kind of <em>magic wand</em> that will select, with the right amount of tweaking, the object of interest you point it on, maybe it's worth your time to look into that as well.</p> <p>So, it basically will mean that you:</p> <ul> <li>have to make some assumptions, otherwise it will fail terribly</li> <li>will probably best be served with techniques from AI, and more specifically image recognition</li> <li>can take a look at <a href="http://www.getpaint.net/index.html" rel="nofollow">paint.NET</a> and their algorithm for their <em>magic wand</em></li> <li>try to use the fact that a <em>good</em> photo will have the object of interest somewhere in the middle of the image</li> </ul> <p>.. but i'm not saying that this is <em>the</em> solution for your problem, maybe something simpler can be used.</p> <p>Oh, and I will continue to look for those links, they hold some really valuable information about this topic, but I can't promise anything.</p> http://stackoverflow.com/questions/213429/programmatically-adding-user-controls-inside-an-updatepanel/214854#214854 6 Answer by Sven for Programmatically Adding User Controls Inside An UpdatePanel Sven 2008-10-18T10:18:30Z 2008-10-18T10:18:30Z <p>This is, I think, one of the common pitfalls for asp.net programmers but isn't actually that hard to get it right when you know what is going on (always remember your viewstate!). </p> <p>the following piece of code explains how things can be done. It's a simple page where a user can click on a menu which will trigger an action that will add a user control to the page inside the updatepanel.<br /> (This code is borrowed <a href="http://geekswithblogs.net/rashid/archive/2007/08/11/Loading-UserControl-Dynamically-in-UpdatePanel.aspx" rel="nofollow">from here</a>, and has lots more of information concerning this topic)</p> <pre><code>&lt;%@ Page Language="C#" AutoEventWireup="true" CodeFile="SampleMenu1.aspx.cs" Inherits="SampleMenuPage1" %&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt; &lt;head runat="server"&gt; &lt;title&gt;Sample Menu&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;form id="form1" runat="server"&gt; &lt;asp:Menu ID="Menu1" runat="server" OnMenuItemClick="Menu1_MenuItemClick"&gt; &lt;Items&gt; &lt;asp:MenuItem Text="File"&gt; &lt;asp:MenuItem Text="Load Control1"&gt;&lt;/asp:MenuItem&gt; &lt;asp:MenuItem Text="Load Control2"&gt;&lt;/asp:MenuItem&gt; &lt;asp:MenuItem Text="Load Control3"&gt;&lt;/asp:MenuItem&gt; &lt;/asp:MenuItem&gt; &lt;/Items&gt; &lt;/asp:Menu&gt; &lt;br /&gt; &lt;br /&gt; &lt;asp:ScriptManager ID="ScriptManager1" runat="server"&gt;&lt;/asp:ScriptManager&gt; &lt;asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional"&gt; &lt;ContentTemplate&gt; &lt;asp:PlaceHolder ID="PlaceHolder1" runat="server"&gt;&lt;/asp:PlaceHolder&gt; &lt;/ContentTemplate&gt; &lt;Triggers&gt; &lt;asp:AsyncPostBackTrigger ControlID="Menu1" /&gt; &lt;/Triggers&gt; &lt;/asp:UpdatePanel&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>and </p> <pre><code>using System; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class PlainSampleMenuPage : System.Web.UI.Page { private const string BASE_PATH = "~/DynamicControlLoading/"; private string LastLoadedControl { get { return ViewState["LastLoaded"] as string; } set { ViewState["LastLoaded"] = value; } } private void LoadUserControl() { string controlPath = LastLoadedControl; if (!string.IsNullOrEmpty(controlPath)) { PlaceHolder1.Controls.Clear(); UserControl uc = (UserControl)LoadControl(controlPath); PlaceHolder1.Controls.Add(uc); } } protected void Page_Load(object sender, EventArgs e) { LoadUserControl(); } protected void Menu1_MenuItemClick(object sender, MenuEventArgs e) { MenuItem menu = e.Item; string controlPath = string.Empty; switch (menu.Text) { case "Load Control2": controlPath = BASE_PATH + "SampleControl2.ascx"; break; case "Load Control3": controlPath = BASE_PATH + "SampleControl3.ascx"; break; default: controlPath = BASE_PATH + "SampleControl1.ascx"; break; } LastLoadedControl = controlPath; LoadUserControl(); } } </code></pre> <p>for the code behind.</p> <p>That's basically it. You can clearly see that the viewstate is being kept with <em>LastLoadedControl</em> while the controls themselves are dynamically added to the page (inside the updatePanel (actually inside the placeHolder inside the updatePanel) when the user clicks on a menu item, which will send an asynchronous postback to the server.</p> <p>More information can also be found here:</p> <ul> <li><a href="http://aspnet.4guysfromrolla.com/articles/081402-1.aspx" rel="nofollow">http://aspnet.4guysfromrolla.com/articles/081402-1.aspx</a></li> <li><a href="http://aspnet.4guysfromrolla.com/articles/082102-1.aspx" rel="nofollow">http://aspnet.4guysfromrolla.com/articles/082102-1.aspx</a></li> </ul> <p>and of course on <a href="http://geekswithblogs.net/rashid/archive/2007/08/11/Loading-UserControl-Dynamically-in-UpdatePanel.aspx" rel="nofollow">the website that holds the example code</a> I used here.</p> http://stackoverflow.com/questions/185158/copy-protection-and-licensing-tools/186335#186335 4 Answer by Sven for Copy protection and licensing tools. Sven 2008-10-09T08:00:42Z 2008-10-09T08:00:42Z <p>If you truly want a 3th party tool you can go for the <a href="http://www.reprisesoftware.com/rlm.htm" rel="nofollow">Reprise License Manager (RLM)</a> and allows you to hand out trial licenses, single user licenses and floating licenses. <a href="http://www.reprisesoftware.com/activation.htm" rel="nofollow">From their site</a>: </p> <blockquote> <p>Activation keys can enable any license type including trial licenses, single-seat licenses, and floating licenses. They can also be used for bulk activations at your largest and best customers or through your distribution channel. Bulk orders require only a single activation key that can be re-used until the all the ordered licenses have been fulfilled. That's it.</p> </blockquote> <p>However, like any protection scheme, a truly devoted <em>user</em> will be able to bypass any protection, so don't put a large amount of money into the licencing scheme/program you are going to use.<br /> Of course I don't know who your intended audience will be, but it will be <em>very, very</em> unlikely that that will be the case for your program.</p> <p>Therefore it could even be enough to write your own (basic) tool instead. (it can actually be cheaper than buying the tools from a 3th party)</p> <p>The company I worked for actually used a <a href="http://en.wikipedia.org/wiki/Dongle" rel="nofollow">usb dongle</a> for example that we developed ourselves.I know most people don't like dongles, but in this case it was quite handy as it was actually used for a special purpose <em>media player</em> that we also delivered and the USB key also held the program on it. The USB keys could thus be used as a demo on <em>any</em> pc, but also, and without any modifications, be used in the real application (ie the real players), once the client was satisfied</p> <p>Of course many other possibilities exists without dongles, <em>if</em> you want to develop it on your own...</p> http://stackoverflow.com/questions/714905/threads-in-x86-assembler-using-the-gnu-assember-as/995071#995071 Comment by Sven on Threads in x86 assembler (using the GNU assember: as) Sven 2009-06-15T14:13:01Z 2009-06-15T14:13:01Z I marked your answer as the correct answer; I was indeed looking for a way to run code simultaneously on multiple cores. I already accepted the fact that this was not possible in the way I wanted it to be... Do you, by chance, know the correct way to to this? the information on this topic is rather thin spread. and many thanks for your answer! http://stackoverflow.com/questions/714905/threads-in-x86-assembler-using-the-gnu-assember-as/737865#737865 Comment by Sven on Threads in x86 assembler (using the GNU assember: as) Sven 2009-04-10T20:22:11Z 2009-04-10T20:22:11Z thank you for your valuable input! I will most certainly take a look at 'sysenter', but a question remains for me: how can I call a kernel thead in assembler? and how can I be sure that it will run on a seperate core? http://stackoverflow.com/questions/714905/threads-in-x86-assembler-using-the-gnu-assember-as/714928#714928 Comment by Sven on Threads in x86 assembler (using the GNU assember: as) Sven 2009-04-04T17:37:28Z 2009-04-04T17:37:28Z The idea you suggest sounds nice, but how can I implement this in assembler? what system calls/assembler statements can I use for this? http://stackoverflow.com/questions/306779/redialing-a-pppoe-connection-programatically/484495#484495 Comment by Sven on Redialing a PPPOE connection programatically Sven 2009-01-27T18:36:42Z 2009-01-27T18:36:42Z I cannot test this right now, but I believe that the &quot;connected&quot; icon will indeed be visible in the taskbar, just as the other &quot;network icons&quot; are visible. http://stackoverflow.com/questions/190130/where-and-how-does-windows-xp-store-wep-wpa-keys/190159#190159 Comment by Sven on Where and how does Windows XP store wep/wpa keys? Sven 2009-01-27T13:21:34Z 2009-01-27T13:21:34Z I've deleted my answer as it couldn't help you; I was only answering the question asked here (not the &quot;main question&quot;). But the link you specify has the information about the wep/wpa keys if I'm not mistaken, so you probably have figured it out and should close this questions if that's the case. http://stackoverflow.com/questions/438729/smalltalk-singleton-pattern-how-do-i-initialize-the-instance-variables/438774#438774 Comment by Sven on smalltalk singleton pattern: how do I initialize the instance variables? Sven 2009-01-13T13:05:22Z 2009-01-13T13:05:22Z thanks, that did the trick! http://stackoverflow.com/questions/327379/benchmark-problems-for-testing-concurency/327380#327380 Comment by Sven on Benchmark problems for testing concurency Sven 2008-11-29T10:05:41Z 2008-11-29T10:05:41Z You've tickled my interest!You say that you have experience as a researcher in parallel algorithms. Surely you can give me some interesting problems or algorithms you have worked on? And yes you are correct, benchmarks have very little meaning on their own,that's why I won't spend much time on them http://stackoverflow.com/questions/327379/benchmark-problems-for-testing-concurency/327386#327386 Comment by Sven on Benchmark problems for testing concurency Sven 2008-11-29T09:57:13Z 2008-11-29T09:57:13Z Because that's the basic idea of the project. Its just a small research project, nothing more is expected afterwards (ie using the language). Besides it's not about picking the <i>best</i> language, it's about showing that each language has it's place. Each language has it's strong and weak points... http://stackoverflow.com/questions/292338/which-are-the-most-important-math-skills-in-order-to-better-understand-cryptograp/292370#292370 Comment by Sven on Which are the most important Math skills in order to better understand cryptography? Sven 2008-11-15T19:21:21Z 2008-11-15T19:21:21Z ah yes you are correct, Arachnid. But as you might also know, asymmetric cryptographic algorithms are more commonly used today than their symmetric counterparts... but I will change the statement a bit to clarify its meaning http://stackoverflow.com/questions/185158/copy-protection-and-licensing-tools/186335#186335 Comment by Sven on Copy protection and licensing tools. Sven 2008-10-15T07:07:03Z 2008-10-15T07:07:03Z No, the dongle just held the files to install the program on <i>any</i> computer. The dongle was however necessary to run the actual software. The reason was: our (media) players should not be bounded to 1 pc, because if that one broke, we could simply stick the dongle in a new one and be done with it. http://stackoverflow.com/questions/162529/what-is-the-fashionable-programming-language-in-academia/162635#162635 Comment by Sven on What is the fashionable programming language in academia? Sven 2008-10-03T06:36:05Z 2008-10-03T06:36:05Z yes prolog, but actually it is not quite as bad as you might think... you just have to ... <i>get it</i> and then you can work with it like any other language. Besides, it is not the language that is important in that course, it's more the purpose behind it: 'logic/declarative programming' http://stackoverflow.com/questions/154163/detect-virtualized-os-from-an-application/154222#154222 Comment by Sven on Detect virtualized OS from an application? Sven 2008-10-02T15:17:24Z 2008-10-02T15:17:24Z @erik: it uses the fact that a virutalised OS is a 'second' OS on a machine. This means that resources needs to be shared. In this code it's the IDTR (Interrupt descriptor table register: check wikipedia) that will be checked against, if it is not in the usual place, then we know that we are virtual http://stackoverflow.com/questions/97506/formatting-of-if-statements/97526#97526 Comment by Sven on Formatting of if Statements Sven 2008-09-30T20:15:09Z 2008-09-30T20:15:09Z I also like the convention of starting and ending all if statements with brackets, even if it only contains 1 command... By the way the reason why this 'feature' was introduced was (probably) because back in the early days of programming, it was desired to have to type as little as possible... http://stackoverflow.com/questions/154163/detect-virtualized-os-from-an-application/154222#154222 Comment by Sven on Detect virtualized OS from an application? Sven 2008-09-30T18:14:20Z 2008-09-30T18:14:20Z yes, it indeed uses the fact that the virtual machine is not an entirely accurate representation of a real pc. If it was then there is no (good) way to detect you are running virtual http://stackoverflow.com/questions/24109/c-ide-for-linux Comment by Sven on C++ IDE for Linux? Sven 2008-09-19T07:38:37Z 2008-09-19T07:38:37Z Maybe you should look at the date this question was asked... or point the newer questions to here