User MasterPeter - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T06:55:05Zhttp://stackoverflow.com/feeds/user/81520http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1809725/ntfs-alternate-data-streams0NTFS alternate data streamsMasterPeter2009-11-27T16:47:12Z2009-11-30T10:43:17Z
<p>Today I have seen this weird magic NTFS system supports: each file can have multiple data streams. Basically one could have a file <code>a.txt</code> of 0b size but there can be any number of bytes hidden in a separate data stream for that file. This is strictly NTFS related magic and I don't see any noble reason for having these streams around. You can look for NTFS streams with the help of the <code>streams</code> utility from Sysinternals. This will show you that basically every one of those nasty <code>thumbs.db</code> files comes with an extra data stream.</p>
<p>Okay, now I have seen this magic work on a Windows NT4 system, streams added to files, copied over, deleted (with the help of the aforementioned utility), but I am now trying this at home on my Win XP system, but although I can detect the existing streams, I can't display their contents, can't create new ones, or very much anything when I use the <code>filename:streamname</code> syntax.</p>
<p>I get this error:</p>
<blockquote>
<p>The filename, directory name, or
volume label syntax is incorrect.</p>
</blockquote>
<p>Example:
Output from the streams utility:</p>
<pre><code>c:\DOWNLOADS>streams.exe -s .
Streams v1.56 - Enumerate alternate NTFS data streams
Copyright (C) 1999-2007 Mark Russinovich
Sysinternals - www.sysinternals.com
c:\DOWNLOADS\1013.pdf:
:Zone.Identifier:$DATA 46
c:\DOWNLOADS>type 1013.pdf:Zone.Identifier
The filename, directory name, or volume label syntax is incorrect.
</code></pre>
<p>Why can't I display the contents of the alternate data stream?</p>
<p>Looking at the Microsoft documentation on "<a href="http://support.microsoft.com/kb/105763/en-us?FR=1&PA=1&SD=HSCH" rel="nofollow">How To Use NTFS Alternate Data Streams</a>", I can see that this applies to my operating system, although they do mention that these streams will not be supported in the future. Anyone can shed any light on this?</p>
http://stackoverflow.com/questions/1799670/morris-internet-worm-anyone-knows-how-did-they-manage-to-stop-it0Morris Internet Worm - anyone knows how did they manage to stop it?MasterPeter2009-11-25T20:14:50Z2009-11-25T20:42:55Z
<p>Hi there,</p>
<p>yes, this <em>is</em> a homework-type question but could you please help me out?</p>
<p>In a very short presentation on the topic of <em>Morris Internet Worm</em> I am supposed to list the steps taken to stop the worm from spreading. My pp slides are now approaching the final state, but before I go and say that <em>this</em> or <em>that</em> is how they stopped the worm, I would like to check with you. I heard that the worm hit the news big time, and caused quite a lot of stir in the US at that time, so I was hoping to find a few people from the field of computing who could provide some info.</p>
<p>Basically, I keep finding in various reports and articles, that the main weakness of the worm was the <code>pleasequit</code> variable which was not initialised properly and therefore it was sufficient to set this variable to -1 to stop the worm. Was this the final blow for the worm? Was this that effectually stopped it from spreading?</p>
<p>I found the following report, and others, mention the pleasequit var: (<a href="http://www.ee.ryerson.ca/~elf/hack/iworm.html" rel="nofollow">taken from this website</a>):</p>
<blockquote>
<p>The worm uses a variable called
'pleasequit' but doesn't correctly
initialize it, so some folks added a
module called _worm.o to the C
library, which is produced from:</p>
<pre><code>int pleasequit = -1;
</code></pre>
<p>the fact that this value is set to -1
will cause it to exit after one
iteration.</p>
</blockquote>
http://stackoverflow.com/questions/1742640/exporting-to-excel-the-simple-way-but-not-csv1Exporting to Excel the simple way (but not CSV)MasterPeter2009-11-16T14:51:58Z2009-11-19T06:30:18Z
<p>Yesterday I found this <a href="http://www.rgagnon.com/javadetails/java-0586.html" rel="nofollow">How-To</a> on exporting data to Excel spreadsheets by simply producing HTML. Seemed like a straightforward way of exporting cells with formatting, what one can not achieve using just CSV format.</p>
<p>My idea was to process some data in a Java app, export the results to Excel spreadsheet and make use of Excel's capabilities to further analyse the data, draw charts etc... (avoid re-implementing Excel's powerful features). However, before I export the data I wanted to color the background of some of the cells. The 'conditional formatting' feature of Excel would not suffice (plus, I don't want to do that manually). I find it rather convenient to prepare the spreadsheet with all formatting in the Java app and go from there in Excel.</p>
<p>The approach mentioned in the <a href="http://www.rgagnon.com/javadetails/java-0586.html" rel="nofollow">How-To</a>, is simple and works well, except for two problems. I was hoping some of you may have previous experience with this and will be able to provide some light into this issue.</p>
<ol>
<li><p>Coloring the individual cells like <code><td bgcolor="#ff2323"></code> will look exactly the way I want when I open the XLS file in Firefox, but Excel changes the colors to what I believe they call 'web-safe' color palette. Which means, instead of having 256 different shades of red, I get a 'red', 'fuchsia', 'pink', 'orange', 'light yellow' and 'white'. Is there any way to stop this color conversion from happening?</p></li>
<li><p>When I open the XLS file (which in reality is just HTML on the inside), all looks good but the thin grey lines separating individual cells are gone and I can't figure out how to 'turn them on'. What's with that?</p></li>
</ol>
<p>Problem 1 is the main issue which I would really like to solve.</p>
http://stackoverflow.com/questions/1735870/simple-statistics-java-packages-for-calculating-mean-standard-deviation-etc2Simple statistics - Java packages for calculating mean, standard deviation, etc...MasterPeter2009-11-14T22:43:42Z2009-11-15T10:40:02Z
<p>Could you please suggest any simple Java statistics packages?</p>
<p>I don't necessarily need any of the advanced stuff. I was quite surprised that there does not appear to be a function to calculate the Mean in the <code>java.lang.Math</code> package...</p>
<p>What are you guys using for this?</p>
<p><hr></p>
<p><strong>EDIT</strong></p>
<p>Regarding:</p>
<blockquote>
<p>How hard is it to write a simple class
that calculates means and standard
deviations?</p>
</blockquote>
<p>Well, not hard. I only asked this question after having hand-coded these. But it only added to my Java frustration not to have these simplest functions available at hand when I needed them. I don't remember the formula for calculating stdev by heart :)</p>
http://stackoverflow.com/questions/1712172/whats-your-take-on-the-programming-language-go/1715315#171531512Answer by MasterPeter for What's your take on the programming language Go?MasterPeter2009-11-11T13:55:27Z2009-11-11T13:55:27Z<p>Hey - this looks like a real smasher!</p>
<blockquote>
<p>… concurrent</p>
<p>Go promotes writing systems and
servers as sets of lightweight
communicating processes, called
goroutines, with strong support from
the language. Run thousands of
goroutines if you want—and <strong>say
good-bye to stack overflows</strong>.</p>
</blockquote>
<p>[<a href="http://golang.org/" rel="nofollow">Go website</a>]</p>
<p>Could <em>Go</em> really be the end of this wonderful experience? I will miss S.O.! SO MUCH!</p>
http://stackoverflow.com/questions/501208/what-projects-do-you-feel-sorry-for/1715246#17152463Answer by MasterPeter for What projects do you feel sorry for?MasterPeter2009-11-11T13:43:12Z2009-11-11T13:43:12Z<p><strong>Delphi</strong> </p>
<p>I love the product. Sadly, it is now in the shadows. Some people keep predicting increase in Delphi popularity in the future, but I am just afraid it won't happen.</p>
http://stackoverflow.com/questions/1713950/java-unable-to-access-static-singleton-method/1714000#17140000Answer by MasterPeter for Java: unable to access static singleton methodMasterPeter2009-11-11T09:16:39Z2009-11-11T09:16:39Z<p>I would try typing getInstance() by hand, as others have suggested in their comments. That should work. The reason I believe your IDE will not show you the method after typing the dot (.) could be simply because of the following return true. It's reading</p>
<pre><code>ReportingService rs = ReportingService.return true;
</code></pre>
<p>which it considers broken code and therefore will not provide code-completion.</p>
http://stackoverflow.com/questions/1701788/how-to-convert-string-to-arraylist/1701827#17018270Answer by MasterPeter for How to convert string[] to ArrayList?MasterPeter2009-11-09T15:39:28Z2009-11-09T15:39:28Z<p>in Java you would do </p>
<pre><code>new ArrayList(Arrays.asList(stringArray));
</code></pre>
<p>Sorry, I don't know about C#, but I'd suggest you have a look at the various ArrayList constructors and at some asList() method which would turn array to a List.</p>
http://stackoverflow.com/questions/1654272/java-generics-please-help-i-have-no-previous-experience-with-this0Java Generics, please help, I have no previous experience with this...MasterPeter2009-10-31T12:43:35Z2009-10-31T20:58:42Z
<p>Could you please explain why this code is not syntactically correct?</p>
<pre><code>private void addEditor(final Class<? extends FieldEditor> fieldEditorClass, final Composite parent, final PropertyKey propertyKey, final String displayName){
final Composite composite = new Composite(parent, SWT.NULL);
composite.setLayout(new GridLayout());
composite.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL | GridData.GRAB_HORIZONTAL));
final FieldEditor fieldEditor = new >>fieldEditorClass<< (propertyKey.toString(), displayName, composite);
initializeFieldEditor(fieldEditor);
}
</code></pre>
<p>on line 5, the part between >> and << is underlined in red and says, 'can not be resolved to a type'.</p>
<p>I hope you can see what I am trying to achieve here. By passing a SomeEditor.class to this method I then want to create an object of this class and initialise it. How can I fix the problem on line 5?</p>
<p><hr /></p>
<p>Basically, I want to parametrise the concrete FieldEditor class being instantiated by this code. I have several methods in my code that are essentially identical, except that each instantiates a different class of FieldEditor. </p>
http://stackoverflow.com/questions/1637619/php-file-download-box/1637659#16376591Answer by MasterPeter for php - file download boxMasterPeter2009-10-28T14:34:28Z2009-10-28T14:34:28Z<p>You have no power over users' settings such as which file type is opened by which application. They would have to go to their settings and change the file association. However, bear in mind not everyone has Excel installed, so it's not a good idea to force the user to open the csv file in this particular application.</p>
<p>I also don't think you can disable the Open option, this is also dictated by the web browser's configuration whether it will or will not display the window or will it launch the associated application directly etc... it seems you're out of luck in your particular case.</p>
http://stackoverflow.com/questions/1588242/connected-to-mysql-instance-once-or-twice0Connected to mysql instance ONCE or TWICE?MasterPeter2009-10-19T11:50:03Z2009-10-19T12:51:54Z
<p>Hello there, I was wondering whether the following command (from a .bat script):</p>
<p>(1) connects to the mysql instance once and then executes script#1 followed by script#2, or (2) does it reconnect for each of the sql scripts?</p>
<pre><code>mysql -B -b -h%HOST% -u%USER% -p%PASSWORD% %SCHEMA% < "scripts\create_and_populate.sql" < "scripts\update_joomla_article.sql"
</code></pre>
<p>I have a bad feeling it reconnects. If so, how would I go about changing the .bat script to execute one sql script after another without reconnecting. Cheers :)</p>
<p><hr /></p>
<p><strong>Edit:</strong></p>
<p>I only found out recently, to my great shame :-Z, that this command does not actually work as I expected.</p>
<p><code>mysql ... < script1 < script2 < script3</code> appeared to work at first, until I spotted that only the <em>last</em> script in the chain is actually executed. Still, I will welcome any suggestions as to How to get this done in a different way that what Colin Pickard suggested.</p>
http://stackoverflow.com/questions/1553980/margin-0-auto-seems-to-work-fine-in-chrome-ff-but-again-ie-disagrees1margin: 0 auto; Seems to work fine in Chrome/FF but, again, IE disagrees...MasterPeter2009-10-12T11:12:56Z2009-10-12T11:37:51Z
<p>On my Joomla Website, I am using a template which uses the following CSS rule to make the content pane centred:</p>
<pre><code>clear:both;
margin:0 auto;
width:920px;
</code></pre>
<p>This seems to work perfectly well in FF/Chrome, but when loaded in IE, all is glued to the left side of the window. What's the issue with this? margin: 0 auto; seems like a sensible, straight-forward rule. Why does IE not obey?</p>
http://stackoverflow.com/questions/1514488/some-html-tags-e-g-iframe-and-javascript-in-joomla-1-5-articles-are-automatica0Some HTML tags (e.g. IFRAME) and Javascript in Joomla 1.5 articles are automatically removed when using the WYSIWYG editorMasterPeter2009-10-03T18:32:35Z2009-10-05T02:32:26Z
<p>When using a WYSIWYG editor in Joomla 1.5 to create website content I am not able to freely insert HTML tags, such as IFRAME as the HTML tags will be automatically removed on saving the article. I can either configure Joomla not to use a WYSIWYG editor which makes editing articles a bit of a pain, or I can force the HTML code into the article using MySQL Query Browser and altering the article content directly in the site's database. Doing this is not only cumbersome but also ineffective, because every time someone edits the article from the Joomla back end WYSIWYG editor, the inserted tags will be removed by the editor again.</p>
<p>Is there a way of inserting an IFRAME (or perhaps JavaScript) into a Joomla 1.5 article, without turning off the WYSIWYG editor or hacking away at the database?</p>
http://stackoverflow.com/questions/1515876/how-to-set-iframes-background-color-to-the-bg-color-of-its-parent-document0How to set IFRAME's background color to the BG-color of it's parent document?MasterPeter2009-10-04T08:04:49Z2009-10-04T08:40:55Z
<p>I am working on a Joomla 1.5 website and a little self-contained php application, which I want to show within an IFRAME inserted in an article. The template I am using for the website has a dark grey background and the IFRAME shows grey background when loaded in Firefox (I don't quite know <em>why</em> this is so, but I like it like this). However, when the page is loaded in IE, the IFRAME has white background (understandably).</p>
<p>How can I make the IFRAME copy the background color of its parent document also in IE?</p>
<p><hr /></p>
<p>Also, I have another unanswered <a href="http://stackoverflow.com/questions/1514488/iframes-and-wysiwyg-editor-in-joomla-1-5">question related to IFRAME usage and Joomla 1.5</a>, which I would like to point your attention to.</p>
http://stackoverflow.com/questions/1515885/read-next-record/1515901#15159010Answer by MasterPeter for Read Next RecordMasterPeter2009-10-04T08:19:01Z2009-10-04T08:19:01Z<p>Exactly as <em>mjv</em> already mentioned, you want to tell MySQL to skip over rows that have a NULL value in a particular column. As it stands in your question 'When a null value is read, I need the MySQL to read the next record.' : This is exactly what MySQL <em>will do</em> when you tell it not to include NULLs in the result set by specifying the WHERE condition.</p>
<p>Have fun hacking :)</p>
http://stackoverflow.com/questions/756367/reading-writing-machine-code5Reading/Writing machine codeMasterPeter2009-04-16T14:26:28Z2009-09-25T05:15:38Z
<p>I am not well acquainted to the compiler magic. The act of transforming human-readable code (or the not <em>really</em> readable Assembly instructions) into machine code is, for me, rocket science combined with sorcery.</p>
<p>I will narrow down the subject of this question to Win32 executables (.exe). When I open these files up in a specialised viewer, I can find strings (usually 16b per character) scattered at various places, but the rest is just garbage. I suppose the unreadable part (majority) is the machine code (or maybe resources, such as images etc...).</p>
<p>Is there any straightforward way of reading the machine code? Opening the exe as a file stream and reading it byte by byte, how could one turn these individual bytes into Assembly? Is there a straightforward mapping between these <em>instruction bytes</em> and the Assembly instruction?</p>
<p>How is the .exe written? Four bytes per instruction? More? Less? I have noticed some applications can create executable files just like that: for example, in ACD See you can export a series of images into a slideshow. But this does not necessarily have to be a SWF slideshow, ACD See is also capable of producing EXEcutable presentations. How is that done?</p>
<p>How can I understand what goes on inside an EXE file?</p>
http://stackoverflow.com/questions/1268410/how-to-tile-a-image-in-timage/1268542#12685422Answer by MasterPeter for How to tile a Image in TImage?MasterPeter2009-08-12T20:29:18Z2009-08-12T20:35:52Z<p>You could set the <code>canvas.brush.bitmap :=</code> to the image of the tile. then <code>canvas.fillrect(canvas.cliprect)</code> to tile the whole canvas with the selected tile image. I haven't done it in a long time and I am not able to check if this is really how it's done in Delphi right now, but I am pretty sure this is what you're after.</p>
http://stackoverflow.com/questions/1011916/chained-invocation-in-java-74Chained invocation in Java 7?MasterPeter2009-06-18T10:14:05Z2009-07-26T10:32:17Z
<p>I was just reading a <a href="http://puredanger.com/techfiles/090204/Java7Preview.pdf" rel="nofollow">Java7 preview presentation (pdf)</a> and there was a slide on <em>Chained Invocation</em>. Here is the example used in the slide:</p>
<pre><code>// Construction with setters
DrinkBuilder margarita = new DrinkBuilder();
margarita.add(“tequila”);
margarita.add(“orange liqueur”);
margarita.add(“lime juice”);
margarita.withRocks();
margarita.withSalt();
Drink drink = margarita.drink();
// Construction with chained invocation
Drink margarita = new DrinkBuilder()
.add(“tequila”)
.add(“orange liqueur”)
.add(“lime juice”)
.withRocks()
.withSalt()
.drink();
</code></pre>
<p>And I have mixed feelings about this. One shouldn't chain too many method invocations into one statement. OTOH, writing <strong>margarita.</strong>this() and <strong>margarita.</strong>that() isn't too convenient either.</p>
<p>Now, I am coming to Java from Delphi world. And in Delphi there is the <strong>with</strong> language construct. This is cherished by a few and loathed by many (or is it the other way around?). I find <strong>with</strong> to be more elegant than the idea of chained invocation (which I believe works on the basis of <code>void</code> method returning reference to object on which it has been invoked - and this is the part I don't like, as void should return <em>nothing</em>).</p>
<p>I would appreciate the <strong>with</strong> language feature being adopted by Java, so the example code could be written like so:</p>
<pre><code>Drink margarita = null;
with (new DrinkBuilder()) {
add(“tequila”);
add(“orange liqueur”);
add(“lime juice”);
withRocks();
withSalt();
margarita = drink();
}
</code></pre>
<p>Am I the only one who would prefer this solution to the chained invocation? Anyone else feels that <strong>with</strong> could be a useful extension to Java language? (Reminds me of someone's question about the need of "Java++"...)</p>
http://stackoverflow.com/questions/810957/maven-release-plugin-war-stories6Maven Release Plugin war storiesMasterPeter2009-05-01T10:44:36Z2009-07-24T18:26:52Z
<p>Hello,</p>
<p>I have been given the task of exploring the maven-release-plugin before we try using it on our project. As of now, the releases are done manually on request. This process involves (skip this part if you're not interested, it's just to give you an idea):</p>
<ul>
<li>In the head, open the base POM file:
<ul>
<li>Increment the numbering of the \project\version element, but keep the -SNAPSHOT suffix.</li>
<li>In the \project\dependencyManagement element, look for all the project dependencies that are being released in this build, and increment the version number references \project\dependencyManagement\dependencies\dependency\version, but keep the -SNAPSHOT suffix.</li>
</ul></li>
<li>Open each sub-module's POM file in turn and increment the numbering of the \project\version element, but keep the -SNAPSHOT suffix.</li>
<li>In a command prompt, navigate to the root of the head codebase and run mvn clean install.</li>
<li>Ensure that all the version dependencies work correctly, and the full test suite runs successfully. </li>
<li>Commit changes to the head.</li>
</ul>
<p>As you can see, this is a lengthy and dull process which cries out for automation. I have found this <a href="http://stackoverflow.com/questions/782301/maven-release-via-hudson">question on SO</a> where people recommend doing releases manually, which is kind of against what I am trying to achieve.</p>
<h3>Automate this</h3>
<p>We would like to automate this process using the maven-release-plugin but we are a bit wary of doing this. My research has led me to believing that the plugin should work reliably and do the job.</p>
<p>I have seen the <code>-DdryRun=true</code> option for the <code>release:prepare</code> target which also makes the impression that it can be tested safely beforehand. Also the Maven <code>release:rollback</code> target seems to provide a reasonable means of reconciling from an error. But I am still not sure. Not as sure as I would like to be about this plugin.</p>
<p>My question is, do you have any war stories related to the maven-release-plugin? Any good/bad experience with it? Is the plugin robust enough to trust it?</p>
<pre><<<EDIT</pre>
<p>I also heard that the plugin integrates well with the SCM tools such as SVN, CVS. We are currently using CVS, and would like the plugin to perform the following tasks as well:</p>
<ul>
<li>tag the release in CVS with the appropriate release number</li>
<li>create branches in CVS with appropriate names</li>
<li>should allow us to do a release from a branch with minimal config hassle</li>
</ul>
<p>Have you got experience with this? Does it work well? Is it reliable?</p>
<pre>>>></pre>
http://stackoverflow.com/questions/721526/how-to-force-the-ginfowindow-to-shorten-its-tail2How to force the GInfoWindow to shorten its tail?MasterPeter2009-04-06T13:49:32Z2009-07-07T21:27:07Z
<p>In my Google Maps application, which is supposed to be run on mainly on iPhones, hence the 480/320 window resolution, I am displaying some "stuff" in the GInfoWindow information bubbles. The problem is that, sometimes the bubble is too filled with contents that it doesn't fit onto the screen quite the way I'd like it to.</p>
<p>Here's an example</p>
<p><img src="http://www.perhac.com/Capture.PNG" alt="Too big a bubble" /></p>
<p>
It's not exactly a catastrophe, but as in this case, the marker was pushed slightly off screen and the top of the bubble is not completely displayed too. But then I noticed the "tail" of the bubble (connects the info window to the marker) is toooooooo long.</p>
<p>Does anyone know of a simple way of making it shorter? Is there some property in <code>GInfoWindowOptions</code> that could help me with this? I don't thing <code>pixelOffset</code> is the way to go...</p>
<p><strong>Edit</strong></p>
<p><hr /></p>
<p>This is going to make the question awfully long, but I want you to notice that in the images downloaded from Google, there <em>is</em> a short tail, AND its short shadow... That's why I still believe there must be a way of using that one...</p>
<p><img src="http://maps.google.com/intl/en%5FALL/mapfiles/iw3.png" alt="bubble image" /></p>
<p><img src="http://maps.google.com/intl/en%5FALL/mapfiles/iws3.png" alt="shadows" /></p>
http://stackoverflow.com/questions/817658/delphi-how-to-re-enable-a-debugger-exception-notification1Delphi - How to re-enable a debugger exception notification?MasterPeter2009-05-03T18:17:16Z2009-06-24T19:58:58Z
<p>I opened a project (created in D2007/08) in D2009 and it would compile but throw tons of exceptions when executed. Strange thing, but I know the project's a mess, so I want to go ahead and fix it. Well, not really fix all of it, just make it work would be enough.</p>
<p>When I ran it, I got some Debugger Exception Notification (the little message dialogue with Break, Continue, Help buttons) and I wanted to proceed and see if would perhaps work when skip over the exception. I checked the little "Ignore this exception type" check box in the bottom left corner and clicked Continue. Now I no longer get the Exception Notification, but the application still doesn't run. I just get a couple of vague error boxes and have very little idea what's going on.</p>
<p>I would like to re-enable the exception type I previously selected to be ignored. But I can't find the option anywhere. Where should I look for this? Can anyone help?</p>
http://stackoverflow.com/questions/431119/on-your-very-first-program-which-construct-hooked-you-on-programming/1021320#10213200Answer by MasterPeter for On your very first program, which construct hooked you on programming?MasterPeter2009-06-20T09:41:26Z2009-06-20T09:41:26Z<p>In QBASIC there was the command PLOT, and when I first wrote a program that would draw a spiral on screen, there came the feeling of accomplishment. And I guess that was when I understood computers can do awesome things, and I stuck with them for the next couple of decades.</p>
<p>(Nostalgia. I can still remember the lime-green spiral on the black screen...)</p>
http://stackoverflow.com/questions/770207/how-to-avoid-the-ding-sound-when-escape-is-pressed-while-a-tedit-is-focused2How to avoid the ding sound when Escape is pressed while a TEdit is focused?MasterPeter2009-04-20T21:37:36Z2009-06-18T01:06:37Z
<p>In code I have developed some years ago I have been using this a lot to close the current form on pressing the Escape key at any moment:</p>
<pre><code>procedure TSomeForm.FormKeyPress(Sender: TObject; var Key: Char);
begin
if key = #27 then close;
end;
</code></pre>
<p>This behaviour is defined for the TForm. The form's <code>KeyPreview</code> property is be set to <code>True</code> to let the form react to key presses before any other components. It all works perfectly well for the best part of the program, however, when the Escape key is pressed while a TEdit component is focused a sound (a <em>ding</em> sound used by Windows to signify invalid operation) is issued. It still works fine but I have never quite managed to get rid of the sound.</p>
<p>What's the problem with this? </p>
<p><hr /></p>
<p>Steps to recreate:</p>
<ul>
<li>new VCL Forms application, set the form's KeyPreview to true</li>
<li><p>on the Events tab double-click the onKeyPress event and enter dummy code:</p>
<p>if key=#27 then ;</p></li>
<li><p>add a TListBox, TCheckBox, TEdit to the form and run the application</p></li>
<li>in the application try pressing Esc and NOTHING happens, as specified by the dummy code</li>
<li>focus the TEdit and press Esc. Nothing happens but the sound is played.</li>
</ul>
http://stackoverflow.com/questions/1003381/difference-between-like-and-in-mysql/1003453#10034530Answer by MasterPeter for Difference between LIKE and = in MYSQL?MasterPeter2009-06-16T19:17:06Z2009-06-16T19:22:13Z<p>Looks very much like taken out from a PHP script. The intention was to pattern-match the contents of variable <code>$foo</code> against the <code>foo</code> database field, but I bet it was supposed to be written in <em>double quotes</em>, so the contents of $foo would be fed into the query.</p>
<p><strong>As you put it, there is NO difference.</strong></p>
<p>It could potentially be slower but I bet MySQL realises there are no wildcard characters in the search string, so it will not do LIKE patter-matching after all, so really, no difference.</p>
http://stackoverflow.com/questions/997868/what-are-the-advantages-to-putting-your-javascript-in-a-php-file/998137#9981371Answer by MasterPeter for What are the advantages to putting your Javascript in a .php file?MasterPeter2009-06-15T20:12:03Z2009-06-15T20:12:03Z<p>Agree with tj111. Apart from what tj mentioned, I also found php-generated javascripts a great weapon to fight the browser's caching tricks. Not that long ago I was cursing the whole javascript for its being constantly cached by the browser. Refreshing the page helped me not, had to clear the whole cache in order to force the browser to reload the javascript files. As soon as I built a php wall in front of my javascripts:</p>
<p>fake_js.php:</p>
<pre><code><?php
header('Content-type: text/javascript')
include('the_real_javascript.js');
?>
</code></pre>
<p>A fresh new javascript would always show up at the client side. However this approach is obviously only good in the development phase, when it can save the developer quite some headache to have <em>the correct</em> javascript loaded in the browser. Of course when connecting to localhost, the penalty of repeatedly loading the same file is not as big.</p>
<p>In a live web application/site client-side caching is welcome to reduce network traffic and overall server load.</p>
http://stackoverflow.com/questions/996864/help-with-sqlplus-please-how-to-make-sqlplus-startup-with-define-off-initially0Help with SQLPLUS please? How to make SQLPLUS startup with DEFINE `OFF` initially?MasterPeter2009-06-15T15:49:21Z2009-06-15T15:56:47Z
<p>I have a batch script that invokes PLSQL with connection details, which works fine but I still have to explicitly <code>SET DEFINE OFF</code> when I connect. I would like to enhance my simple batch script to pass the SET DEFINE OFF command to SQLPLUS so that once I am connected, I will no longer have to issue that command manually.</p>
<pre><code>echo set define off | sqlplus user/pwd@tnsname
</code></pre>
<p>This does not work. I am logged in, and logged out again immediately (output follows):</p>
<p><hr /></p>
<p>SQL*Plus: Release 10.2.0.3.0 - Production on Mon Jun 15 16:43:17 2009<br />
Copyright (c) 1982, 2006, Oracle. All Rights Reserved. </p>
<p>Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options</p>
<p><strong>SQL> SQL> Disconnected from Oracle Database</strong> 10g Enterprise Edition Release 10.2.
0.4.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options</p>
<p>D:></p>
http://stackoverflow.com/questions/995999/stuck-trying-to-migrate-two-tables-from-one-db-to-another-db/996199#9961990Answer by MasterPeter for Stuck trying to migrate two tables from one DB to another DBMasterPeter2009-06-15T13:45:34Z2009-06-15T13:45:34Z<p>I had the wonderful opportunity to be dug deep in migration scripts last summer. I was using Oracle's PL/SQL for the task. But you did not mention what technology are you using? What are you migrating the data into? SQL Server? Oracle? MySQL?</p>
<p>The approach is to INSERT a row from table1 RETURING the new primary key generated (probably by a SEQUENCE [in Oracle]) and then INSERT the dependent records from table2, changing their foreign key value to the value returned by the first INSERT. Can't help you any better unless you can specify what DBMS are you migrating data into.</p>
http://stackoverflow.com/questions/983086/when-to-comment-code-the-other-when/983139#9831391Answer by MasterPeter for When To Comment Code (The Other "When")MasterPeter2009-06-11T19:29:52Z2009-06-13T07:54:28Z<p>I am going to sing the same song again: do give "Clean Code" (Robert C. Martin) a read. As I advocated <a href="http://stackoverflow.com/questions/787718/learn-proper-programming-syles/787734#787734">in this post</a></p>
<p>There's an excellent couple of chapters on naming conventions, code readability, and also COMMENTS. Well supported advice on how and when to write comments in your code.</p>
http://stackoverflow.com/questions/975521/how-to-set-a-variable-to-the-path-of-parent-directory-on-windows0How to SET a variable to the path of parent directory on windows?MasterPeter2009-06-10T13:18:25Z2009-06-11T01:43:03Z
<p>Hello,</p>
<p>Struggling with command line again, I have figure out that I can store the current working directory in a variable like so:</p>
<pre><code>SET current=%cd%
</code></pre>
<p>How would I set parent though? <code>SET parent=%..%</code> does not work, as it echoes <code>%..%</code></p>
<p>Basically, calling a batch script <code>C:\a\b\myscript.bat</code> with the following contents:</p>
<pre><code>@echo off
set current=%cd%
echo %current%
</code></pre>
<p>prints <code>C:\a\b</code> and I should like to <em>set</em> a variable <code>parent</code> so that it would print <code>C:\a</code> without changing the current working directory to <code>..</code></p>
<p>Is this possible?</p>
http://stackoverflow.com/questions/972259/code-metrics/972671#9726710Answer by MasterPeter for Code metricsMasterPeter2009-06-09T21:45:12Z2009-06-09T21:45:12Z<p>I have been experimenting with the <a href="http://eclipse-metrics.sourceforge.net/" rel="nofollow">Metrics plugin for Eclipse from StateOfFlow</a> and I am getting to like the idea of having my code quality analysed. Of course, not all the metrics are too clear to me, or useful, but from the wide range of various metrics the plugin provides (currently 14, by my count), I tend to take these seriously:</p>
<p>Method metrics: Cyclomatic complexity | Number of statements | Number of locals in scope | Number of levels</p>
<p>Class metrics: Number of fields | Weighted methods per class</p>
<p>To reduce this list even further, I really believe in McCabe's <em>Cyclomatic Complexity</em> measure and I find the <em>number of statements</em> also a quite useful indication of too much work being done in one place.</p>
<p>Of the rest of the metrics provided by the plugin, I find the ones from the <em>Lack of cohesion in methods</em> group rather difficult to understand. Today, I started with a little experiment of my own and after a couple of hours' coding I turned on the Metrics support for the project. 6/7 problems found were related to cohesion, one particularly surprising: <em>Lack of Cohesion in Methods (Total Correlation) is 209%</em>. </p>
<p>I find it hard to do anything about these: Chidamber and Kemerer | Henderson-Sellers | Total Correlation | Pairwise Field Irrelation. I am very tempted to raise the allowed maxima for these metrics, so they would stop appearing as Warnings.</p>
<p>I think having code metrics calculated on-the-fly provides a helpful guide to writing better code. I am glad you asked this question, as I would like to read more about how the others are using metrics to improve code quality.</p>
<p>By the way, I would welcome any recommendations of other (Eclipse) plugins you might have experience with. The one from StateOfFlow provides a nice way of exporting the metrics information in the form of HTML pages with graphs and tables, and also can export metrics to CSV files which you can then feed into whatever other utilities you may be using. I am enjoying the plugin so far :)</p>
http://stackoverflow.com/questions/1809725/ntfs-alternate-data-streams/1819063#1819063Comment by MasterPeter on NTFS alternate data streamsMasterPeter2009-11-30T13:36:03Z2009-11-30T13:36:03Znotepad.exe seems to have no problems opening the ADS.http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/1658412#1658412Comment by MasterPeter on What is your best programmer joke?MasterPeter2009-11-28T11:32:28Z2009-11-28T11:32:28Zso true it hurtshttp://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/1583312#1583312Comment by MasterPeter on Worst UI You've Ever UsedMasterPeter2009-11-28T11:27:47Z2009-11-28T11:27:47Zwhy, this web page is sweeet :)http://stackoverflow.com/questions/1812012/java-swing-how-to-wait-for-other-jframes/1812045#1812045Comment by MasterPeter on Java swing. How to wait for other JframesMasterPeter2009-11-28T11:23:13Z2009-11-28T11:23:13Z@Andreas_D, change your comment into an answer and I would give you an upvotehttp://stackoverflow.com/questions/1812012/java-swing-how-to-wait-for-other-jframes/1812045#1812045Comment by MasterPeter on Java swing. How to wait for other JframesMasterPeter2009-11-28T09:09:41Z2009-11-28T09:09:41ZI would advise the same, but nonetheless, could you suggest how could be ANY JFrame made modal? I come from Delphi world, and there one would call myForm.showModal; instead of just myForm.show; Is there any simple way to achieve this effect?http://stackoverflow.com/questions/1809725/ntfs-alternate-data-streamsComment by MasterPeter on NTFS alternate data streamsMasterPeter2009-11-27T23:32:12Z2009-11-27T23:32:12ZI agree with that. So, as long as my fs is NTFS, I should be able to work with these streams. Do I need a special version of <code>copy</code> program to support copying data from and into alternate streams?http://stackoverflow.com/questions/1809725/ntfs-alternate-data-streams/1809762#1809762Comment by MasterPeter on NTFS alternate data streamsMasterPeter2009-11-27T23:30:20Z2009-11-27T23:30:20Zcopy 1013.pdf:Zone.Identifier x.xxx should work too. but it doesn't on my machine. I just don't understand what's going on.http://stackoverflow.com/questions/1809725/ntfs-alternate-data-streams/1809762#1809762Comment by MasterPeter on NTFS alternate data streamsMasterPeter2009-11-27T23:25:39Z2009-11-27T23:25:39Zfunny thing is I have seen it work with the type command. However the shell used to demonstrate this was NT4 shell, not the usual cmd.exehttp://stackoverflow.com/questions/1799670/morris-internet-worm-anyone-knows-how-did-they-manage-to-stop-it/1799689#1799689Comment by MasterPeter on Morris Internet Worm - anyone knows how did they manage to stop it?MasterPeter2009-11-25T20:59:01Z2009-11-25T20:59:01ZI have been to each and every one of those and also others. And as I mentioned, I find this <code>pleasequit</code> variable mentioned in more than one place.http://stackoverflow.com/questions/1799670/morris-internet-worm-anyone-knows-how-did-they-manage-to-stop-it/1799689#1799689Comment by MasterPeter on Morris Internet Worm - anyone knows how did they manage to stop it?MasterPeter2009-11-25T20:33:56Z2009-11-25T20:33:56ZThanks for the post. In one of the reports I found that <code>By 5 a.m. Nov. 3, Berkeley had created a patch to stop it</code>. Does this mean they have patched these vulnerabilities in the three servers or is this referring to something else? The <code>pleasequit</code> variable quickfix-hack?http://stackoverflow.com/questions/1742640/exporting-to-excel-the-simple-way-but-not-csv/1761285#1761285Comment by MasterPeter on Exporting to Excel the simple way (but not CSV)MasterPeter2009-11-23T09:51:45Z2009-11-23T09:51:45ZNow, that's really explained the colors problem! I now understand. Thanks.http://stackoverflow.com/questions/1742640/exporting-to-excel-the-simple-way-but-not-csv/1743156#1743156Comment by MasterPeter on Exporting to Excel the simple way (but not CSV)MasterPeter2009-11-16T18:28:45Z2009-11-16T18:28:45ZThanks for this. Any ideas <i>why</i> the colors are converted?http://stackoverflow.com/questions/1742640/exporting-to-excel-the-simple-way-but-not-csv/1742662#1742662Comment by MasterPeter on Exporting to Excel the simple way (but not CSV)MasterPeter2009-11-16T15:32:14Z2009-11-16T15:32:14Zthanks, that helped with one of the problems :) any idea how to get the colors right?http://stackoverflow.com/questions/1735870/simple-statistics-java-packages-for-calculating-mean-standard-deviation-etc/1735876#1735876Comment by MasterPeter on Simple statistics - Java packages for calculating mean, standard deviation, etc...MasterPeter2009-11-15T10:36:50Z2009-11-15T10:36:50Z@duffymo As a classic Java programmer, I am definitely not concerned by stuff like how much memory do my programs consume. (<-- joking, of course)
As to <code>How hard is it to write a simple class that calculates means and standard deviations?</code> well, not hard. I only asked this question <i>after</i> having hand-coded these. But it only added to my Java frustration not to have these simplest functions available at my hand when I needed them. I don't remember the formula for calculating stdev by heart :)http://stackoverflow.com/questions/1735870/simple-statistics-java-packages-for-calculating-mean-standard-deviation-etc/1735876#1735876Comment by MasterPeter on Simple statistics - Java packages for calculating mean, standard deviation, etc...MasterPeter2009-11-14T22:50:42Z2009-11-14T22:50:42Zthanks. I take it there isn't really a reason for looking any further. You're satisfied with Apache Commons, or is it just so-so, good-enough, could-be-better?