User Vhaerun - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T04:10:23Z http://stackoverflow.com/feeds/user/11234 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/93915/conferences-that-offer-videos-for-downloading 7 Conferences that offer videos for downloading? Vhaerun 2008-09-18T16:02:00Z 2009-10-15T08:08:09Z <p>One thing I love about ruby is that all of the conference's videos are posted online , so that people that could not attend can watch them. I'm sure most of you know about <a href="http://www.confreaks.com" rel="nofollow">Confreaks</a> , which offers them for download. </p> <p>Are there sites like that for other programming languages/conferences (or is google video the best shot)?</p> http://stackoverflow.com/questions/154348/ubuntu-trouble-with-sdl 0 ubuntu trouble with SDL Vhaerun 2008-09-30T18:32:21Z 2009-09-29T15:55:56Z <p>I'm trying to learn to use SDL for a little game I'm writing , but I have a problem . One single application can play sound at a given time on my system . If for example I have amarok or kaffeine ( or even firefox while playing a flash video ) , no other application can play sound . The only solution I've found is to run just an application at a given time , but , that doesn't seems like a natural solution . Any hints ?</p> http://stackoverflow.com/questions/138981/how-do-i-test-if-a-file-is-a-directory-in-a-batch-script 2 How do I test if a file is a directory in a Batch script? Vhaerun 2008-09-26T11:57:24Z 2009-09-24T04:04:05Z <p>Is there any way to say if a file is a directory? I have the filename in a variable. In Perl I can do this:</p> <p><code>if(-d $var) { print "it's a directory\n" }</code></p> http://stackoverflow.com/questions/138497/batch-scripting-iterating-over-files-in-a-directory 3 batch scripting iterating over files in a directory Vhaerun 2008-09-26T09:42:34Z 2009-08-28T11:54:29Z <p>How could I iterate over each file in a directory using <strong>for</strong>? And how could I tell if a certain entry is a directory or if it's just a file?</p> http://stackoverflow.com/questions/165938/how-can-i-debug-a-bat-script 5 How can I debug a .BAT script? Vhaerun 2008-10-03T06:46:53Z 2009-08-22T16:01:53Z <p>Is there a way to step through a .bat script ? The thing is , I have a build script , which calls a lot of other scripts , and I would like to see what is the order in which they are called , so that I may know where exactly I have to go about and add my modifications .</p> http://stackoverflow.com/questions/116309/open-solaris-code-vs-solaris-code 2 open solaris code vs solaris code Vhaerun 2008-09-22T17:40:01Z 2009-06-01T20:10:15Z <p>How compatible is code written under Solaris with Open Solaris ? I would be interested specifically in some kernel modules .</p> http://stackoverflow.com/questions/174013/linker-out-of-memory-lnk1102 2 linker out of memory LNK1102 Vhaerun 2008-10-06T12:03:02Z 2009-05-19T10:29:16Z <p>My colleagues and I have tried to build a project containing several thousand classes , but we're getting a LNK1102 error ( Linker out of memory ) . I've seen several tips on the internet , such as increasing the virtual memory . We tried but this didn't help . We've also seen some as enabling different warning levels when compiling the code . A guy suggested enabling level 4 for warnings . How could that be done ? Are there other suggestions ?</p> http://stackoverflow.com/questions/190326/c-finding-out-decorated-names 1 C++ : Finding out decorated names Vhaerun 2008-10-10T06:35:59Z 2009-05-01T18:53:29Z <p>How can I find out the decorated name that will be asigned to each method name ? I'm trying to find out what the decorated name is , so that I may export it , in a DLL .</p> http://stackoverflow.com/questions/74821/where-can-i-find-vim-enhanced-resources 0 where can I find vim-enhanced resources? Vhaerun 2008-09-16T17:29:27Z 2009-04-08T19:26:41Z <p>I recently installed vim-enhanced , but I can't find any article/tutorial related to it.All I could find is a page that briefly describes it's new features , along with several RPM's to download . What exactly does it have to offer to scripting languages that regular vi/vim can't ?</p> <p>Thanks</p> http://stackoverflow.com/questions/138819/batch-find-file-extension 3 batch find file extension Vhaerun 2008-09-26T11:15:30Z 2009-04-03T05:02:08Z <p>If I am iterating over each file using : <code></p> <p>@echo off</p> <p>FOR %%f IN (<em>*.*</em>) DO (</p> <pre><code>echo %%f </code></pre> <p>) </code></p> <p>how could I print the extension of each file? I tried assigning %%f to a temporary variable , and then using the code :</p> <p><code> echo "%t:~-3%" </code></p> <p>but with no success .</p> http://stackoverflow.com/questions/213538/centering-text-in-common-lisp 2 centering text in common lisp Vhaerun 2008-10-17T19:27:24Z 2009-01-06T13:12:38Z <p>I have a string that I would like to print . Is it possible to center it when printing ?</p> http://stackoverflow.com/questions/113872/platform-builder-command-line-building-question 0 Platform Builder command line building question Vhaerun 2008-09-22T08:52:51Z 2009-01-03T02:47:11Z <p>I'm building a project from command line , using WinCE platform builder , and I need RTTI to be enabled , so that my project works correctly . I tried setting the option RTTI="YES" in the sources and in the makefile of each dir , and I also tried to add it at the end of CDEFINES , but when I try to build the project , I get the D9025 warnings , which says that my "/GR was overriden by /GR-" ( enable RTTI was overriden by don't enable RTTI ) . My question is , how can I find out where that option is set , so that I can modify it ?</p> http://stackoverflow.com/questions/186232/exporting-dll-c-class-question-about-def-file 2 Exporting DLL C++ Class , question about .def file Vhaerun 2008-10-09T07:13:54Z 2009-01-02T21:59:18Z <p>I want to use implicit linking in my project , and nmake really wants a .def file . The problem is , that this is a class , and I don't know what to write in the exports section . Could anyone point me in the right direction ?</p> <p>The error message is the following :</p> <p><strong>NMAKE : U1073: don't know how to make 'DLLCLASS.def'</strong></p> <p>P.S: I'm trying to build using Windows CE Platform Builder .</p> http://stackoverflow.com/questions/70573/whats-the-best-online-source-to-learn-perl/70581#70581 0 Answer by Vhaerun for What's the best online source to learn Perl? Vhaerun 2008-09-16T09:09:26Z 2008-12-03T19:37:04Z <p>If you are a beginner, I would suggest you take a look at the cookbook provided by PLEAC. You can find it at <a href="http://pleac.sf.net" rel="nofollow">http://pleac.sf.net</a>. There you can find cookbooks for most languages.</p> http://stackoverflow.com/questions/69859/how-could-i-intercept-linux-sys-calls 0 how could I intercept linux sys calls? Vhaerun 2008-09-16T06:40:20Z 2008-11-27T03:06:50Z <p>Hello !</p> <p>Besides the LD_PRELOAD trick , and Linux Kernel Modules that replace a certain syscall with one provided by you , is there any possibility to intercept a syscall ( open for example ) , so that it first goes through your function , before it reaches the actual open ?</p> http://stackoverflow.com/questions/161462/java-writing-a-dom-to-an-xml-file-formatting-issues 2 Java: Writing a DOM to an XML file (formatting issues) Vhaerun 2008-10-02T09:10:33Z 2008-11-17T06:08:31Z <p>I'm using org.w3c XML API to open an existing XML file. I'm removing some nodes , and I'm adding others instead . The problem is that the new nodes that are added are written one after another , with no newline and no indentation what so ever. While it's true that the XML file is valid , it is very hard for a human to examnine it. Is there anyway to add indentation , or at least a newline after each node ?</p> http://stackoverflow.com/questions/235376/c-dynamic-class-dynamic-hack 3 C++ dynamic class ( dynamic hack ) Vhaerun 2008-10-24T21:52:39Z 2008-10-25T16:44:09Z <p>Is there any way to add a field to a class at runtime ( a field that didn't exist before ) ? Something like this snippet :</p> <pre><code>Myobject *ob; // create an object ob-&gt;addField("newField",44); // we add the field to the class and we assign an initial value to it printf("%d",ob-&gt;newField); // now we can access that field </code></pre> <p>I don't really care how it would be done , I don't care if it's an ugly hack or not , I would like to know if it could be done , and a small example , if possible .</p> <p><strong>Another Example:</strong> say I have an XML file describing this class :</p> <pre><code>&lt;class name="MyClass"&gt; &lt;member name="field1" /&gt; &lt;member name="field2" /&gt; &lt;/class&gt; </code></pre> <p>and I want to "add" the fields "field1" and "field2" to the class (assuming the class already exists) . Let's say this is the code for the class :</p> <pre><code>class MyClass { }; </code></pre> <p>I don't want to create a class at runtime , I just want to add members/fields to an existing one .</p> <p>Thank you !</p> http://stackoverflow.com/questions/236031/how-to-realize-a-diff-function/236041#236041 0 Answer by Vhaerun for How to realize a diff function? Vhaerun 2008-10-25T07:12:53Z 2008-10-25T07:12:53Z <p>I guess the only way would be to compare each character forming the 2 strings . Something like this :</p> <pre><code> void diff(String first,String second) { int biggest = (first.length() > second.length()) ? first.length() : second.length(); for(int i = 0;i &lt biggest;i++) { //compare each char from the longest string with each char from the shorter // do something with them if they're not equal } } </code></pre> <p>This is just a sketch of how I would do it . Everything depends on what you want to do with the data .</p> http://stackoverflow.com/questions/194382/what-is-the-difference-between-using-the-visitor-design-pattern-or-using-an-inter 2 what is the difference between using the visitor design pattern or using an interface ? Vhaerun 2008-10-11T18:02:34Z 2008-10-19T23:00:40Z <p>What is the difference between applying the visitor design pattern to your code , and code like the following :</p> <pre><code>interface Dointerface { public void perform(Object o); </code></pre> <p>}</p> <p>public class T {</p> <pre><code> private Dointerface d; private String s; public String getS() { return s; } public T(String s) { this.s = s; } public void setInterface(Dointerface d) { this.d = d; } public void perform() { d.perform(this); } public static void main(String[] args) { T t = new T("Geonline"); t.setInterface(new Dointerface() { public void perform(Object o) { T a = (T)o; System.out.println(a.getS()); } }); t.perform(); } </code></pre> <p>}</p> <p>I assume that by using interfaces , we're not really separating the algorithm.</p> http://stackoverflow.com/questions/190326/c-finding-out-decorated-names/213560#213560 1 Answer by Vhaerun for C++ : Finding out decorated names Vhaerun 2008-10-17T19:32:59Z 2008-10-17T19:32:59Z <p>By using <strong>dumpbin</strong> on an object file , you will find all the methods used in the object . Here's how it's used</p> <pre><code>dumpbin /symbols File.obj </code></pre> http://stackoverflow.com/questions/194542/programmers-career-path/194548#194548 1 Answer by Vhaerun for Programmer's career path Vhaerun 2008-10-11T20:09:03Z 2008-10-11T20:09:03Z <p>I would go for team-leader/lead developer . Beeing a manager doesn't appeal that much to me,because I like writing code , and working with other developers.</p> http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug/186638#186638 0 Answer by Vhaerun for Program only crashes as release build -- how to debug? Vhaerun 2008-10-09T10:14:35Z 2008-10-09T10:14:35Z <p>Try using <strong>_CrtCheckMemory()</strong> to see what state the allocated memory is in . If everything goes well , <strong>_CrtCheckMemory</strong> returns <strong>TRUE</strong> , else <strong>FALSE</strong> .</p> http://stackoverflow.com/questions/186232/exporting-dll-c-class-question-about-def-file/186428#186428 1 Answer by Vhaerun for Exporting DLL C++ Class , question about .def file Vhaerun 2008-10-09T08:39:46Z 2008-10-09T08:39:46Z <p>The solution is the following :</p> <ul> <li><p>since a class is exported,you also need to add the exported methods in the .def file</p></li> <li><p>I didn't find out how to export a constructor , so I went with using a factory method ( static ) , which will return new instances of an object</p></li> <li><p>the other functions will be exported by adding normal exporting declaration in the .def file</p></li> </ul> <p>Hope someone will benefit from this information .</p> http://stackoverflow.com/questions/76408/which-of-these-scripting-languages-is-more-appropriate-for-pen-testing 2 Which of these scripting languages is more appropriate for pen-testing? Vhaerun 2008-09-16T20:11:22Z 2008-10-08T07:36:44Z <p>First of all, I want to avoid a flame-war on languages. The languages to choose from are Perl, Python and Ruby . I want to mention that I'm confortable with all of them, but the problem is that I can't focus just on one. </p> <p>If for example , I see a cool Perl module, I have to try it out. If I see a nice Python app, I have to know how it's made. If I see a Ruby DSL or some Ruby voodoo, I'm hooked on Ruby for a while.</p> <p>Right now I'm working as a Java developer, but plan on taking CEH in the near future. My question is: for tool writing and exploit development, which language do you find to be the most appropriate ?</p> <p>Again , I don't want to cause a flame-war or any trouble, I just want honest oppinions from scripters that know what they're doing.</p> <p>One more thing: maybe some of you will ask "Why settle on one language?". To answer this: I would like to choose only one language, in order to try to master it.</p> <p>Thanks !</p> http://stackoverflow.com/questions/148513/does-nmake-have-build-tasks 0 does nmake have build tasks ? Vhaerun 2008-09-29T12:44:39Z 2008-09-29T13:11:34Z <p>Using ant I could unzip an archive before proceeding with the build per-se ... Is this possible using nmake ? Could I call an external application ? Or even a batch script ?</p> http://stackoverflow.com/questions/143487/how-can-i-add-fonts-to-netbeans 0 How can I add fonts to netbeans? [closed] Vhaerun 2008-09-27T12:02:39Z 2008-09-27T14:45:53Z <p>I'm using netbeans on ubuntu, I would like to add some fonts to it. Could anyone tell me how this is done ?</p> http://stackoverflow.com/questions/143487/how-can-i-add-fonts-to-netbeans/143731#143731 0 Answer by Vhaerun for How can I add fonts to netbeans? Vhaerun 2008-09-27T14:45:53Z 2008-09-27T14:45:53Z <p>Adding them to the .fonts/ directory did the trick .</p> http://stackoverflow.com/questions/143484/can-greasemonkey-cause-the-displayed-title-to-change/143494#143494 7 Answer by Vhaerun for Can Greasemonkey cause the displayed title to change Vhaerun 2008-09-27T12:04:33Z 2008-09-27T12:04:33Z <p>Try using this instead: </p> <pre> document.title = "MyTitle"; </pre> http://stackoverflow.com/questions/132867/i-have-a-gem-installed-but-require-gemname-does-not-work-why/132882#132882 0 Answer by Vhaerun for I have a gem installed but require 'gemname' does not work. Why? Vhaerun 2008-09-25T12:04:15Z 2008-09-25T12:04:15Z <p>You need to include "rubygems" only if you installed the gem using <strong>gem</strong> . Otherwise , the secret incantation would be to fire up <strong>irb</strong> and try different combinations . Also , you can pass the <strong>-I</strong> option to the ruby interpreter so that you include the instalation directory of the gem , in the <strong>LOAD_PATH</strong> . Note that <strong>$LOAD_PATH</strong> is an array , which means you can add directories to it from within your script.</p> http://stackoverflow.com/questions/113872/platform-builder-command-line-building-question/113954#113954 0 Answer by Vhaerun for Platform Builder command line building question Vhaerun 2008-09-22T09:18:27Z 2008-09-22T09:18:27Z <p>The thing is that we only copy the sources to some dirs , we specify them in a file named "sources" , and then we proceed with the build by issuing the following command :</p> <pre><code>build </code></pre> <p>What I would like to know is , where is build taking it's options from ? What is the name of the file ?</p> <p>Thanks</p> http://stackoverflow.com/questions/235376/c-dynamic-class-dynamic-hack/235503#235503 Comment by Vhaerun on C++ dynamic class ( dynamic hack ) Vhaerun 2008-10-25T09:11:47Z 2008-10-25T09:11:47Z Thank you paercebal ! Would it be possible to overload -&gt; to achieve the effect I was talking about ? http://stackoverflow.com/questions/235376/c-dynamic-class-dynamic-hack/235417#235417 Comment by Vhaerun on C++ dynamic class ( dynamic hack ) Vhaerun 2008-10-25T08:43:35Z 2008-10-25T08:43:35Z Could you please post a little snippet that works ? http://stackoverflow.com/questions/213538/centering-text-in-common-lisp/213566#213566 Comment by Vhaerun on centering text in common lisp Vhaerun 2008-10-17T19:41:11Z 2008-10-17T19:41:11Z Thanks Nathan! I appreciate it ! http://stackoverflow.com/questions/213538/centering-text-in-common-lisp/213566#213566 Comment by Vhaerun on centering text in common lisp Vhaerun 2008-10-17T19:37:49Z 2008-10-17T19:37:49Z Thank you! Can you point me in the direction of other examples of format? http://stackoverflow.com/questions/194382/what-is-the-difference-between-using-the-visitor-design-pattern-or-using-an-inter Comment by Vhaerun on what is the difference between using the visitor design pattern or using an interface ? Vhaerun 2008-10-11T19:54:53Z 2008-10-11T19:54:53Z I'm sorry to have asked such a confusing question. What Bno said is really what I meant to ask . http://stackoverflow.com/questions/186232/exporting-dll-c-class-question-about-def-file/186834#186834 Comment by Vhaerun on Exporting DLL C++ Class , question about .def file Vhaerun 2008-10-10T06:47:52Z 2008-10-10T06:47:52Z Thank you very much ! This may be the solution I've been looking for . http://stackoverflow.com/questions/190326/c-finding-out-decorated-names/190333#190333 Comment by Vhaerun on C++ : Finding out decorated names Vhaerun 2008-10-10T06:45:11Z 2008-10-10T06:45:11Z I know that UndecorateSymbolName() exists . I wanted to know if there was some DecorateSymbolName() :) http://stackoverflow.com/questions/174013/linker-out-of-memory-lnk1102/174027#174027 Comment by Vhaerun on linker out of memory LNK1102 Vhaerun 2008-10-06T12:22:36Z 2008-10-06T12:22:36Z We're preferring to keep that as a last option. http://stackoverflow.com/questions/174013/linker-out-of-memory-lnk1102 Comment by Vhaerun on linker out of memory LNK1102 Vhaerun 2008-10-06T12:10:40Z 2008-10-06T12:10:40Z we're building C++ code, using Windows Embedded CE 6.0 Platform Builder . http://stackoverflow.com/questions/165938/how-can-i-debug-a-bat-script/165942#165942 Comment by Vhaerun on How can I debug a .BAT script? Vhaerun 2008-10-03T07:12:45Z 2008-10-03T07:12:45Z I guess those are my only options . http://stackoverflow.com/questions/165938/how-can-i-debug-a-bat-script/165943#165943 Comment by Vhaerun on How can I debug a .BAT script? Vhaerun 2008-10-03T06:56:50Z 2008-10-03T06:56:50Z Writing the result to a file doesn't help all that much , there are many scripts that get called , and also , there are many executables that get executed . http://stackoverflow.com/questions/148513/does-nmake-have-build-tasks/148585#148585 Comment by Vhaerun on does nmake have build tasks ? Vhaerun 2008-09-29T13:29:28Z 2008-09-29T13:29:28Z Our sources are splitted in directories , and for each one we have a separate makefile . I tried adding commands to them , but they don't get executed. Any hints? http://stackoverflow.com/questions/138981/how-do-i-test-if-a-file-is-a-directory-in-a-batch-script/138995#138995 Comment by Vhaerun on How do I test if a file is a directory in a Batch script? Vhaerun 2008-09-26T12:17:27Z 2008-09-26T12:17:27Z This doesn't work . http://stackoverflow.com/questions/138819/batch-find-file-extension/138847#138847 Comment by Vhaerun on batch find file extension Vhaerun 2008-09-26T11:30:16Z 2008-09-26T11:30:16Z This is it! Thank you very much ! http://stackoverflow.com/questions/138497/batch-scripting-iterating-over-files-in-a-directory/138540#138540 Comment by Vhaerun on batch scripting iterating over files in a directory Vhaerun 2008-09-26T11:19:11Z 2008-09-26T11:19:11Z An idiot developer saw batch files and thought that they were the cure for all of our problems .