User Malcolm - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T06:18:32Z http://stackoverflow.com/feeds/user/45668 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1277886/j2me-how-to-create-image-in-jpg-format/1283875#1283875 2 Answer by Malcolm for j2me - How to create image in jpg format? Malcolm 2009-08-16T09:29:06Z 2009-08-16T09:29:06Z <p>This can be done! Even without any proprietary APIs or libraries. This can be achieved if your phone supports JSR 234 and has the ability to process JPEG files through it. You do this:</p> <pre><code>//Create MediaProcessor for raw Image MediaProcessor mediaProc = GlobalManager.createMediaProcessor("image/raw"); //Get control over the format ImageFormatControl formatControl = (ImageFormatControl) mediaProc.getControl("javax.microedition.amms.control.ImageFormatControl"); //Set necessary format formatControl.setFormat("image/jpeg"); </code></pre> <p>Then you set input <code>Image</code>, output stream and start the media processor. Voila! You have saved your image in JPEG.</p> http://stackoverflow.com/questions/1113890/java-working-with-date-time-in-j2me/1113951#1113951 0 Answer by Malcolm for Java - Working with Date/Time in J2ME Malcolm 2009-07-11T15:25:29Z 2009-07-11T15:25:29Z <p>I use the following <strong>code to get time</strong>:</p> <pre><code>String getDateString(Date date) { Calendar calendar = Calendar.getInstance(); calendar.setTime(date); int year = calendar.get(Calendar.YEAR); int month = calendar.get(Calendar.MONTH); int day = calendar.get(Calendar.DAY_OF_MONTH); int hour = calendar.get(Calendar.HOUR_OF_DAY); int minute = calendar.get(Calendar.MINUTE); int second = calendar.get(Calendar.SECOND); return new String(/*Any format you need*/); } </code></pre> <p>You get numbers and then you can output them in any necessary format.</p> <p>The <strong>code to create Date object</strong> is something like this:</p> <pre><code>Date createDate(String dateString) { //Extract needed numbers first StringBuffer strBuf = new StringBuffer(dateString); char[] charBuf = new char[4]; strBuf.getChars(0, 3, charBuf, 0); dayOfWeek = new String(charBuf, 0, 3); strBuf.getChars(strBuf.length() - 4, strBuf.length(), charBuf, 0); year = charsToInt(charBuf, 4); strBuf.getChars(4, 7, charBuf, 0); String monthStr = new String(charBuf, 0, 3); month = ArraySearcher.searchStringEntry(monthStr, MONTHS); day = extractShortField(strBuf, 8, charBuf); hour = extractShortField(strBuf, 11, charBuf); minute = extractShortField(strBuf, 14, charBuf); second = extractShortField(strBuf, 17, charBuf); //Now set the calendar Calendar calendar = Calendar.getInstance(); calendar.set(Calendar.YEAR, year); calendar.set(Calendar.MONTH, month); calendar.set(Calendar.DAY_OF_MONTH, day); calendar.set(Calendar.HOUR_OF_DAY, hour); calendar.set(Calendar.MINUTE, minute); calendar.set(Calendar.SECOND, second); return calendar.getTime(); } private int charsToInt(char[] buf, int len) { String str = new String(buf, 0, len); return Integer.parseInt(str); } private int extractShortField(StringBuffer strBuf, int start, char[] charBuf) { strBuf.getChars(start, start + 2, charBuf, 0); return charsToInt(charBuf, 2); } </code></pre> <p>That'll do the trick.</p> http://stackoverflow.com/questions/1092072/ignored-files-in-the-netbeans/1092111#1092111 0 Answer by Malcolm for ignored files in the netbeans Malcolm 2009-07-07T12:46:08Z 2009-07-07T12:46:08Z <p>Check Tools->Options->Miscellaneous->Files, there you can see what files are ignored by IDE and correct the settings if needed.</p> http://stackoverflow.com/questions/1089388/best-api-lib-for-encoding-decoding-base64-quoted-printable-in-java/1089447#1089447 1 Answer by Malcolm for Best API/LIB for encoding/decoding base64/quoted-printable in Java Malcolm 2009-07-06T22:12:58Z 2009-07-06T22:12:58Z <p>Why not use one from <a href="http://iharder.sourceforge.net/current/java/base64/" rel="nofollow">iharder.net</a>? It is fast and it is in public domain.</p> http://stackoverflow.com/questions/1087923/ie8-big-problem-not-displaying-site-properly/1087948#1087948 3 Answer by Malcolm for IE8 Big Problem! Not displaying site properly. Malcolm 2009-07-06T16:33:39Z 2009-07-06T16:33:39Z <p>I think you should definitely <a href="http://validator.w3.org/check?uri=http%3A%2F%2Fwomenssoccerclub.com%2Fpages%2Ftwocolumn%5F2.php%3Ft%3DApril%2520-%2520May%25202009%2520homepage&amp;charset=%28detect+automatically%29&amp;doctype=Inline&amp;group=0" rel="nofollow">check your page in the online validator</a>. Right now it finds 141 errors.</p> http://stackoverflow.com/questions/1076527/trouble-stopping-a-loop/1076677#1076677 3 Answer by Malcolm for Trouble stopping a loop Malcolm 2009-07-02T21:05:51Z 2009-07-02T21:05:51Z <p>Try adding keyword <code>volatile</code> to the variable <code>running</code>:</p> <pre><code>private volatile boolean running = false; </code></pre> <p>This is done to ensure that your thread always uses master-copy of the variable, not the locally stored.</p> http://stackoverflow.com/questions/1044996/how-to-replace-text-in-a-powerpoint-ppt-document/1055962#1055962 2 Answer by Malcolm for How to replace text in a powerpoint (.ppt) document? Malcolm 2009-06-28T22:50:38Z 2009-06-30T21:22:06Z <p>If you include using other Office suits as an option, here's a list of possible solutions:</p> <ul> <li><a href="http://poi.apache.org/slideshow/index.html" rel="nofollow">Apache POI-HSLF</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/bb265982.aspx" rel="nofollow">PowerPoint 2007 APIs</a></li> <li><a href="http://udk.openoffice.org/" rel="nofollow">OpenOffice.org UNO</a></li> </ul> <p>Using POI you can't edit .pptx file format, but you don't depend on the apps installed on the system. Other two options, on the contrary, make use of other apps, but they are definitely better for dealing with presentations. OpenOffice has better compability with older formats, by the way. Also if you use UNO, you'll have a great choice of languages, UNO exists for Java, C++, Python and other languages.</p> http://stackoverflow.com/questions/1064901/random-number-between-2-double-numbers/1064914#1064914 1 Answer by Malcolm for Random Number Between 2 Double Numbers Malcolm 2009-06-30T17:21:47Z 2009-06-30T17:21:47Z <p>You could use code like this:</p> <pre><code>public double getRandomNumber(double minimum, double maximum) { return minimum + randomizer.nextDouble() * (maximum - minimum); } </code></pre> http://stackoverflow.com/questions/1064747/how-to-change-the-dimensions-of-the-applet-viewer-in-netbeans-6-7/1064897#1064897 0 Answer by Malcolm for How to change the Dimensions of the Applet Viewer in NetBeans 6.7 Malcolm 2009-06-30T17:17:26Z 2009-06-30T17:17:26Z <p>Go to the project properties, there you choose <em>Application -> Web Start</em>, select <em>Applet descriptor</em> and click the button <em>Applet Parameters</em>. There you can set required dimensions.</p> http://stackoverflow.com/questions/1064767/j2me-textfield-exception/1064851#1064851 0 Answer by Malcolm for J2ME TextField Exception Malcolm 2009-06-30T17:07:18Z 2009-06-30T17:07:18Z <p>This is definitely a JVM bug. If a <code>TextField</code> returned a string, it must be able to accept it. The only thing I can advice is to play a bit with the size of the field or the constraints. You haven't specified the device you are using, there could be some new firmwares for it with bugfixes.</p> http://stackoverflow.com/questions/1062504/object-doesnt-do-anything-after-instantiation-bad-code-smell/1062649#1062649 2 Answer by Malcolm for Object doesn't do anything after instantiation - bad code smell? Malcolm 2009-06-30T09:18:27Z 2009-06-30T09:18:27Z <p>There should a purpose for the object to exist. Constructor is only a tool for preparing the object so it can work as needed after creation. If you don't use the object, you don't need to create it either.</p> <p>Creation of unnecessary objects consumes memory and also makes garbage collector do more work, so you should consider rewriting code (possibly with a static method as it has already been suggested). </p> http://stackoverflow.com/questions/1062423/extend-notepad/1062618#1062618 1 Answer by Malcolm for Extend Notepad++ Malcolm 2009-06-30T09:10:23Z 2009-06-30T09:10:23Z <p>Actually in Notepad++ you have to use this string to match single word in a line, possibly with trailing spaces:</p> <p><code>^\&lt;(.*)\&gt; *$</code></p> <p>and then you replace the words with <code>\1, </code></p> <p>I tried to do this myself, everything worked, except after this you have to switch from regex search mode to extended and delete all <code>\r\n</code> or <code>\n</code> depending on your line endings.</p> http://stackoverflow.com/questions/1060548/software-quality-metrics/1060714#1060714 0 Answer by Malcolm for Software quality metrics Malcolm 2009-06-29T21:37:26Z 2009-06-29T21:37:26Z <p>You could do it in some <em>economic way</em> or in <em>programmer's way</em>.</p> <p>In case of economic way you mesaure costs of improving code, fixing bugs, adding new features and so on. If you choose the second way, you may want to measure how much staff works with your program and how easy it is to, say, find and fix an average bug in human hours. Certainly they are not flawless, because costs depend on the market situation and human hours depend on the actual people and their skills, so it's better to combine both methods.</p> <p>This way you get some instruments to mesaure quality of your code. Of course you should take into account the size of your project and other factors, but I hope main idea is clear.</p> http://stackoverflow.com/questions/1059153/do-i-need-a-lawyer-to-run-a-website/1059187#1059187 0 Answer by Malcolm for Do I need a lawyer to run a website? Malcolm 2009-06-29T16:18:43Z 2009-06-29T16:18:43Z <p>It depends on the kind of the website. I don't think that you'll definitely be pulled into some legal stuff if you have a simple service or something like that. You should have a look at ToS on the similar sites and check if they suit you.</p> <p>Oh, and as for the laws, I'm confident that you should write your terms according to the laws of your country.</p> http://stackoverflow.com/questions/1059114/counting-the-number-of-occurrences-of-each-item-in-a-list/1059138#1059138 0 Answer by Malcolm for Counting the number of occurrences of each item in a list Malcolm 2009-06-29T16:09:26Z 2009-06-29T16:09:26Z <p>Besides the solutions that have been posted the first thing that comes to my mind is to make a table "code - value" and encode the list using codes. It would be very space efficient.</p> http://stackoverflow.com/questions/1057178/is-it-worth-learning-c-to-get-a-deeper-understanding-of-oses-and-computers-in-ge/1057291#1057291 0 Answer by Malcolm for Is it worth learning C to get a deeper understanding of OS'es and computers in general? Malcolm 2009-06-29T08:57:47Z 2009-06-29T09:28:47Z <p>The answer is simple, too: yes, you would.</p> <p>There are some languages that should be useful to any developer as they are like milestones. I would say that C, Java, PHP belong to such languages. Right now I am reading a book on JavaScript just for education, though my site doesn't use it at all and probably won't.</p> <p><strong>If you like it, go for it!</strong></p> http://stackoverflow.com/questions/1057337/placing-the-right-content-into-the-right-place/1057390#1057390 1 Answer by Malcolm for Placing the right content into the right place Malcolm 2009-06-29T09:27:26Z 2009-06-29T09:27:26Z <p>I think that it's a good approach to write about yourself on a different page, not everyone is interested in your personality.</p> <p>Standart solution is to place it as a last item of menu or at the bottom of the page like a footer. I think that placing it in menu would be better.</p> <p>If you want another example of a good blog layout, I could point you to our famous blog by one of Stack Overflow creators - <a href="http://www.codinghorror.com/blog/" rel="nofollow">Coding Horror</a> by Jeff Atwood.</p> http://stackoverflow.com/questions/1051243/multiple-instances-of-j2me-midlet-problem/1051313#1051313 1 Answer by Malcolm for Multiple instances of j2me midlet problem Malcolm 2009-06-26T21:13:53Z 2009-06-26T21:13:53Z <p>This is definitely a JVM bug. <code>startApp()</code> should be called only once at startup and can't be called again until <code>pauseApp()</code> is called or you call <code>notifyPaused()</code> yourself.</p> <p>What I suggest is the following code:</p> <pre><code>private boolean midletStarted = false; public void startApp() { if (!midletStarted) { midletStarted = true; //Your code } } </code></pre> <p>This way you can track midlet state changes. But in fact it is better that you don't use this method at all and use constructor instead.</p> <p>Oh, by the way, I don't think that there are some multiple instances or something like that, this is merely a JVM error.</p> http://stackoverflow.com/questions/1049947/should-utf-16-be-considered-harmful/1049996#1049996 7 Answer by Malcolm for Should UTF-16 be considered harmful? Malcolm 2009-06-26T16:16:10Z 2009-06-26T17:27:33Z <p>Well, there is an encoding that uses fixed-size symbols. I certainly mean UTF-32. But 4 bytes for each symbol is <em>too</em> much of wasted space, why whould we use it in everyday situations?</p> <p>Actually I don't undesrstand why it's so big deal anyway. Characters outside BMP are encountered only in very specific cases and areas. Most programs that use UTF-16 are not intended for working with texts containing such characters, so why bother with support for what won't be used anyway?</p> <p>I don't think it should be considered harmful, but on the other hand it doesn't mean developers shouldn't be mindful. <strong>Use what is needed where it is needed</strong>. And this is exactly my point: if you use mostly English, use UTF-8, if you use mostly cyrillics or Japanese, use UTF-16, if you use ancient languages, use UTF-32. No harm in using the most appropirate method for what you do, just do it properly, of course.</p> http://stackoverflow.com/questions/1050146/is-there-any-relation-between-the-class-that-implements-interface-and-that-interf/1050153#1050153 3 Answer by Malcolm for Is there any relation between the class that implements interface and that interface??? Malcolm 2009-06-26T16:59:06Z 2009-06-26T16:59:06Z <p>"Behaves like..."</p> <p>That's what what I would say. Not is something, but behaves like something. Or as an alternative "can something", but that's more specific than behaviour.</p> http://stackoverflow.com/questions/1050014/what-types-of-software-development-tasks-can-be-easily-outsourced/1050044#1050044 2 Answer by Malcolm for What types of software development tasks can be easily outsourced? Malcolm 2009-06-26T16:28:08Z 2009-06-26T16:35:11Z <p>I'd say that you may outsource things that either can be done <em>more efficiently</em> (not necessarily better, maybe just at lesser cost) than by yourself or are <em>not relevant</em> to the core of your success. It's hard to describe on the spot what could fall into the latter category; if your company does something it does it for some purpose.</p> <p>I agree that in either case you should plan carefully, that's certainly very important.</p> http://stackoverflow.com/questions/362226/whats-your-next-programming-language-and-why/362467#362467 0 Answer by Malcolm for What's your next programming language? And why? Malcolm 2008-12-12T10:57:47Z 2009-06-26T11:22:39Z <p>I'm a Java developer, developing applications on the cutting edge of Java ME, also I'm, of course, familiar with C++ and I know the basics of PHP 'cos I had to build my own site ant simple XHTML was not very convinient.</p> <p>If I were to choose next programming language, than except for studying PHP properly I would probably pay some attention to interpreted languages such as Python and Ruby. And certainly Groovy is also worth studying.</p> http://stackoverflow.com/questions/584923/do-you-know-a-good-j2me-tutorial/1048532#1048532 0 Answer by Malcolm for Do you know a good J2ME tutorial? Malcolm 2009-06-26T11:05:27Z 2009-06-26T11:05:27Z <p>There is a very good page for developers at Sony Ericsson Developer Support. They have started to use wiki for their new articles, so there are <a href="http://developer.sonyericsson.com/site/global/techsupport/tipstrickscode/java/p%5Fjava.jsp" rel="nofollow">older tricks</a> and a <a href="http://developer.sonyericsson.com/community/community/java%5Fme/java%5Fme?view=documents" rel="nofollow">wiki</a> for new ones.</p> <p>This is, of course, mostly useful for Sony Ericsson developers, but most tutorials are not connected to some SE-specific features and thus helpful to anyone. Have a look!</p> http://stackoverflow.com/questions/1048004/start-programming-at-27/1048408#1048408 12 Answer by Malcolm for Start programming at 27? Malcolm 2009-06-26T10:36:14Z 2009-06-26T10:50:22Z <p>Why not? Good age to start something.</p> <p>My grandfather is 70, by the way, but he assembled his first computer by himself, now he plays a lot with different OSes including different distributions of Linux. What he is most fond of is the Internet, he loves to read technical articles and forums.</p> <p>So 27 is fine, if you like it, go for it!</p> http://stackoverflow.com/questions/1048401/am-i-stupid-for-not-using-custom-packages-in-flex-3-flash/1048420#1048420 1 Answer by Malcolm for Am I stupid for not using custom packages in Flex 3 (flash)? Malcolm 2009-06-26T10:38:22Z 2009-06-26T10:49:10Z <p>If you dislike creating too many packages, create just one and put into it everything you have now in the default package.</p> <p>Why may you need packages? It is:</p> <ul> <li>A way to avoid problems with duplicate filenames when you share you code</li> <li>A way to organize your code</li> </ul> <p>Like if you have your classes "in a wild" when they are outside the packages and then "domesticate" them and they can't do anybody any harm. If you don't wish to share your code, there's still a reason for using packages, because in time your code gets more complex and you want to have some means to organize it into some logical structure.</p> http://stackoverflow.com/questions/1040127/java-installation-problem/1043047#1043047 0 Answer by Malcolm for Java - Installation problem Malcolm 2009-06-25T10:06:49Z 2009-06-25T10:06:49Z <p>It looks like something is wrong with your fonts, either some font is damaged, or there is a shortcut to a font in the Fonts folder, not the font itself.</p> <p>Therefore, possible solutions for this problem:</p> <ul> <li>Check if your Fonts folder has any shortcuts.</li> <li>If that doesn't help, start opening fonts one by one. It's not quick, but there's no other way.</li> </ul> <p>Hope this solves your problem.</p> http://stackoverflow.com/questions/860540/j2me-backlight/1041538#1041538 1 Answer by Malcolm for J2ME backlight Malcolm 2009-06-24T23:47:08Z 2009-06-24T23:47:08Z <p>This is not a direct control as in Nokia UI API, but there is a method in MIDP that controls backlight, it is <code>Display.flashBacklight(int duration)</code>. Unfortunately, phones are not obliged to obey this method. But this method is at least part of MIDP, not some proprietary API.</p> http://stackoverflow.com/questions/870387/j2me-code-once-and-run-everywhere/1041041#1041041 1 Answer by Malcolm for J2ME - Code once and run everywhere? Malcolm 2009-06-24T21:11:14Z 2009-06-24T21:11:14Z <p>First of all, I'd like to say that most of the comments here are true, different JVMs may work slightly differently indeed and you should remember about APIs you are using.</p> <p>However, there's one more consideration that should be taken into account: <strong>standardization</strong>. I mean such things as <strong>Mobile Services Architecture</strong> (MSA - JSR 248), they greatly simplfy things by creating some standart sets of APIs. Moreover, they carry some clarifications to included APIs and rules on how to implement them.</p> <p>Also such things as MIDP 2.1 are tightening standarts. 2.1 verison is basically 2.0, but with "bolts tightened": more strict rules that make some aspects clear and remove potential fragmentation. For example, there's a requirement to include double buffering in any case or to support touch screen in Java if a device has one.</p> <p>Having said that, I should conclude that fragmentation is really decreasing, manufacturers do adopt standarts like JSR 248. But test your applications as much as needed anyway, we're all people and JVM developers also make mistakes and leave bugs in their code.</p> http://stackoverflow.com/questions/983511/store-data-with-midp-rms-and-retrieve-in-pc/1022295#1022295 0 Answer by Malcolm for Store data with MIDP RMS and retrieve in PC. Malcolm 2009-06-20T19:14:16Z 2009-06-20T19:14:16Z <p>I'd go for <strong>JSR 75</strong>. It is not actually quite true that it is supported in a limited number of phones, almost all modern phones which don't belong to low-end category support this API.</p> <p>And using JSR 75 you accomplish the task much simpler. You don't even need to use Internet, you just save a file in phone memory (or on a memory card), then retrieve it from PC.</p> http://stackoverflow.com/questions/1021779/making-a-j2me-midlet-sleep-without-threads/1021833#1021833 4 Answer by Malcolm for Making a J2ME Midlet sleep without threads? Malcolm 2009-06-20T15:20:29Z 2009-06-20T15:20:29Z <p>I didn't understand whether you mean putting midlet in paused state or just stopping execution for specified time.</p> <p>If it's the latter, actually I don't undesrtand, why you don't want to use Threads, this is no big deal. You just insert three following lines wherever you need:</p> <pre><code>try { Thread.sleep(10000); } catch (Exception ex) {} </code></pre> <p>That's all, nothing too complicating.</p> http://stackoverflow.com/questions/1734035/recursive-function-to-generate-all-combinations-of-capitals-in-a-word/1734054#1734054 Comment by Malcolm on Recursive function to generate all combinations of capitals in a word Malcolm 2009-11-14T12:08:43Z 2009-11-14T12:08:43Z You forgot BEn, by the way http://stackoverflow.com/questions/1049947/should-utf-16-be-considered-harmful/1049996#1049996 Comment by Malcolm on Should UTF-16 be considered harmful? Malcolm 2009-09-26T13:59:25Z 2009-09-26T13:59:25Z If BMP is <i>that</i> far from having enough capacity to write normally in Chinese, how do they manage to write in such encodings as GBK or GB 2312? It is clear that support of other planes would be useful, but nonetheless. http://stackoverflow.com/questions/1308648/aspgridview-is-not-loading-inside-aspcontent Comment by Malcolm on asp:GridView is not loading inside asp:Content Malcolm 2009-08-20T20:48:52Z 2009-08-20T20:48:52Z I don't think this thing needs an answer since there's no question. :-) http://stackoverflow.com/questions/1049947/should-utf-16-be-considered-harmful/1049996#1049996 Comment by Malcolm on Should UTF-16 be considered harmful? Malcolm 2009-08-12T17:57:18Z 2009-08-12T17:57:18Z It does, but characters outside BMP are not for everyday use, they can be used, for example, for old texts or to write names with rare hieroglyphs in them. And all characters that are commonly used fit into BMP. http://stackoverflow.com/questions/609254/j2me-app-vs-browser-on-a-handset/629301#629301 Comment by Malcolm on J2ME app Vs browser on a handset Malcolm 2009-07-12T09:15:32Z 2009-07-12T09:15:32Z A few corrections. First of all midlets are <b>not</b> required to be signed, and this is a great advantage over such platforms as BREW. Secondly, smartphones usually share the same JVMs, so developing an app that runs everywhere is not that complicated. BTW, if you target browsers, you'll leave mobile phones out of the scope. And thirdly, Java ME with MSA can do almost everything that native apps do, if JVM is fast enough. The major problem is that WM support for Java ME is... Well, woefully bad, and iPhone doesn't support it at all. Symbian, however shouldn't have problems with Java ME. http://stackoverflow.com/questions/1113890/java-working-with-date-time-in-j2me/1113951#1113951 Comment by Malcolm on Java - Working with Date/Time in J2ME Malcolm 2009-07-11T16:21:25Z 2009-07-11T16:21:25Z Not a problem, call Calendar.getInstance(TimeZone zone) with any parameter you need. http://stackoverflow.com/questions/1092072/ignored-files-in-the-netbeans/1092111#1092111 Comment by Malcolm on ignored files in the netbeans Malcolm 2009-07-07T14:51:05Z 2009-07-07T14:51:05Z Bugs should be fixed by NetBeans developers. http://stackoverflow.com/questions/1092072/ignored-files-in-the-netbeans/1092111#1092111 Comment by Malcolm on ignored files in the netbeans Malcolm 2009-07-07T12:59:37Z 2009-07-07T12:59:37Z Could be a bug, then. There's no other reason IDE would ignore files. http://stackoverflow.com/questions/1089388/best-api-lib-for-encoding-decoding-base64-quoted-printable-in-java/1089447#1089447 Comment by Malcolm on Best API/LIB for encoding/decoding base64/quoted-printable in Java Malcolm 2009-07-06T22:23:39Z 2009-07-06T22:23:39Z It is small and completely free of any licenses. Commons codec is more like an all-purpose library, and this tiny library does only one thing and does it very well. http://stackoverflow.com/questions/1076527/trouble-stopping-a-loop/1076677#1076677 Comment by Malcolm on Trouble stopping a loop Malcolm 2009-07-03T16:34:14Z 2009-07-03T16:34:14Z Good example! Well, I do this automatically, but it may be not obvious and some people forget to add this rare modificator. http://stackoverflow.com/questions/1076527/trouble-stopping-a-loop/1076677#1076677 Comment by Malcolm on Trouble stopping a loop Malcolm 2009-07-02T21:58:49Z 2009-07-02T21:58:49Z Mark this post as a solution, then. :) http://stackoverflow.com/questions/1076527/trouble-stopping-a-loop/1076677#1076677 Comment by Malcolm on Trouble stopping a loop Malcolm 2009-07-02T21:23:32Z 2009-07-02T21:23:32Z Well, there are some optimizations that assume that the variables are only modified within the current thread. This allows to work not with the real variable, but with its copy in the thread and update the real variable (master-copy) from time to time. But in your case the flag variable can be modified by other code, so you have to mark this variable as volatile, and the thread will become aware that it has to take into account such possibility. http://stackoverflow.com/questions/1049947/should-utf-16-be-considered-harmful/1049996#1049996 Comment by Malcolm on Should UTF-16 be considered harmful? Malcolm 2009-07-02T17:57:31Z 2009-07-02T17:57:31Z There is, but it's not really a problem specific for Unicode since standart encodings also don't include this characters. People use homophones and other ways to write such names, and that can be done in any encoding, including Unicode. Probably there are serious difficulties even with inputting rare symbols, so the situation doesn't happen all of a sudden and users won't be surprised to find out the program is refusing to accept them correctly if it does. http://stackoverflow.com/questions/1044996/how-to-replace-text-in-a-powerpoint-ppt-document/1064015#1064015 Comment by Malcolm on How to replace text in a powerpoint (.ppt) document? Malcolm 2009-07-01T08:54:31Z 2009-07-01T08:54:31Z You could also make use of OpenOffice, I've added information to my post. http://stackoverflow.com/questions/1064747/how-to-change-the-dimensions-of-the-applet-viewer-in-netbeans-6-7/1064897#1064897 Comment by Malcolm on How to change the Dimensions of the Applet Viewer in NetBeans 6.7 Malcolm 2009-06-30T20:52:22Z 2009-06-30T20:52:22Z What if this is just a NetBeans bug? You should report it then.