User Vhaerun - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T04:10:23Zhttp://stackoverflow.com/feeds/user/11234http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/93915/conferences-that-offer-videos-for-downloading7Conferences that offer videos for downloading?Vhaerun2008-09-18T16:02:00Z2009-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-sdl0ubuntu trouble with SDLVhaerun2008-09-30T18:32:21Z2009-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-script2How do I test if a file is a directory in a Batch script?Vhaerun2008-09-26T11:57:24Z2009-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-directory3batch scripting iterating over files in a directoryVhaerun2008-09-26T09:42:34Z2009-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-script5How can I debug a .BAT script?Vhaerun2008-10-03T06:46:53Z2009-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-code2open solaris code vs solaris codeVhaerun2008-09-22T17:40:01Z2009-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-lnk11022linker out of memory LNK1102Vhaerun2008-10-06T12:03:02Z2009-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-names1C++ : Finding out decorated namesVhaerun2008-10-10T06:35:59Z2009-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-resources0where can I find vim-enhanced resources?Vhaerun2008-09-16T17:29:27Z2009-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-extension3batch find file extensionVhaerun2008-09-26T11:15:30Z2009-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-lisp2centering text in common lispVhaerun2008-10-17T19:27:24Z2009-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-question0Platform Builder command line building questionVhaerun2008-09-22T08:52:51Z2009-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-file2Exporting DLL C++ Class , question about .def fileVhaerun2008-10-09T07:13:54Z2009-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#705810Answer by Vhaerun for What's the best online source to learn Perl?Vhaerun2008-09-16T09:09:26Z2008-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-calls0how could I intercept linux sys calls?Vhaerun2008-09-16T06:40:20Z2008-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-issues2Java: Writing a DOM to an XML file (formatting issues)Vhaerun2008-10-02T09:10:33Z2008-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-hack3C++ dynamic class ( dynamic hack )Vhaerun2008-10-24T21:52:39Z2008-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->addField("newField",44); // we add the field to the class and we assign an initial value to it
printf("%d",ob->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><class name="MyClass">
<member name="field1" />
<member name="field2" />
</class>
</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#2360410Answer by Vhaerun for How to realize a diff function?Vhaerun2008-10-25T07:12:53Z2008-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 < 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-inter2what is the difference between using the visitor design pattern or using an interface ?Vhaerun2008-10-11T18:02:34Z2008-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#2135601Answer by Vhaerun for C++ : Finding out decorated namesVhaerun2008-10-17T19:32:59Z2008-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#1945481Answer by Vhaerun for Programmer's career pathVhaerun2008-10-11T20:09:03Z2008-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#1866380Answer by Vhaerun for Program only crashes as release build -- how to debug?Vhaerun2008-10-09T10:14:35Z2008-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#1864281Answer by Vhaerun for Exporting DLL C++ Class , question about .def fileVhaerun2008-10-09T08:39:46Z2008-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-testing2Which of these scripting languages is more appropriate for pen-testing?Vhaerun2008-09-16T20:11:22Z2008-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-tasks0does nmake have build tasks ?Vhaerun2008-09-29T12:44:39Z2008-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-netbeans0How can I add fonts to netbeans? [closed]Vhaerun2008-09-27T12:02:39Z2008-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#1437310Answer by Vhaerun for How can I add fonts to netbeans?Vhaerun2008-09-27T14:45:53Z2008-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#1434947Answer by Vhaerun for Can Greasemonkey cause the displayed title to changeVhaerun2008-09-27T12:04:33Z2008-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#1328820Answer by Vhaerun for I have a gem installed but require 'gemname' does not work. Why?Vhaerun2008-09-25T12:04:15Z2008-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#1139540Answer by Vhaerun for Platform Builder command line building questionVhaerun2008-09-22T09:18:27Z2008-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#235503Comment by Vhaerun on C++ dynamic class ( dynamic hack )Vhaerun2008-10-25T09:11:47Z2008-10-25T09:11:47ZThank you paercebal ! Would it be possible to overload -> to achieve the effect I was talking about ?http://stackoverflow.com/questions/235376/c-dynamic-class-dynamic-hack/235417#235417Comment by Vhaerun on C++ dynamic class ( dynamic hack )Vhaerun2008-10-25T08:43:35Z2008-10-25T08:43:35ZCould you please post a little snippet that works ?http://stackoverflow.com/questions/213538/centering-text-in-common-lisp/213566#213566Comment by Vhaerun on centering text in common lispVhaerun2008-10-17T19:41:11Z2008-10-17T19:41:11ZThanks Nathan! I appreciate it !http://stackoverflow.com/questions/213538/centering-text-in-common-lisp/213566#213566Comment by Vhaerun on centering text in common lispVhaerun2008-10-17T19:37:49Z2008-10-17T19:37:49ZThank 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-interComment by Vhaerun on what is the difference between using the visitor design pattern or using an interface ?Vhaerun2008-10-11T19:54:53Z2008-10-11T19:54:53ZI'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#186834Comment by Vhaerun on Exporting DLL C++ Class , question about .def fileVhaerun2008-10-10T06:47:52Z2008-10-10T06:47:52ZThank you very much ! This may be the solution I've been looking for .http://stackoverflow.com/questions/190326/c-finding-out-decorated-names/190333#190333Comment by Vhaerun on C++ : Finding out decorated namesVhaerun2008-10-10T06:45:11Z2008-10-10T06:45:11ZI know that UndecorateSymbolName() exists . I wanted to know if there was some DecorateSymbolName() :)http://stackoverflow.com/questions/174013/linker-out-of-memory-lnk1102/174027#174027Comment by Vhaerun on linker out of memory LNK1102Vhaerun2008-10-06T12:22:36Z2008-10-06T12:22:36ZWe're preferring to keep that as a last option.http://stackoverflow.com/questions/174013/linker-out-of-memory-lnk1102Comment by Vhaerun on linker out of memory LNK1102Vhaerun2008-10-06T12:10:40Z2008-10-06T12:10:40Zwe'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#165942Comment by Vhaerun on How can I debug a .BAT script?Vhaerun2008-10-03T07:12:45Z2008-10-03T07:12:45ZI guess those are my only options .http://stackoverflow.com/questions/165938/how-can-i-debug-a-bat-script/165943#165943Comment by Vhaerun on How can I debug a .BAT script?Vhaerun2008-10-03T06:56:50Z2008-10-03T06:56:50ZWriting 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#148585Comment by Vhaerun on does nmake have build tasks ?Vhaerun2008-09-29T13:29:28Z2008-09-29T13:29:28ZOur 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#138995Comment by Vhaerun on How do I test if a file is a directory in a Batch script?Vhaerun2008-09-26T12:17:27Z2008-09-26T12:17:27ZThis doesn't work .http://stackoverflow.com/questions/138819/batch-find-file-extension/138847#138847Comment by Vhaerun on batch find file extensionVhaerun2008-09-26T11:30:16Z2008-09-26T11:30:16ZThis is it! Thank you very much !http://stackoverflow.com/questions/138497/batch-scripting-iterating-over-files-in-a-directory/138540#138540Comment by Vhaerun on batch scripting iterating over files in a directoryVhaerun2008-09-26T11:19:11Z2008-09-26T11:19:11ZAn idiot developer saw batch files and thought that they were the cure for all of our problems .