User grom - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T17:26:56Zhttp://stackoverflow.com/feeds/user/486http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/20127/virtual-machine-optimization2Virtual Machine Optimizationgrom2008-08-21T14:41:31Z2009-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-java175Hidden Features of Javagrom2008-08-19T01:36:03Z2009-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-beautifier8Javascript Beautifiergrom2008-08-20T22:29:22Z2009-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#11621220Answer by grom for Detect when browser receives file downloadgrom2009-07-21T22:41:39Z2009-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('<div id="microBox_overlay"></div><div id="microBox_window"><div id="microBox_frame"><div id="microBox">' +
content + '</div></div></div>');
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 = $('<iframe id="' + id + '" name="' + id + '" style="display: none;" src="about:blank"></iframe>')
.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 '<html></html>';
</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#11518620Answer by grom for Java Chat Servergrom2009-07-20T05:41:03Z2009-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<String> outgoingMessages = new LinkedBlockingQueue<String>(MAX_OUTGOING);
// ...
public void queueOutgoing(String message) {
if (!outgoingMessages.offer(message)) {
// Kick slow clients
kick();
}
}
public void run() {
// ...
while (isConnected) {
List<String> messages = new LinkedList<String>();
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-images0Software for creating PNG 8bit transparent images?grom2008-10-02T04:24:44Z2009-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#10430802Answer by grom for Most elegant way to generate prime numbersgrom2009-06-25T10:14:14Z2009-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 <- [0..], r <- [1,5]]
primes' = p : filter isPrime candidates
isPrime n = all (not . divides n) $ takeWhile (\p -> p*p <= n) primes'
divides n p = n `mod` p == 0
</code></pre>
http://stackoverflow.com/questions/1042902/most-elegant-way-to-generate-prime-numbers/1043061#10430611Answer by grom for Most elegant way to generate prime numbersgrom2009-06-25T10:09:46Z2009-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-api0How to convert between timezones with win32 API?grom2009-02-28T05:29:28Z2009-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(&st, sizeof(st));
sscanf_s(contents, "%u-%u-%u %u:%u:%u",
&st.wYear,
&st.wMonth,
&st.wDay,
&st.wHour,
&st.wMinute,
&st.wSecond);
// Timezone correction
SystemTimeToFileTime(&st, &ft);
LocalFileTimeToFileTime(&ft, &ft);
FileTimeToSystemTime(&ft, &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#4384561Answer by grom for Monitor a process's network usage?grom2009-01-13T09:38:55Z2009-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-service2How to setup Quality of Service?grom2008-08-07T10:20:16Z2009-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#5230049Answer by grom for What are good resources for CSS templates or templated layout sites?grom2009-02-07T02:37:11Z2009-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#32851Answer by grom for What is the difference between an int and an Integer in Java/C#?grom2008-08-06T11:08:52Z2009-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#5147393Answer by grom for RegEx: HTML whitelistgrom2009-02-05T05:49:48Z2009-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#5147173Answer by grom for How do I open a file from line X to line Y in PHP?grom2009-02-05T05:37:46Z2009-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><?php
$f = fopen('sample.txt', 'r');
$lineNo = 0;
$startLine = 3;
$endLine = 6;
while ($line = fgets($f)) {
$lineNo++;
if ($lineNo >= $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#5061947Answer by grom for Building a Texas Hold'em playing AI..from scratch.grom2009-02-03T06:35:23Z2009-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-list13How can you customize the numbers in an ordered list?grom2008-08-14T10:42:32Z2009-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#4866622Answer by grom for How can you customize the numbers in an ordered list?grom2009-01-28T06:31:49Z2009-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><style type="text/css">
<!--
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;
}
-->
</style>
<body>
<ol>
<li>One</li>
<li>Two</li>
<li>Three</li>
<li>Four</li>
<li>Five</li>
<li>Six</li>
<li>Seven</li>
<li>Eight</li>
<li>Nine<br>Items</li>
<li>Ten<br>Items</li>
</ol>
</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#4942955Answer by grom for Php code formatter / beautifier and php beautificaton in generalgrom2009-01-30T02:28:14Z2009-01-30T02:28:14Z<p>Well here is my very basic and rough script:</p>
<pre><code>#!/usr/bin/php
<?php
class Token {
public $type;
public $contents;
public function __construct($rawToken) {
if (is_array($rawToken)) {
$this->type = $rawToken[0];
$this->contents = $rawToken[1];
} else {
$this->type = -1;
$this->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(&$tokens, &$i) {
global $lineNo;
$i++;
$token = $tokens[$i];
while ($token->type == T_WHITESPACE) {
$lineNo += substr($token->contents, "\n");
$i++;
$token = $tokens[$i];
}
}
function nextToken(&$j) {
global $tokens, $i;
$j = $i;
do {
$j++;
$token = $tokens[$j];
} while ($token->type == T_WHITESPACE);
return $token;
}
$OPERATORS = array('=', '.', '+', '-', '*', '/', '%', '||', '&&', '+=', '-=', '*=', '/=', '.=', '%=', '==', '!=', '<=', '>=', '<', '>', '===', '!==');
$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('?', '{', '=>');
$WHITESPACE_AFTER = array(',', '?', '=>');
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 < $n; $i++) {
$token = $tokens[$i];
if ($token->contents == '?') {
$matchingTernary = true;
}
if (in_array($token->type, $IMPORT_STATEMENTS) && nextToken($j)->contents == '(') {
$filteredTokens[] = $token;
if ($tokens[$i + 1]->type != T_WHITESPACE) {
$filteredTokens[] = new Token(array(T_WHITESPACE, ' '));
}
$i = $j;
do {
$i++;
$token = $tokens[$i];
if ($token->contents != ')') {
$filteredTokens[] = $token;
}
} while ($token->contents != ')');
} elseif ($token->type == T_ELSE && nextToken($j)->type == T_IF) {
$i = $j;
$filteredTokens[] = new Token(array(T_ELSEIF, 'elseif'));
} elseif ($token->contents == ':') {
if ($matchingTernary) {
$matchingTernary = false;
} elseif ($tokens[$i - 1]->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]->type == T_VARIABLE &&
$tokens[$j + 1]->contents == '[' &&
$tokens[$j + 2]->type == T_STRING &&
preg_match('/[a-z_]+/', $tokens[$j + 2]->contents) &&
$tokens[$j + 3]->contents == ']';
}
// Second pass - add whitespace
$matchingTernary = false;
$doubleQuote = false;
for ($i = 0, $n = count($tokens); $i < $n; $i++) {
$token = $tokens[$i];
if ($token->contents == '?') {
$matchingTernary = true;
}
if ($token->contents == '"' && isAssocArrayVariable(1) && $tokens[$i + 5]->contents == '"') {
/*
* Handle case where the only thing quoted is the assoc array variable.
* Eg. "$value[key]"
*/
$quote = $tokens[$i++]->contents;
$var = $tokens[$i++]->contents;
$openSquareBracket = $tokens[$i++]->contents;
$str = $tokens[$i++]->contents;
$closeSquareBracket = $tokens[$i++]->contents;
$quote = $tokens[$i]->contents;
echo $var . "['" . $str . "']";
$doubleQuote = false;
continue;
}
if ($token->contents == '"') {
$doubleQuote = !$doubleQuote;
}
if ($doubleQuote && $token->contents == '"' && isAssocArrayVariable(1)) {
// don't echo "
} elseif ($doubleQuote && isAssocArrayVariable()) {
if ($tokens[$i - 1]->contents != '"') {
echo '" . ';
}
$var = $token->contents;
$openSquareBracket = $tokens[++$i]->contents;
$str = $tokens[++$i]->contents;
$closeSquareBracket = $tokens[++$i]->contents;
echo $var . "['" . $str . "']";
if ($tokens[$i + 1]->contents != '"') {
echo ' . "';
} else {
$i++; // process "
$doubleQuote = false;
}
} elseif ($token->type == T_STRING && $tokens[$i - 1]->contents == '[' && $tokens[$i + 1]->contents == ']') {
if (preg_match('/[a-z_]+/', $token->contents)) {
echo "'" . $token->contents . "'";
} else {
echo $token->contents;
}
} elseif ($token->type == T_ENCAPSED_AND_WHITESPACE || $token->type == T_STRING) {
echo $token->contents;
} elseif ($token->contents == '-' && in_array($tokens[$i + 1]->type, array(T_LNUMBER, T_DNUMBER))) {
echo '-';
} elseif (in_array($token->type, $CONTROL_STRUCTURES)) {
echo $token->contents;
if ($tokens[$i + 1]->type != T_WHITESPACE) {
echo ' ';
}
} elseif ($token->contents == '}' && in_array($tokens[$i + 1]->type, $CONTROL_STRUCTURES)) {
echo '} ';
} elseif ($token->contents == '=' && $tokens[$i + 1]->contents == '&') {
if ($tokens[$i - 1]->type != T_WHITESPACE) {
echo ' ';
}
$i++; // match &
echo '=&';
if ($tokens[$i + 1]->type != T_WHITESPACE) {
echo ' ';
}
} elseif ($token->contents == ':' && $matchingTernary) {
$matchingTernary = false;
if ($tokens[$i - 1]->type != T_WHITESPACE) {
echo ' ';
}
echo ':';
if ($tokens[$i + 1]->type != T_WHITESPACE) {
echo ' ';
}
} elseif (in_array($token->contents, $WHITESPACE_BEFORE) && $tokens[$i - 1]->type != T_WHITESPACE &&
in_array($token->contents, $WHITESPACE_AFTER) && $tokens[$i + 1]->type != T_WHITESPACE) {
echo ' ' . $token->contents . ' ';
} elseif (in_array($token->contents, $WHITESPACE_BEFORE) && $tokens[$i - 1]->type != T_WHITESPACE) {
echo ' ' . $token->contents;
} elseif (in_array($token->contents, $WHITESPACE_AFTER) && $tokens[$i + 1]->type != T_WHITESPACE) {
echo $token->contents . ' ';
} else {
echo $token->contents;
}
}
</code></pre>
http://stackoverflow.com/questions/457050/how-to-display-text-in-system-tray-icon-with-win32-api2How to display text in system tray icon with win32 API?grom2009-01-19T09:48:19Z2009-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#4574320Answer by grom for How to display text in system tray icon with win32 API?grom2009-01-19T12:26:11Z2009-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 ( &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#4417691Answer by grom for Checkbox form validation in Firefox grom2009-01-14T02:59:55Z2009-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#4385114Answer by grom for Can a Java Applet use the printer?grom2009-01-13T10:11:20Z2009-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 >= 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#4385721Answer by grom for International Resource Identifier Validationgrom2009-01-13T10:40:55Z2009-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#4384980Answer by grom for Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273?grom2009-01-13T10:01:09Z2009-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#4384030Answer by grom for Advice for first-year college student?grom2009-01-13T09:11:40Z2009-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#3673330Answer by grom for Automatically reformatting inherited PHP spaghetti codegrom2008-12-15T02:18:33Z2008-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#35455113Answer by grom for Inherited a PHP nightmare, where to start?grom2008-12-09T22:56:58Z2008-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
<?php
class Token {
public $type;
public $contents;
public function __construct($rawToken) {
if (is_array($rawToken)) {
$this->type = $rawToken[0];
$this->contents = $rawToken[1];
} else {
$this->type = -1;
$this->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(&$tokens, &$i) {
global $lineNo;
$i++;
$token = $tokens[$i];
while ($token->type == T_WHITESPACE) {
$lineNo += substr($token->contents, "\n");
$i++;
$token = $tokens[$i];
}
}
function nextToken(&$j) {
global $tokens, $i;
$j = $i;
do {
$j++;
$token = $tokens[$j];
} while ($token->type == T_WHITESPACE);
return $token;
}
for ($i = 0, $n = count($tokens); $i < $n; $i++) {
$token = $tokens[$i];
if ($token->type == T_FUNCTION) {
skipWhitespace($tokens, $i);
$functionName = $tokens[$i]->contents;
echo 'Function: ' . $functionName . "\n";
} elseif ($token->type == T_STRING) {
skipWhitespace($tokens, $i);
$nextToken = $tokens[$i];
if ($nextToken->contents == '(') {
echo 'Call: ' . $token->contents . "\n";
}
}
}
</code></pre>
http://stackoverflow.com/questions/339719/when-is-the-difference-between-quotrem-and-divmod-useful3When is the difference between quotRem and divMod useful?grom2008-12-04T06:29:33Z2008-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> (-12) `quot` 5
-2
Prelude> (-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#31352310Answer by grom for What is an NP-complete problem?grom2008-11-24T06:09:20Z2008-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#1407382Comment by grom on A recursive remove directory function for PHP?grom2009-10-07T02:52:54Z2009-10-07T02:52:54ZLink is broken. Maybe you could copy the solution here.http://stackoverflow.com/questions/788225/table-row-and-column-number-in-jquery/788292#788292Comment by grom on Table row and column number in jQuerygrom2009-09-30T01:06:31Z2009-09-30T01:06:31ZThis doesn't work if there are column spans in the tablehttp://stackoverflow.com/questions/899148/html-select-option-separator/899159#899159Comment by grom on html select option separatorgrom2009-08-20T02:44:12Z2009-08-20T02:44:12Z@Laurence: IE7 does not support css styles on optgroup or option elements. At least not bordershttp://stackoverflow.com/questions/1151652/java-chat-server/1151750#1151750Comment by grom on Java Chat Servergrom2009-07-21T08:35:51Z2009-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/…</a>http://stackoverflow.com/questions/1151652/java-chat-server/1151862#1151862Comment by grom on Java Chat Servergrom2009-07-21T08:34:05Z2009-07-21T08:34:05ZNPTL 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/…</a>http://stackoverflow.com/questions/438397/can-a-java-applet-use-the-printer/438511#438511Comment by grom on Can a Java Applet use the printer?grom2009-03-17T09:47:37Z2009-03-17T09:47:37ZTom you have to have it use the HTMLEditorKit. Try testPanel.setContentType("text/html") before setting html content with setTexthttp://stackoverflow.com/questions/597554/how-to-convert-between-timezones-with-win32-api/597561#597561Comment by grom on How to convert between timezones with win32 API?grom2009-02-28T05:43:08Z2009-02-28T05:43:08ZThanks 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-byComment by grom on Can someone explain to me what the reasoning behind passing by "value" and not by "reference" in Java is?grom2009-02-05T06:39:53Z2009-02-05T06:39:53Zalso 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/…</a>http://stackoverflow.com/questions/514610/regex-html-whitelist/514739#514739Comment by grom on RegEx: HTML whitelistgrom2009-02-05T06:34:06Z2009-02-05T06:34:06ZFair 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#514717Comment by grom on How do I open a file from line X to line Y in PHP?grom2009-02-05T06:33:08Z2009-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#514717Comment by grom on How do I open a file from line X to line Y in PHP?grom2009-02-05T05:51:09Z2009-02-05T05:51:09ZYeah 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#489088Comment by grom on How can you customize the numbers in an ordered list?grom2009-01-30T00:33:16Z2009-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#489088Comment by grom on How can you customize the numbers in an ordered list?grom2009-01-29T23:30:07Z2009-01-29T23:30:07ZAlso 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#489088Comment by grom on How can you customize the numbers in an ordered list?grom2009-01-29T22:38:02Z2009-01-29T22:38:02ZWhat Firefox issue?http://stackoverflow.com/questions/10877/how-can-you-customize-the-numbers-in-an-ordered-list/486704#486704Comment by grom on How can you customize the numbers in an ordered list?grom2009-01-29T22:31:18Z2009-01-29T22:31:18ZAll 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.