User grom - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T17:26:56Z http://stackoverflow.com/feeds/user/486 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/20127/virtual-machine-optimization 2 Virtual Machine Optimization grom 2008-08-21T14:41:31Z 2009-12-17T18:50:57Z <p>I am messing around with <a href="http://code.google.com/p/zemscript/" rel="nofollow">a toy interpreter in Java</a> and I was considering trying to write a simple compiler that can generate bytecode for the Java Virtual Machine. Which got me thinking, how much optimization needs to be done by compilers that target virtual machines such as JVM and CLI?</p> <p>Do Just In Time (JIT) compilers do constant folding, peephole optimizations etc?</p> http://stackoverflow.com/questions/15496/hidden-features-of-java 175 Hidden Features of Java grom 2008-08-19T01:36:03Z 2009-12-16T23:47:36Z <p>After reading <a href="http://beta.stackoverflow.com/questions/9033/hidden-features-of-c" rel="nofollow">Hidden Features of C#</a> I wondered, What are some of the hidden features of Java?</p> http://stackoverflow.com/questions/18985/javascript-beautifier 8 Javascript Beautifier grom 2008-08-20T22:29:22Z 2009-08-22T12:33:29Z <p>I am looking for a code beautifier that supports javascript and works on both windows and linux and can be used in batch scripts. Any recommendations?</p> http://stackoverflow.com/questions/1106377/detect-when-browser-receives-file-download/1162122#1162122 0 Answer by grom for Detect when browser receives file download grom 2009-07-21T22:41:39Z 2009-07-23T07:59:31Z <p>I just had this exact same problem. My solution was to use temporary files since I was generating a bunch of temporary files already. The form is submitted with:</p> <pre><code>var microBox = { show : function(content) { $(document.body).append('&lt;div id="microBox_overlay"&gt;&lt;/div&gt;&lt;div id="microBox_window"&gt;&lt;div id="microBox_frame"&gt;&lt;div id="microBox"&gt;' + content + '&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;'); return $('#microBox_overlay'); }, close : function() { $('#microBox_overlay').remove(); $('#microBox_window').remove(); } }; $.fn.bgForm = function(content, callback) { // Create an iframe as target of form submit var id = 'bgForm' + (new Date().getTime()); var $iframe = $('&lt;iframe id="' + id + '" name="' + id + '" style="display: none;" src="about:blank"&gt;&lt;/iframe&gt;') .appendTo(document.body); var $form = this; // Submittal to an iframe target prevents page refresh $form.attr('target', id); // The first load event is called when about:blank is loaded $iframe.one('load', function() { // Attach listener to load events that occur after successful form submittal $iframe.load(function() { microBox.close(); if (typeof(callback) == 'function') { var iframe = $iframe[0]; var doc = iframe.contentWindow.document; var data = doc.body.innerHTML; callback(data); } }); }); this.submit(function() { microBox.show(content); }); return this; }; $('#myForm').bgForm('Please wait...'); </code></pre> <p>At the end of the script that generates the file I have:</p> <pre><code>header('Refresh: 0;url=fetch.php?token=' . $token); echo '&lt;html&gt;&lt;/html&gt;'; </code></pre> <p>This will cause the load event on the iframe to be fired. Then the wait message is closed and the file download will then start. Tested on IE7 and Firefox.</p> http://stackoverflow.com/questions/1151652/java-chat-server/1151862#1151862 0 Answer by grom for Java Chat Server grom 2009-07-20T05:41:03Z 2009-07-20T05:41:03Z <p>The simple approach is to use two threads per client connection. One thread handles reading messages from the client the other for sending messages, thereby can send/receive messages from the client simultaneously. </p> <p>To avoid network calls when looping over the client connections to broadcast a message, the server thread should add the messages into a queue to send to the client. LinkedBlockingQueue in java.util.concurrent is perfect for this. Below is an example:</p> <pre><code>/** * Handles outgoing communication with client */ public class ClientConnection extends Thread { private Queue&lt;String&gt; outgoingMessages = new LinkedBlockingQueue&lt;String&gt;(MAX_OUTGOING); // ... public void queueOutgoing(String message) { if (!outgoingMessages.offer(message)) { // Kick slow clients kick(); } } public void run() { // ... while (isConnected) { List&lt;String&gt; messages = new LinkedList&lt;String&gt;(); outgoingMessages.drainTo(messages); for (String message : messages) { send(message); } // ... } } } public class Server { // ... public void broadcast(String message) { for (ClientConnection client : clients) { client.queueOutgoing(message); } } } </code></pre> http://stackoverflow.com/questions/160874/software-for-creating-png-8bit-transparent-images 0 Software for creating PNG 8bit transparent images? grom 2008-10-02T04:24:44Z 2009-07-17T15:14:56Z <p>I'm looking for software to create PNG8 format transparent images as per <a href="http://www.sitepoint.com/blogs/2007/09/18/png8-the-clear-winner/" rel="nofollow">this article</a>.</p> <p><strong>NOTE:</strong> I need a linux solution myself, but please submit answers for other OSes.</p> http://stackoverflow.com/questions/1042902/most-elegant-way-to-generate-prime-numbers/1043080#1043080 2 Answer by grom for Most elegant way to generate prime numbers grom 2009-06-25T10:14:14Z 2009-06-25T10:14:14Z <p>I know you asked for non-Haskell solution but I am including this here as it relates to the question and also Haskell is beautiful for this type of thing.</p> <pre><code>module Prime where primes :: [Integer] primes = 2:3:primes' where -- Every prime number other than 2 and 3 must be of the form 6k + 1 or -- 6k + 5. Note we exclude 1 from the candidates and mark the next one as -- prime (6*0+5 == 5) to start the recursion. 1:p:candidates = [6*k+r | k &lt;- [0..], r &lt;- [1,5]] primes' = p : filter isPrime candidates isPrime n = all (not . divides n) $ takeWhile (\p -&gt; p*p &lt;= n) primes' divides n p = n `mod` p == 0 </code></pre> http://stackoverflow.com/questions/1042902/most-elegant-way-to-generate-prime-numbers/1043061#1043061 1 Answer by grom for Most elegant way to generate prime numbers grom 2009-06-25T10:09:46Z 2009-06-25T10:09:46Z <p>Here is a python code example that prints out the sum of all primes below two million:</p> <pre><code>from math import * limit = 2000000 sievebound = (limit - 1) / 2 # sieve only odd numbers to save memory # the ith element corresponds to the odd number 2*i+1 sieve = [False for n in xrange(1, sievebound + 1)] crosslimit = (int(ceil(sqrt(limit))) - 1) / 2 for i in xrange(1, crosslimit): if not sieve[i]: # if p == 2*i + 1, then # p**2 == 4*(i**2) + 4*i + 1 # == 2*i * (i + 1) for j in xrange(2*i * (i + 1), sievebound, 2*i + 1): sieve[j] = True sum = 2 for i in xrange(1, sievebound): if not sieve[i]: sum = sum + (2*i+1) print sum </code></pre> http://stackoverflow.com/questions/597554/how-to-convert-between-timezones-with-win32-api 0 How to convert between timezones with win32 API? grom 2009-02-28T05:29:28Z 2009-06-21T21:52:45Z <p>I have date strings such as <em>2009-02-28 15:40:05 AEDST</em> and want to convert it into SYSTEMTIME structure. So far I have:</p> <pre><code>SYSTEMTIME st; FILETIME ft; SecureZeroMemory(&amp;st, sizeof(st)); sscanf_s(contents, "%u-%u-%u %u:%u:%u", &amp;st.wYear, &amp;st.wMonth, &amp;st.wDay, &amp;st.wHour, &amp;st.wMinute, &amp;st.wSecond); // Timezone correction SystemTimeToFileTime(&amp;st, &amp;ft); LocalFileTimeToFileTime(&amp;ft, &amp;ft); FileTimeToSystemTime(&amp;ft, &amp;st); </code></pre> <p>However my local timezone is not AEDST. So I need to be able to specify the timezone when converting to UTC.</p> http://stackoverflow.com/questions/438240/monitor-a-processs-network-usage/438456#438456 1 Answer by grom for Monitor a process's network usage? grom 2009-01-13T09:38:55Z 2009-02-27T00:49:43Z <p><a href="http://www.netlimiter.com/download.php" rel="nofollow">NetLimiter 2 Limiter</a></p> <p><a href="http://www.nicocuppen.com/pit/editor/page%5Fdetail.php?id=10104" rel="nofollow">Network Traffic Monitor</a> You can get the last freeware version from <a href="http://www.aplusfreeware.com/categories/LFWV/NetworkTrafficMonitor.html" rel="nofollow">here</a></p> http://stackoverflow.com/questions/4565/how-to-setup-quality-of-service 2 How to setup Quality of Service? grom 2008-08-07T10:20:16Z 2009-02-25T08:00:30Z <p>I'm talking about <a href="http://en.wikipedia.org/wiki/Quality_of_service" rel="nofollow">http://en.wikipedia.org/wiki/Quality_of_service</a>. With streaming stackoverflow podcasts and downloading the lastest updates to ubuntu, I would like to have QoS working so I can use stackoverflow without my http connections timing out or taking forever.</p> <p>I'm using an iConnect 624 ADSL modem which has QoS built-in but I can't seem to get it to work. Is it even possible to control the downstream (ie. from ISP to your modem)?</p> http://stackoverflow.com/questions/522856/what-are-good-resources-for-css-templates-or-templated-layout-sites/523004#523004 9 Answer by grom for What are good resources for CSS templates or templated layout sites? grom 2009-02-07T02:37:11Z 2009-02-07T02:37:11Z <p><a href="http://www.csszengarden.com/" rel="nofollow">Zen Garden</a></p> http://stackoverflow.com/questions/564/what-is-the-difference-between-an-int-and-an-integer-in-java-c/3285#3285 1 Answer by grom for What is the difference between an int and an Integer in Java/C#? grom 2008-08-06T11:08:52Z 2009-02-05T06:58:19Z <p>In Java there are two basic types in the <a href="http://java.sun.com/docs/books/jvms/second_edition/html/Concepts.doc.html#22930" rel="nofollow">JVM</a>. 1) Primitive types and 2) Reference Types. int is a primitive type and Integer is a class type (which is kind of reference type).</p> <p>Primitive values do not share state with other primitive values. A variable whose type is a primitive type always holds a primitive value of that type.</p> <pre><code>int aNumber = 4; int anotherNum = aNumber; aNumber += 6; System.out.println(anotherNum); // Prints 4 </code></pre> <p>An object is a dynamically created class instance or an array. The reference values (often just references) are pointers to these objects and a special null reference, which refers to no object. There may be many references to the same object.</p> <pre><code>Integer aNumber = Integer.valueOf(4); Integer anotherNumber = aNumber; // anotherNumber references the // same object as aNumber </code></pre> <p>Also in Java everything is passed by value. With objects the value that is passed is the reference to the object. So another difference between int and Integer in java is how they are passed in method calls. For example in</p> <pre><code>public int add(int a, int b) { return a + b; } final int two = 2; int sum = add(1, two); </code></pre> <p>The variable <em>two</em> is passed as the primitive integer type 2. Whereas in</p> <pre><code>public int add(Integer a, Integer b) { return a.intValue() + b.intValue(); } final Integer two = Integer.valueOf(2); int sum = add(Integer.valueOf(1), two); </code></pre> <p>The variable <em>two</em> is passed as a reference to an object that holds the integer value 2.</p> <p><hr /></p> <p>@WolfmanDragon: Pass by reference would work like so:</p> <pre><code>public void increment(int x) { x = x + 1; } int a = 1; increment(a); // a is now 2 </code></pre> <p>When increment is called it passes a reference (pointer) to variable <em>a</em>. And the <em>increment</em> function directly modifies variable <em>a</em>.</p> <p>And for object types it would work as follows:</p> <pre><code>public void increment(Integer x) { x = Integer.valueOf(x.intValue() + 1); } Integer a = Integer.valueOf(1); increment(a); // a is now 2 </code></pre> <p>Do you see the difference now?</p> http://stackoverflow.com/questions/514610/regex-html-whitelist/514739#514739 3 Answer by grom for RegEx: HTML whitelist grom 2009-02-05T05:49:48Z 2009-02-05T05:49:48Z <p><a href="http://kore-nordmann.de/blog/do_NOT_parse_using_regexp.html" rel="nofollow">Do NOT try parsing with regular expressions</a></p> <p>Instead use a <a href="http://grom.zeminvaders.net/html-sanitizer" rel="nofollow">real parser</a></p> http://stackoverflow.com/questions/514673/how-do-i-open-a-file-from-line-x-to-line-y-in-php/514717#514717 3 Answer by grom for How do I open a file from line X to line Y in PHP? grom 2009-02-05T05:37:46Z 2009-02-05T05:37:46Z <p>You not going to be able to read starting from line X because lines can be of arbitrary length. So you will have to read from the start counting the number of lines read to get to line X. For example:</p> <pre><code>&lt;?php $f = fopen('sample.txt', 'r'); $lineNo = 0; $startLine = 3; $endLine = 6; while ($line = fgets($f)) { $lineNo++; if ($lineNo &gt;= $startLine) { echo $line; } if ($lineNo == $endLine) { break; } } fclose($f); </code></pre> http://stackoverflow.com/questions/506167/building-a-texas-holdem-playing-ai-from-scratch/506194#506194 7 Answer by grom for Building a Texas Hold'em playing AI..from scratch. grom 2009-02-03T06:35:23Z 2009-02-03T06:35:23Z <p>The following may prove useful:</p> <ul> <li><a href="http://poker.cs.ualberta.ca/" rel="nofollow">The University of Alberta Computer Poker Research Group</a></li> <li><a href="http://code.google.com/p/openholdembot/" rel="nofollow">OpenHoldem</a></li> <li><a href="http://www.codingthewheel.com/archives/how-i-built-a-working-online-poker-bot-8" rel="nofollow">Poker Hand Recognition, Comparison, Enumeration, and Evaluation</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/1880685000" rel="nofollow">The Theory of Poker</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/1886070253" rel="nofollow">The Mathematics of Poker</a></li> </ul> http://stackoverflow.com/questions/10877/how-can-you-customize-the-numbers-in-an-ordered-list 13 How can you customize the numbers in an ordered list? grom 2008-08-14T10:42:32Z 2009-02-02T23:13:50Z <p>How can I left-align the numbers in an ordered list?</p> <pre><code>1. an item // skip some items for brevity 9. another item 10. notice the 1 is under the 9, and the item contents also line up </code></pre> <p>Change the character after the number in an ordered list?</p> <pre><code>1) an item </code></pre> <p>Also is there a CSS solution to change from numbers to alphabetic/roman lists instead of using the type attribute on the ol element.</p> <p>I am mostly interested in answers that work on Firefox 3.</p> http://stackoverflow.com/questions/10877/how-can-you-customize-the-numbers-in-an-ordered-list/486662#486662 2 Answer by grom for How can you customize the numbers in an ordered list? grom 2009-01-28T06:31:49Z 2009-02-02T23:13:50Z <p>This is the solution I have working in Firefox 3, Opera and Google Chrome. The list still displays in IE7 (but without the close bracket and left align numbers):</p> <pre><code>&lt;style type="text/css"&gt; &lt;!-- ol { counter-reset: item; margin-left: 0; padding-left: 0; } li { display: block; margin-bottom: .5em; margin-left: 2em; } li:before { display: inline-block; content: counter(item) ") "; counter-increment: item; width: 2em; margin-left: -2em; } --&gt; &lt;/style&gt; &lt;body&gt; &lt;ol&gt; &lt;li&gt;One&lt;/li&gt; &lt;li&gt;Two&lt;/li&gt; &lt;li&gt;Three&lt;/li&gt; &lt;li&gt;Four&lt;/li&gt; &lt;li&gt;Five&lt;/li&gt; &lt;li&gt;Six&lt;/li&gt; &lt;li&gt;Seven&lt;/li&gt; &lt;li&gt;Eight&lt;/li&gt; &lt;li&gt;Nine&lt;br&gt;Items&lt;/li&gt; &lt;li&gt;Ten&lt;br&gt;Items&lt;/li&gt; &lt;/ol&gt; </code></pre> <p><strong>EDIT:</strong> Included multiple line fix by strager</p> <blockquote> <p>Also is there a CSS solution to change from numbers to alphabetic/roman lists instead of using the type attribute on the ol element.</p> </blockquote> <p>Refer to <a href="http://www.w3.org/TR/CSS2/generate.html#lists" rel="nofollow">list-style-type</a> CSS property. Or when using counters the second argument accepts a list-style-type value. For example the following will use upper roman:</p> <pre><code>li:before { content: counter(item, upper-roman) ") "; counter-increment: item; /* ... */ </code></pre> http://stackoverflow.com/questions/149600/php-code-formatter-beautifier-and-php-beautificaton-in-general/494295#494295 5 Answer by grom for Php code formatter / beautifier and php beautificaton in general grom 2009-01-30T02:28:14Z 2009-01-30T02:28:14Z <p>Well here is my very basic and rough script:</p> <pre><code>#!/usr/bin/php &lt;?php class Token { public $type; public $contents; public function __construct($rawToken) { if (is_array($rawToken)) { $this-&gt;type = $rawToken[0]; $this-&gt;contents = $rawToken[1]; } else { $this-&gt;type = -1; $this-&gt;contents = $rawToken; } } } $file = $argv[1]; $code = file_get_contents($file); $rawTokens = token_get_all($code); $tokens = array(); foreach ($rawTokens as $rawToken) { $tokens[] = new Token($rawToken); } function skipWhitespace(&amp;$tokens, &amp;$i) { global $lineNo; $i++; $token = $tokens[$i]; while ($token-&gt;type == T_WHITESPACE) { $lineNo += substr($token-&gt;contents, "\n"); $i++; $token = $tokens[$i]; } } function nextToken(&amp;$j) { global $tokens, $i; $j = $i; do { $j++; $token = $tokens[$j]; } while ($token-&gt;type == T_WHITESPACE); return $token; } $OPERATORS = array('=', '.', '+', '-', '*', '/', '%', '||', '&amp;&amp;', '+=', '-=', '*=', '/=', '.=', '%=', '==', '!=', '&lt;=', '&gt;=', '&lt;', '&gt;', '===', '!=='); $IMPORT_STATEMENTS = array(T_REQUIRE, T_REQUIRE_ONCE, T_INCLUDE, T_INCLUDE_ONCE); $CONTROL_STRUCTURES = array(T_IF, T_ELSEIF, T_FOREACH, T_FOR, T_WHILE, T_SWITCH, T_ELSE); $WHITESPACE_BEFORE = array('?', '{', '=&gt;'); $WHITESPACE_AFTER = array(',', '?', '=&gt;'); foreach ($OPERATORS as $op) { $WHITESPACE_BEFORE[] = $op; $WHITESPACE_AFTER[] = $op; } $matchingTernary = false; // First pass - filter out unwanted tokens $filteredTokens = array(); for ($i = 0, $n = count($tokens); $i &lt; $n; $i++) { $token = $tokens[$i]; if ($token-&gt;contents == '?') { $matchingTernary = true; } if (in_array($token-&gt;type, $IMPORT_STATEMENTS) &amp;&amp; nextToken($j)-&gt;contents == '(') { $filteredTokens[] = $token; if ($tokens[$i + 1]-&gt;type != T_WHITESPACE) { $filteredTokens[] = new Token(array(T_WHITESPACE, ' ')); } $i = $j; do { $i++; $token = $tokens[$i]; if ($token-&gt;contents != ')') { $filteredTokens[] = $token; } } while ($token-&gt;contents != ')'); } elseif ($token-&gt;type == T_ELSE &amp;&amp; nextToken($j)-&gt;type == T_IF) { $i = $j; $filteredTokens[] = new Token(array(T_ELSEIF, 'elseif')); } elseif ($token-&gt;contents == ':') { if ($matchingTernary) { $matchingTernary = false; } elseif ($tokens[$i - 1]-&gt;type == T_WHITESPACE) { array_pop($filteredTokens); // Remove whitespace before } $filteredTokens[] = $token; } else { $filteredTokens[] = $token; } } $tokens = $filteredTokens; function isAssocArrayVariable($offset = 0) { global $tokens, $i; $j = $i + $offset; return $tokens[$j]-&gt;type == T_VARIABLE &amp;&amp; $tokens[$j + 1]-&gt;contents == '[' &amp;&amp; $tokens[$j + 2]-&gt;type == T_STRING &amp;&amp; preg_match('/[a-z_]+/', $tokens[$j + 2]-&gt;contents) &amp;&amp; $tokens[$j + 3]-&gt;contents == ']'; } // Second pass - add whitespace $matchingTernary = false; $doubleQuote = false; for ($i = 0, $n = count($tokens); $i &lt; $n; $i++) { $token = $tokens[$i]; if ($token-&gt;contents == '?') { $matchingTernary = true; } if ($token-&gt;contents == '"' &amp;&amp; isAssocArrayVariable(1) &amp;&amp; $tokens[$i + 5]-&gt;contents == '"') { /* * Handle case where the only thing quoted is the assoc array variable. * Eg. "$value[key]" */ $quote = $tokens[$i++]-&gt;contents; $var = $tokens[$i++]-&gt;contents; $openSquareBracket = $tokens[$i++]-&gt;contents; $str = $tokens[$i++]-&gt;contents; $closeSquareBracket = $tokens[$i++]-&gt;contents; $quote = $tokens[$i]-&gt;contents; echo $var . "['" . $str . "']"; $doubleQuote = false; continue; } if ($token-&gt;contents == '"') { $doubleQuote = !$doubleQuote; } if ($doubleQuote &amp;&amp; $token-&gt;contents == '"' &amp;&amp; isAssocArrayVariable(1)) { // don't echo " } elseif ($doubleQuote &amp;&amp; isAssocArrayVariable()) { if ($tokens[$i - 1]-&gt;contents != '"') { echo '" . '; } $var = $token-&gt;contents; $openSquareBracket = $tokens[++$i]-&gt;contents; $str = $tokens[++$i]-&gt;contents; $closeSquareBracket = $tokens[++$i]-&gt;contents; echo $var . "['" . $str . "']"; if ($tokens[$i + 1]-&gt;contents != '"') { echo ' . "'; } else { $i++; // process " $doubleQuote = false; } } elseif ($token-&gt;type == T_STRING &amp;&amp; $tokens[$i - 1]-&gt;contents == '[' &amp;&amp; $tokens[$i + 1]-&gt;contents == ']') { if (preg_match('/[a-z_]+/', $token-&gt;contents)) { echo "'" . $token-&gt;contents . "'"; } else { echo $token-&gt;contents; } } elseif ($token-&gt;type == T_ENCAPSED_AND_WHITESPACE || $token-&gt;type == T_STRING) { echo $token-&gt;contents; } elseif ($token-&gt;contents == '-' &amp;&amp; in_array($tokens[$i + 1]-&gt;type, array(T_LNUMBER, T_DNUMBER))) { echo '-'; } elseif (in_array($token-&gt;type, $CONTROL_STRUCTURES)) { echo $token-&gt;contents; if ($tokens[$i + 1]-&gt;type != T_WHITESPACE) { echo ' '; } } elseif ($token-&gt;contents == '}' &amp;&amp; in_array($tokens[$i + 1]-&gt;type, $CONTROL_STRUCTURES)) { echo '} '; } elseif ($token-&gt;contents == '=' &amp;&amp; $tokens[$i + 1]-&gt;contents == '&amp;') { if ($tokens[$i - 1]-&gt;type != T_WHITESPACE) { echo ' '; } $i++; // match &amp; echo '=&amp;'; if ($tokens[$i + 1]-&gt;type != T_WHITESPACE) { echo ' '; } } elseif ($token-&gt;contents == ':' &amp;&amp; $matchingTernary) { $matchingTernary = false; if ($tokens[$i - 1]-&gt;type != T_WHITESPACE) { echo ' '; } echo ':'; if ($tokens[$i + 1]-&gt;type != T_WHITESPACE) { echo ' '; } } elseif (in_array($token-&gt;contents, $WHITESPACE_BEFORE) &amp;&amp; $tokens[$i - 1]-&gt;type != T_WHITESPACE &amp;&amp; in_array($token-&gt;contents, $WHITESPACE_AFTER) &amp;&amp; $tokens[$i + 1]-&gt;type != T_WHITESPACE) { echo ' ' . $token-&gt;contents . ' '; } elseif (in_array($token-&gt;contents, $WHITESPACE_BEFORE) &amp;&amp; $tokens[$i - 1]-&gt;type != T_WHITESPACE) { echo ' ' . $token-&gt;contents; } elseif (in_array($token-&gt;contents, $WHITESPACE_AFTER) &amp;&amp; $tokens[$i + 1]-&gt;type != T_WHITESPACE) { echo $token-&gt;contents . ' '; } else { echo $token-&gt;contents; } } </code></pre> http://stackoverflow.com/questions/457050/how-to-display-text-in-system-tray-icon-with-win32-api 2 How to display text in system tray icon with win32 API? grom 2009-01-19T09:48:19Z 2009-01-19T12:26:11Z <p>Trying to create a small monitor application that displays current internet usage as percentage in system tray in C using win32 API. </p> <p>Also wanting to use colour background or colour text based on how much is used relative to days left in month.</p> <p><strong>EDIT:</strong> To clarify I am wanting the system tray icon to be dynamic. As the percentage changes I update the system tray icon. Looking for solution that uses just plain old win32 (ie. No MFC or WTL).</p> http://stackoverflow.com/questions/457050/how-to-display-text-in-system-tray-icon-with-win32-api/457432#457432 0 Answer by grom for How to display text in system tray icon with win32 API? grom 2009-01-19T12:26:11Z 2009-01-19T12:26:11Z <p>Okay here is my win32 solution:</p> <pre><code>HICON CreateSmallIcon( HWND hWnd ) { static TCHAR *szText = TEXT ( "100" ); HDC hdc, hdcMem; HBITMAP hBitmap = NULL; HBITMAP hOldBitMap = NULL; HBITMAP hBitmapMask = NULL; ICONINFO iconInfo; HFONT hFont; HICON hIcon; hdc = GetDC ( hWnd ); hdcMem = CreateCompatibleDC ( hdc ); hBitmap = CreateCompatibleBitmap ( hdc, 16, 16 ); hBitmapMask = CreateCompatibleBitmap ( hdc, 16, 16 ); ReleaseDC ( hWnd, hdc ); hOldBitMap = (HBITMAP) SelectObject ( hdcMem, hBitmap ); PatBlt ( hdcMem, 0, 0, 16, 16, WHITENESS ); // Draw percentage hFont = CreateFont (12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, TEXT ("Arial")); hFont = (HFONT) SelectObject ( hdcMem, hFont ); TextOut ( hdcMem, 0, 0, szText, lstrlen (szText) ); SelectObject ( hdc, hOldBitMap ); hOldBitMap = NULL; iconInfo.fIcon = TRUE; iconInfo.xHotspot = 0; iconInfo.yHotspot = 0; iconInfo.hbmMask = hBitmapMask; iconInfo.hbmColor = hBitmap; hIcon = CreateIconIndirect ( &amp;iconInfo ); DeleteObject ( SelectObject ( hdcMem, hFont ) ); DeleteDC ( hdcMem ); DeleteDC ( hdc ); DeleteObject ( hBitmap ); DeleteObject ( hBitmapMask ); return hIcon; } </code></pre> http://stackoverflow.com/questions/441622/checkbox-form-validation-in-firefox/441769#441769 1 Answer by grom for Checkbox form validation in Firefox grom 2009-01-14T02:59:55Z 2009-01-14T02:59:55Z <pre><code>var isChecked = document.forms['myform'].elements['mycheckbox'].checked; if (!isChecked) { alert('You must agree'); } </code></pre> http://stackoverflow.com/questions/438397/can-a-java-applet-use-the-printer/438511#438511 4 Answer by grom for Can a Java Applet use the printer? grom 2009-01-13T10:11:20Z 2009-01-13T23:14:12Z <p>To print you will either need to use <a href="http://java.sun.com/developer/onlineTraining/Programming/JDCBook/signed.html" rel="nofollow">Signed Applets</a> or if an unsigned applet tries to print, the user will be prompted to ask whether to allow permission.</p> <p>Here is some sample code for printing HTML using JEditorPane:</p> <pre><code>public class HTMLPrinter implements Printable{ private final JEditorPane printPane; public HTMLPrinter(JEditorPane editorPane){ printPane = editorPane; } public int print(Graphics graphics, PageFormat pageFormat, int pageIndex){ if (pageIndex &gt;= 1) return Printable.NO_SUCH_PAGE; Graphics2D g2d = (Graphics2D)graphics; g2d.setClip(0, 0, (int)pageFormat.getImageableWidth(), (int)pageFormat.getImageableHeight()); g2d.translate((int)pageFormat.getImageableX(), (int)pageFormat.getImageableY()); RepaintManager rm = RepaintManager.currentManager(printPane); boolean doubleBuffer = rm.isDoubleBufferingEnabled(); rm.setDoubleBufferingEnabled(false); printPane.setSize((int)pageFormat.getImageableWidth(), 1); printPane.print(g2d); rm.setDoubleBufferingEnabled(doubleBuffer); return Printable.PAGE_EXISTS; } } </code></pre> <p>Then to send it to printer:</p> <pre><code>HTMLPrinter target = new HTMLPrinter(editorPane); PrinterJob printJob = PrinterJob.getPrinterJob(); printJob.setPrintable(target); try{ printJob.printDialog(); printJob.print(); }catch(Exception e){ e.printStackTrace(); } </code></pre> http://stackoverflow.com/questions/435657/international-resource-identifier-validation/438572#438572 1 Answer by grom for International Resource Identifier Validation grom 2009-01-13T10:40:55Z 2009-01-13T10:40:55Z <p>With preg_match \pL will match any unicode letter. So replace the a-z with \pL. And 0-9 with \pN. See <a href="http://au.php.net/manual/en/regexp.reference.php#regexp.reference.unicode" rel="nofollow">Regular Expression Details</a> for more information.</p> http://stackoverflow.com/questions/177506/why-do-i-see-a-double-variable-initialized-to-some-value-like-21-4-as-21-39999961/438498#438498 0 Answer by grom for Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273? grom 2009-01-13T10:01:09Z 2009-01-13T10:01:09Z <p>Refer to <a href="http://speleotrove.com/decimal/#summary" rel="nofollow">General Decimal Arithmetic</a></p> <p>Also take note when comparing floats, see <a href="http://stackoverflow.com/questions/17333/most-effective-way-for-float-and-double-comparison#17467">this answer</a> for more information.</p> http://stackoverflow.com/questions/438259/advice-for-first-year-college-student/438403#438403 0 Answer by grom for Advice for first-year college student? grom 2009-01-13T09:11:40Z 2009-01-13T09:11:40Z <p>Learn multiple ways of thinking. For example:</p> <ul> <li>Object oriented</li> <li>Functional (Haskell)</li> <li><a href="http://en.wikipedia.org/wiki/Logic_programming" rel="nofollow">Logic programming</a></li> </ul> http://stackoverflow.com/questions/367257/automatically-reformatting-inherited-php-spaghetti-code/367333#367333 0 Answer by grom for Automatically reformatting inherited PHP spaghetti code grom 2008-12-15T02:18:33Z 2008-12-15T02:18:33Z <p>Checkout <a href="http://pear.php.net/package/PHP_CodeSniffer" rel="nofollow">CodeSniffer</a>. I have also used this <a href="http://pastebin.com/f19c5df99" rel="nofollow">script</a></p> http://stackoverflow.com/questions/353795/inherited-a-php-nightmare-where-to-start/354551#354551 13 Answer by grom for Inherited a PHP nightmare, where to start? grom 2008-12-09T22:56:58Z 2008-12-09T22:56:58Z <p>Most of the time you can tell if a file is being used by using grep.</p> <pre><code>grep -r "index2.php" * </code></pre> <p>You can also use the PHP parser to help you cleanup. Here is an example script that prints out the functions that are declared and function calls:</p> <pre><code>#!/usr/bin/php &lt;?php class Token { public $type; public $contents; public function __construct($rawToken) { if (is_array($rawToken)) { $this-&gt;type = $rawToken[0]; $this-&gt;contents = $rawToken[1]; } else { $this-&gt;type = -1; $this-&gt;contents = $rawToken; } } } $file = $argv[1]; $code = file_get_contents($file); $rawTokens = token_get_all($code); $tokens = array(); foreach ($rawTokens as $rawToken) { $tokens[] = new Token($rawToken); } function skipWhitespace(&amp;$tokens, &amp;$i) { global $lineNo; $i++; $token = $tokens[$i]; while ($token-&gt;type == T_WHITESPACE) { $lineNo += substr($token-&gt;contents, "\n"); $i++; $token = $tokens[$i]; } } function nextToken(&amp;$j) { global $tokens, $i; $j = $i; do { $j++; $token = $tokens[$j]; } while ($token-&gt;type == T_WHITESPACE); return $token; } for ($i = 0, $n = count($tokens); $i &lt; $n; $i++) { $token = $tokens[$i]; if ($token-&gt;type == T_FUNCTION) { skipWhitespace($tokens, $i); $functionName = $tokens[$i]-&gt;contents; echo 'Function: ' . $functionName . "\n"; } elseif ($token-&gt;type == T_STRING) { skipWhitespace($tokens, $i); $nextToken = $tokens[$i]; if ($nextToken-&gt;contents == '(') { echo 'Call: ' . $token-&gt;contents . "\n"; } } } </code></pre> http://stackoverflow.com/questions/339719/when-is-the-difference-between-quotrem-and-divmod-useful 3 When is the difference between quotRem and divMod useful? grom 2008-12-04T06:29:33Z 2008-12-04T22:53:20Z <p>From the haskell report:</p> <blockquote> <p>The quot, rem, div, and mod class methods satisfy these laws if y is non-zero:</p> <pre><code>(x `quot` y)*y + (x `rem` y) == x (x `div` y)*y + (x `mod` y) == x </code></pre> <p><code>quot</code> is integer division truncated toward zero, while the result of <code>div</code> is truncated toward negative infinity.</p> </blockquote> <p>For example:</p> <pre><code>Prelude&gt; (-12) `quot` 5 -2 Prelude&gt; (-12) `div` 5 -3 </code></pre> <p>What are some examples of where the difference between how the result is truncated matters?</p> http://stackoverflow.com/questions/210829/what-is-an-np-complete-problem/313523#313523 10 Answer by grom for What is an NP-complete problem? grom 2008-11-24T06:09:20Z 2008-11-24T13:02:20Z <h2>What is NP?</h2> <p>NP is the set of all decision problems (question with yes-or-no answer) for which the 'yes'-answers can be <strong>verified</strong> in polynomial time (O(n^k) where n is the problem size, and k is a constant) by a <a href="http://en.wikipedia.org/wiki/Deterministic_Turing_machine" rel="nofollow">deterministic Turing machine</a>. Polynomial time is sometimes used as the definition of <em>fast</em> or <em>quickly</em>. </p> <h2>What is P?</h2> <p>P is the set of all decision problems which can be <strong>solved</strong> in polynomial time by a deterministic Turing machine. Since it can solve in polynomial time, it can also be verified in polynomial time. Therefore P is a subset of NP.</p> <h2>What is NP-Complete?</h2> <p>A problem x that is in NP is also in NP-Complete if and only if every other problem in NP can be quickly (ie. in polynomial time) transformed into x. In other words:</p> <ol> <li>x is in NP, and</li> <li>Every problem in NP is reducible to x</li> </ol> <p>So what makes NP-Complete so interesting is that if any one of the NP-Complete problems was to be solved quickly then all NP problems can be solved quickly. Also see <a href="http://stackoverflow.com/questions/111307/whats-pnp-and-why-is-it-such-a-famous-question">What’s “P=NP?”, and why is it such a famous question?</a></p> <h2>What is NP-Hard?</h2> <p>NP-Hard are problems that are at least as hard as the hardest problems in NP. Note that NP-Complete problems are also NP-hard. However not all NP-hard problems are NP (or even a decision problem), despite having 'NP' as a prefix. That is the NP in NP-hard does not mean non-polynomial. Yes this is confusing but its usage is entrenched and unlikely to change.</p> http://stackoverflow.com/questions/1407338/a-recursive-remove-directory-function-for-php/1407382#1407382 Comment by grom on A recursive remove directory function for PHP? grom 2009-10-07T02:52:54Z 2009-10-07T02:52:54Z Link is broken. Maybe you could copy the solution here. http://stackoverflow.com/questions/788225/table-row-and-column-number-in-jquery/788292#788292 Comment by grom on Table row and column number in jQuery grom 2009-09-30T01:06:31Z 2009-09-30T01:06:31Z This doesn't work if there are column spans in the table http://stackoverflow.com/questions/899148/html-select-option-separator/899159#899159 Comment by grom on html select option separator grom 2009-08-20T02:44:12Z 2009-08-20T02:44:12Z @Laurence: IE7 does not support css styles on optgroup or option elements. At least not borders http://stackoverflow.com/questions/1151652/java-chat-server/1151750#1151750 Comment by grom on Java Chat Server grom 2009-07-21T08:35:51Z 2009-07-21T08:35:51Z @Maninder Batth have you seen <a href="http://mailinator.blogspot.com/2008/02/kill-myth-please-nio-is-not-faster-than.html" rel="nofollow">mailinator.blogspot.com/2008/02/&hellip;</a> http://stackoverflow.com/questions/1151652/java-chat-server/1151862#1151862 Comment by grom on Java Chat Server grom 2009-07-21T08:34:05Z 2009-07-21T08:34:05Z NPTL can handle a lot of connections. Refer to <a href="http://mailinator.blogspot.com/2008/02/kill-myth-please-nio-is-not-faster-than.html" rel="nofollow">mailinator.blogspot.com/2008/02/&hellip;</a> http://stackoverflow.com/questions/438397/can-a-java-applet-use-the-printer/438511#438511 Comment by grom on Can a Java Applet use the printer? grom 2009-03-17T09:47:37Z 2009-03-17T09:47:37Z Tom you have to have it use the HTMLEditorKit. Try testPanel.setContentType(&quot;text/html&quot;) before setting html content with setText http://stackoverflow.com/questions/597554/how-to-convert-between-timezones-with-win32-api/597561#597561 Comment by grom on How to convert between timezones with win32 API? grom 2009-02-28T05:43:08Z 2009-02-28T05:43:08Z Thanks for that, but how do I retrieve the TIME_ZONE_INFORMATION for a different timezone (ie. AEDST)? http://stackoverflow.com/questions/514478/can-someone-explain-to-me-what-the-reasoning-behind-passing-by-value-and-not-by Comment by grom on Can someone explain to me what the reasoning behind passing by "value" and not by "reference" in Java is? grom 2009-02-05T06:39:53Z 2009-02-05T06:39:53Z also see <a href="http://stackoverflow.com/questions/2027/pass-by-reference-or-pass-by-value/7485" rel="nofollow" title="pass by reference or pass by value">stackoverflow.com/questions/2027/&hellip;</a> http://stackoverflow.com/questions/514610/regex-html-whitelist/514739#514739 Comment by grom on RegEx: HTML whitelist grom 2009-02-05T06:34:06Z 2009-02-05T06:34:06Z Fair enough, just had to post this as warning to others. http://stackoverflow.com/questions/514673/how-do-i-open-a-file-from-line-x-to-line-y-in-php/514717#514717 Comment by grom on How do I open a file from line X to line Y in PHP? grom 2009-02-05T06:33:08Z 2009-02-05T06:33:08Z @lock, yes it should. The example I gave only ever has one line in memory. You can store the lines into an array as long as don't have too many. Having said that 25Mb is not huge compared to some log files I have had to process. http://stackoverflow.com/questions/514673/how-do-i-open-a-file-from-line-x-to-line-y-in-php/514717#514717 Comment by grom on How do I open a file from line X to line Y in PHP? grom 2009-02-05T05:51:09Z 2009-02-05T05:51:09Z Yeah except that reads the whole file. This code only reads the minimum required. http://stackoverflow.com/questions/10877/how-can-you-customize-the-numbers-in-an-ordered-list/489088#489088 Comment by grom on How can you customize the numbers in an ordered list? grom 2009-01-30T00:33:16Z 2009-01-30T00:33:16Z @strager, Well I am using 3.0.4 on Linux and 3.0.3 on Windows, and it works for me without the float: left; rule. http://stackoverflow.com/questions/10877/how-can-you-customize-the-numbers-in-an-ordered-list/489088#489088 Comment by grom on How can you customize the numbers in an ordered list? grom 2009-01-29T23:30:07Z 2009-01-29T23:30:07Z Also you want text-align: left; not right. And the last line should be margin-left: -3.5em; http://stackoverflow.com/questions/10877/how-can-you-customize-the-numbers-in-an-ordered-list/489088#489088 Comment by grom on How can you customize the numbers in an ordered list? grom 2009-01-29T22:38:02Z 2009-01-29T22:38:02Z What Firefox issue? http://stackoverflow.com/questions/10877/how-can-you-customize-the-numbers-in-an-ordered-list/486704#486704 Comment by grom on How can you customize the numbers in an ordered list? grom 2009-01-29T22:31:18Z 2009-01-29T22:31:18Z All the examples (see <a href="http://www.w3.org/TR/CSS2/generate.html#q11" rel="nofollow">w3.org/TR/CSS2/generate.html#q11</a>) for markers do not work for me.