User jeremy Ruten - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T17:52:24Zhttp://stackoverflow.com/feeds/user/813http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1811796/php-mysql-sanitizing-user-input-is-this-a-bad-idea/1811824#18118243Answer by jeremy Ruten for PHP / MYSQL: Sanitizing user input - is this a bad idea?jeremy Ruten2009-11-28T06:55:25Z2009-11-28T06:55:25Z<p>If you have arrays in your <code>$_REQUEST</code> their values won't be sanitized.</p>
http://stackoverflow.com/questions/1800377/is-it-bad-practice-to-change-state-inside-of-an-if-statement/1800407#18004071Answer by jeremy Ruten for Is it bad practice to change state inside of an if statement?jeremy Ruten2009-11-25T22:36:16Z2009-11-25T22:36:16Z<p>The only thing wrong with it is that it's unfamiliar and confusing to people who didn't write it, at least for a minute while they figure it out. I would probably write it like this to make it more readable:</p>
<pre><code>if (list.length >= 1 && list[0].equals(SKIP_FIRST)) {
return 1;
}
if (list.length >= 2 && (list[0] + "/" + list[1]).equals(SKIP_SECOND)) {
return 2;
}
</code></pre>
http://stackoverflow.com/questions/1745922/regex-for-timestamps-in-php/1745966#17459661Answer by jeremy Ruten for Regex for timestamps in phpjeremy Ruten2009-11-17T01:03:09Z2009-11-17T01:03:09Z<p>You could use <a href="http://php.net/explode" rel="nofollow"><code>explode()</code></a>:</p>
<pre><code>list($date) = explode('T', '2009-11-16T14:05:22-08:00');
</code></pre>
<p><code>$date</code> would now be <code>'2009-11-16'</code>.</p>
http://stackoverflow.com/questions/1745389/checking-querystring-values-in-php/1745402#17454025Answer by jeremy Ruten for Checking querystring values in PHPjeremy Ruten2009-11-16T22:56:57Z2009-11-16T23:03:09Z<p>Use <a href="http://php.net/isset" rel="nofollow"><code>isset()</code></a>:</p>
<pre><code>if (isset($_GET['name'])) {
// your above code
} else {
// display form
}
</code></pre>
http://stackoverflow.com/questions/1739522/how-to-add-an-all-rule-to-this-makefile/1739540#17395402Answer by jeremy Ruten for How to add an all rule to this Makefile?jeremy Ruten2009-11-16T00:54:12Z2009-11-16T00:54:12Z<p>What all is it supposed to do? If you just want it to build <code>calcu</code>, all you have to do is type <code>make</code> and it will make it along with everything it depends on, because it is the first rule in the file.</p>
<p>If you still want to make an <code>all</code> rule, it can be done like this. I recommend putting this above all other rules, so that you can just type <code>make</code> instead of <code>make all</code>.</p>
<pre><code>all: calcu
</code></pre>
http://stackoverflow.com/questions/1739434/whats-wrong-with-this-makefile/1739456#17394565Answer by jeremy Ruten for What's wrong with this Makefile?jeremy Ruten2009-11-16T00:27:27Z2009-11-16T00:27:27Z<p>You need to indent like so. (Note: they changed my tabs into a 4space. Make sure to indent with the tab character.)</p>
<pre><code>LEX = lex
YACC = yacc
CC = gcc
calcu: y.tab.o lex.yy.o
$(CC) -o calcu y.tab.o lex.yy.o -ly -lfl
y.tab.c y.tab.h: parser.y
$(YACC) -d parser.y
y.tab.o: y.tab.c parser.h
$(CC) -c y.tab.c
lex.yy.o: y.tab.h lex.yy.c
$(CC) -c lex.yy.c
lex.yy.c: calclexer.l parser.h
$(LEX) calclexer.l
clean:
rm *.o
rm *.c
rm calcu
</code></pre>
<p>The extra blank lines aren't required but the indenting is. You'll also need to make an <code>all</code> rule if you want to <code>make all</code>.</p>
http://stackoverflow.com/questions/1735925/php-regex-not-new-line/1735935#17359357Answer by jeremy Ruten for PHP regex not new linejeremy Ruten2009-11-14T23:10:48Z2009-11-14T23:10:48Z<p>The dot <code>.</code> does not match newlines unless you use the <code>s</code> modifier.</p>
<pre><code>>>> preg_match("/./", "\n")
0
>>> preg_match("/./s", "\n")
1
</code></pre>
http://stackoverflow.com/questions/1733464/what-does-this-mean-exactly-sessionsessionname-itemrowname/1733491#17334913Answer by jeremy Ruten for What does this mean exactly? $_SESSION['sessionName '][$item['rowName ']]jeremy Ruten2009-11-14T06:27:35Z2009-11-14T06:27:35Z<p><code>$_SESSION</code> is a superglobal that stores session data in an associative array, see <a href="http://php.net/session" rel="nofollow">http://php.net/session</a>.</p>
<p>In your example, the value at <code>$_SESSION['sessionName']</code> is apparently an array itself, which is indexed into with the value of <code>$item['rowName']</code> which smells like a string.</p>
<p>To simplify the expression, you could define these variables:</p>
<pre><code>$sessionName = $_SESSION['sessionName'];
$rowName = $item['rowName'];
</code></pre>
<p>And then we could say that your example code is equivalent to</p>
<pre><code>$sessionName[$rowName]
</code></pre>
http://stackoverflow.com/questions/1732853/inarray-not-working/1732902#17329026Answer by jeremy Ruten for in_array() not workingjeremy Ruten2009-11-14T01:21:14Z2009-11-14T01:41:49Z<p>If your file uses Windows linebreaks (lines end in <code>\r\n</code>), you'll get an invisible <code>\r</code> character at the end of each of your strings. Test for it by running strlen() on one of them:</p>
<pre><code>echo $array[0] . ': ' . strlen($array[0]) . ' chars';
</code></pre>
<p>If you get something like</p>
<pre><code>12345: 6 chars
</code></pre>
<p>You know that's the problem! You can get rid of these characters after exploding the array using <a href="http://php.net/array%5Fmap" rel="nofollow"><code>array_map()</code></a> with <a href="http://php.net/trim" rel="nofollow"><code>trim()</code></a>:</p>
<pre><code>$array = array_map('trim', $array);
</code></pre>
http://stackoverflow.com/questions/1719830/is-this-code-redundant-when-checking-for-a-value-greater-than-zero/1719861#17198611Answer by jeremy Ruten for Is this code redundant when checking for a value greater than zero?jeremy Ruten2009-11-12T04:21:24Z2009-11-12T04:21:24Z<pre><code>>>> $foo = NULL
>>> $foo != 0
false
>>> $foo == 0
true
</code></pre>
<p>PHP treats variables with a <code>NULL</code> value as the integer <code>0</code> with the <code>==</code> operator so the <code>NULL</code> check is indeed redundant.</p>
http://stackoverflow.com/questions/1712031/haskell-chaining-filters/1712054#17120544Answer by jeremy Ruten for haskell, chaining filtersjeremy Ruten2009-11-10T23:43:40Z2009-11-10T23:43:40Z<p>If you defined a function <code>both</code> that looked like this:</p>
<pre><code>both :: (a -> Bool) -> (a -> Bool) -> a -> Bool
both f g x = f x && g x
</code></pre>
<p>Then you could write:</p>
<pre><code>example xs = filter (both p q) xs
</code></pre>
<p>I'm not sure if there's a standard function that does this for you...</p>
http://stackoverflow.com/questions/1699342/what-does-the-brackets-mean-in-python-tablerposi/1699360#16993601Answer by jeremy Ruten for What does the brackets mean in python: table[r][pos+i]?jeremy Ruten2009-11-09T06:16:17Z2009-11-09T06:16:17Z<p>It means that the value of <code>table[r]</code> is <em>another</em> array (an array within an array), which you are indexing into with <code>[pos+i]</code>. So it's the equivalent of:</p>
<pre><code>foo = table[r]
if foo[pos+i] != word[i]:
</code></pre>
http://stackoverflow.com/questions/1698672/preventing-php-code-from-being-pirated/1698695#1698695-1Answer by jeremy Ruten for Preventing PHP Code from being Piratedjeremy Ruten2009-11-09T01:37:29Z2009-11-09T01:37:29Z<p>You could release the code for free.</p>
http://stackoverflow.com/questions/1698524/c-return-and-comparation-inline/1698548#16985482Answer by jeremy Ruten for C return and comparation inlinejeremy Ruten2009-11-09T00:47:57Z2009-11-09T00:47:57Z<p>It takes an array of three <code>EXPRESSION</code>s and evaluates the first one. If the first one evaluates to a true value, it evaluates the second expression and returns its value. Otherwise it evaluates the third expression and returns its value.</p>
http://stackoverflow.com/questions/1698318/ruby-generate-a-random-hex-color/1698364#16983648Answer by jeremy Ruten for Ruby, Generate a random hex colorjeremy Ruten2009-11-08T23:40:14Z2009-11-08T23:40:14Z<p>Here's one way:</p>
<pre><code>colour = "%06x" % (rand * 0xffffff)
</code></pre>
http://stackoverflow.com/questions/1698008/can-php-return-a-boolean-return-aantal-0/1698023#16980236Answer by jeremy Ruten for can php return a boolean? => return $aantal == 0;jeremy Ruten2009-11-08T21:46:13Z2009-11-08T21:46:13Z<p>Try it out!</p>
<pre><code>function is_zero($n) {
return $n == 0;
}
echo gettype(is_zero(0));
</code></pre>
<p>The output:</p>
<pre><code>boolean
</code></pre>
http://stackoverflow.com/questions/1695448/how-can-i-set-variables-in-ruby-with-an-if-statement-on-one-line/1695465#16954654Answer by jeremy Ruten for How can I set variables in Ruby with an if statement on one line?jeremy Ruten2009-11-08T05:26:40Z2009-11-08T05:26:40Z<p>You could use the <code>&&</code> operator:</p>
<pre><code>dog_name = params[:dog] && params[:dog][:name]
</code></pre>
<p>So now <code>dog_name</code> will be <code>nil</code> if <code>params[:dog]</code> does not exist, else it will be the value of <code>params[:dog][:name]</code>.</p>
http://stackoverflow.com/questions/1664362/access-an-array-returned-by-a-function/1664381#16643811Answer by jeremy Ruten for Access an Array Returned by a Functionjeremy Ruten2009-11-02T23:30:42Z2009-11-02T23:30:42Z<p>Not really. You could define a function to do it, though:</p>
<pre><code>function array_value($array, $key) {
return $array[$key];
}
// and then
echo array_value(getData($id), 'name');
</code></pre>
<p>The only other way, which probably won't help you much in this case, is to use <code>list()</code> which will get you the first <code>n</code> items in the returned array. You have to know the order of the items in the list beforehand, though:</p>
<pre><code>function test() {
return array(1, 2, 3, 4);
}
list($one, $two, $three) = test();
// now $one is 1, $two is 2, $three is 3
</code></pre>
http://stackoverflow.com/questions/404231/using-an-enum-as-an-array-index3Using an enum as an array indexjeremy Ruten2008-12-31T23:02:54Z2009-10-28T10:41:35Z
<p>I have this enum:</p>
<pre><code>enum ButtonState {
BUTTON_NORMAL = 0,
BUTTON_PRESSED = 1,
BUTTON_CLICKED = 2
};
const u8 NUM_BUTTON_STATES = 3;
</code></pre>
<p>In my Button class I have member variables <code>ButtonState state;</code> and <code>ButtonColors colors[NUM_BUTTON_STATES];</code>. When drawing the button, I use <code>colors[state]</code> to get the colours for whatever state the button is in.</p>
<p>My questions:</p>
<ol>
<li>Is this good programming style? Is there a better way to do it? (I usually only use enums with switch statements... using an enum as an array index doesn't feel right.)</li>
<li>Do I <em>have</em> to specify the values of the enum? It seems to start from 0 by default and increment by 1 but is it guaranteed to work that way in all compilers?</li>
</ol>
http://stackoverflow.com/questions/1617157/how-to-get-the-first-item-from-an-associative-php-array/1617177#16171773Answer by jeremy Ruten for How to get the first item from an associative PHP array?jeremy Ruten2009-10-24T06:28:22Z2009-10-24T06:28:22Z<p>There's a few options. <a href="http://php.net/array%5Fshift" rel="nofollow"><code>array_shift()</code></a> will return the first element, but it will also remove the first element from the array.</p>
<pre><code>$first = array_shift($array);
</code></pre>
<p><a href="http://php.net/current" rel="nofollow"><code>current()</code></a> will return the value of the array that its internal memory pointer is pointing to, which is the first element by default.</p>
<pre><code>$first = current($array);
</code></pre>
<p>If you want to make sure that it is pointing to the first element, you can always use <a href="http://php.net/reset" rel="nofollow"><code>reset()</code></a>.</p>
<pre><code>reset($array);
$first = current($array);
</code></pre>
http://stackoverflow.com/questions/1616646/php-only-allowing-certain-characters-in-string/1616657#16166571Answer by jeremy Ruten for [PHP] Only allowing certain characters in stringjeremy Ruten2009-10-24T01:06:08Z2009-10-24T01:06:08Z<p>Use a regex. Use <a href="http://php.net/preg%5Fmatch" rel="nofollow">preg_match()</a>.</p>
<pre><code>$matches = preg_match('/[^a-z0-9]/', $string);
</code></pre>
<p>So now if <code>$matches</code> has <code>1</code>, you know the <code>$string</code> contains bad characters. Otherwise <code>$matches</code> is <code>0</code>, and the <code>$string</code> is OK.</p>
http://stackoverflow.com/questions/1615271/what-does-the-syntax-mean-in-this-ruby-example/1615293#16152937Answer by jeremy Ruten for What does the syntax ?. mean in this Ruby example? jeremy Ruten2009-10-23T18:54:15Z2009-10-23T18:54:15Z<p><code>?.</code> returns the ASCII value of the dot. You can put pretty much any char after the question mark to get its ASCII value, like <code>?a</code> or <code>?3</code> or <code>?\\</code>, etc. The reason they are not comparing it to the string <code>"."</code> is that when you index into a string, you get the ASCII value of the char at that index rather than the char itself. To get the char at a certain index you can use <code>[0, 1]</code> as the index. So the options are:</p>
<pre><code>if File.basename(path)[0] == ?.
</code></pre>
<p>Or:</p>
<pre><code>if File.basename(path)[0, 1] == "."
</code></pre>
<p>Or even:</p>
<pre><code>if File.basename(path)[0].chr == "."
</code></pre>
http://stackoverflow.com/questions/1609702/code-golf-playing-cubes/1611500#16115001Answer by jeremy Ruten for Code Golf: Playing Cubesjeremy Ruten2009-10-23T05:19:07Z2009-10-23T05:29:20Z<p><strong>313 bytes of Ruby</strong></p>
<pre><code>c=gets.split.map{|n|n.to_i}+[0];l=[" "*(c.length*5)]*((c.max-c.min)*2+2)
c.each_index{|i|h=c[i];h==0&&next
(h<0?(h...0):(0...h)).to_a.each{|b|y=c.max*2+1-b*2;x=i*4;s=(x+7)..-1
4.times{|a|l[y-a]=l[y-a][0,x+[0,0,1,3][a]]+['|___|/','| | |','/__ /|','__'
][a]+(l[y-a][[(x+6)..-1,s,s,s][a]]||'')}}};l.each{|e|puts e}
</code></pre>
<p>(There is one newline that doesn't count, it's only there because otherwise there would be a very long line in there.)</p>
<p>I used the obvious method of making a 2D array of characters and pasting in the cubes one at a time, bottom to top and left to right.</p>
http://stackoverflow.com/questions/1604479/how-to-sort-an-array-in-this-way-in-php/1604504#16045041Answer by jeremy Ruten for How to sort an array in this way in phpjeremy Ruten2009-10-22T01:07:03Z2009-10-22T01:07:03Z<p>Your example doesn't make sense. You can't have two equal keys in the same array. If you want to sort the array's values and have their keys preserved, use <a href="http://php.net/asort" rel="nofollow"><code>asort()</code></a>. Or any of the functions in the table at <a href="http://ca.php.net/manual/en/array.sorting.php" rel="nofollow">http://ca.php.net/manual/en/array.sorting.php</a> that say "yes" under "Maintains key association".</p>
http://stackoverflow.com/questions/1604446/adding-a-key-value-to-all-arrays-within-an-array/1604456#16044561Answer by jeremy Ruten for Adding a key & value to all arrays within an arrayjeremy Ruten2009-10-22T00:48:24Z2009-10-22T00:48:24Z<p>I don't think a better way exists. A foreach loop isn't a bad way to do it. Short and simple:</p>
<pre><code>foreach ($arr as &$val) {
$val['width'] = 400;
}
</code></pre>
http://stackoverflow.com/questions/1585835/inserting-php-array-data-into-mysql-isnt-working/1585846#15858460Answer by jeremy Ruten for Inserting php array data into mysql isn't workingjeremy Ruten2009-10-18T19:47:30Z2009-10-18T19:47:30Z<p>Try running the query like this:</p>
<pre><code>mysql_query($query) or die(mysql_error());
</code></pre>
<p>This will give you a better idea of what you're doing wrong if there's a problem with your query. You may also want to print your SQL for debugging:</p>
<pre><code>echo "Query $i: $query<br />"
</code></pre>
http://stackoverflow.com/questions/1575096/code-golf-musical-notes/1575489#157548910Answer by jeremy Ruten for Code Golf: Musical Notesjeremy Ruten2009-10-15T22:28:37Z2009-10-18T07:09:37Z<p><strong>159 Ruby chars</strong></p>
<pre><code>n=gets.split;9.downto(0){|p|m='- '[p%2,1];n.each{|t|r=(t[0]-62)%7;g=t[2..-1]
print m+(r==p ?'O'+m*2:p>=r&&g&&p<r+4?m+'|'+(g.to_i>1<<-p+r+5?'\\':m):m*3)}
puts}
</code></pre>
http://stackoverflow.com/questions/1546555/php-i-cant-trim-off-the-last-character-which-is-a-space/1546564#15465643Answer by jeremy Ruten for PHP - I can't trim off the last character which is a spacejeremy Ruten2009-10-09T23:41:12Z2009-10-09T23:41:12Z<p>Use <a href="http://php.net/trim" rel="nofollow"><code>trim()</code></a>, or <a href="http://php.net/rtrim" rel="nofollow"><code>rtrim()</code></a>, or <a href="http://php.net/ltrim" rel="nofollow"><code>ltrim()</code></a>.</p>
http://stackoverflow.com/questions/1523283/c-strcmp-array/1523291#15232913Answer by jeremy Ruten for C++ strcmp array jeremy Ruten2009-10-06T02:10:22Z2009-10-06T02:10:22Z<p>From what I can tell, you aren't comparing two strings as they aren't null-terminated. You may want to use <code>memcmp()</code> instead:</p>
<pre><code>if (memcmp(blk_receive_opcode, opcode_data, 2) == 0) {
}
</code></pre>
http://stackoverflow.com/questions/1515740/hot-to-update-mysqlfetcharray/1515745#15157452Answer by jeremy Ruten for Hot to update mysql_fetch_arrayjeremy Ruten2009-10-04T06:26:57Z2009-10-04T06:26:57Z<p><code>$row[0]</code> is in fact valid in double-quoted strings. I think your problem is a misspelling: first you assign <code>$rez2</code> a value and then in the query you use <code>$res2</code>.</p>
http://stackoverflow.com/questions/1745922/regex-for-timestamps-in-php/1745930#1745930Comment by jeremy Ruten on Regex for timestamps in phpjeremy Ruten2009-11-17T01:10:46Z2009-11-17T01:10:46Zone-digit months and days will probably have leading zeros, like the '05' in '14:05:22' in your example.http://stackoverflow.com/questions/1739564/whats-wrong-with-this-yacc-fileComment by jeremy Ruten on What's wrong with this yacc file?jeremy Ruten2009-11-16T01:25:15Z2009-11-16T01:25:15Z@RageZ haha, I can't help much on this one :[http://stackoverflow.com/questions/1739522/how-to-add-an-all-rule-to-this-makefileComment by jeremy Ruten on How to add an all rule to this Makefile?jeremy Ruten2009-11-16T00:51:28Z2009-11-16T00:51:28ZI saw this coming :)http://stackoverflow.com/questions/1733464/what-does-this-mean-exactly-sessionsessionname-itemrowname/1733491#1733491Comment by jeremy Ruten on What does this mean exactly? $_SESSION['sessionName '][$item['rowName ']]jeremy Ruten2009-11-14T07:02:45Z2009-11-14T07:02:45ZYes, hashtable sounds about right. All PHP arrays are "associative arrays", which I believe is a synonym for "hash tables". They have keys, which can be integers or strings, and map each key to a value. You may want to read <a href="http://php.net/array" rel="nofollow">php.net/array</a>http://stackoverflow.com/questions/1732853/inarray-not-working/1732868#1732868Comment by jeremy Ruten on in_array() not workingjeremy Ruten2009-11-14T01:15:35Z2009-11-14T01:15:35Zin_array() only gives you bools. either true or false, every time. <a href="http://php.net/in_array" rel="nofollow">php.net/in_array</a>http://stackoverflow.com/questions/1719830/is-this-code-redundant-when-checking-for-a-value-greater-than-zeroComment by jeremy Ruten on Is this code redundant when checking for a value greater than zero?jeremy Ruten2009-11-12T04:44:08Z2009-11-12T04:44:08ZIs there a <code>$slcustom47</code>?http://stackoverflow.com/questions/1698672/preventing-php-code-from-being-pirated/1698695#1698695Comment by jeremy Ruten on Preventing PHP Code from being Piratedjeremy Ruten2009-11-09T02:28:24Z2009-11-09T02:28:24Zok he edited his profile, sorry waiwai.http://stackoverflow.com/questions/1698672/preventing-php-code-from-being-pirated/1698695#1698695Comment by jeremy Ruten on Preventing PHP Code from being Piratedjeremy Ruten2009-11-09T02:14:02Z2009-11-09T02:14:02Zpay for his what?? <a href="http://stackoverflow.com/users/89334/waiwai933" rel="nofollow">stackoverflow.com/users/89334/waiwai933</a>http://stackoverflow.com/questions/1604543/closable-or-closeable/1604548#1604548Comment by jeremy Ruten on Closable or Closeable?jeremy Ruten2009-10-22T01:27:25Z2009-10-22T01:27:25Zalso this: <a href="http://google.com/search?q=closeable" rel="nofollow">google.com/search?q=closeable</a>http://stackoverflow.com/questions/1602836/comparing-5-integers-in-least-number-of-comparisons/1602862#1602862Comment by jeremy Ruten on Comparing 5 Integers in least number of comparisonsjeremy Ruten2009-10-21T18:57:53Z2009-10-21T18:57:53Zright, thankyou. :Phttp://stackoverflow.com/questions/1575096/code-golf-musical-notes/1575489#1575489Comment by jeremy Ruten on Code Golf: Musical Notesjeremy Ruten2009-10-18T05:19:37Z2009-10-18T05:19:37Zyes I did just notice that. And got it down to 182 chars while I was at it :Phttp://stackoverflow.com/questions/1583964/convert-every-letter-from-a-paragraph-string-to-lowercase-before-storing-it-bac/1583984#1583984Comment by jeremy Ruten on Convert every letter from a paragraph (string) to lowercase before storing it back to the string (C Programming)jeremy Ruten2009-10-18T04:14:59Z2009-10-18T04:14:59Zyou could write it as <code>for(i = 0; article[i] != '\0'; i++)</code>http://stackoverflow.com/questions/1583964/convert-every-letter-from-a-paragraph-string-to-lowercase-before-storing-it-bac/1583969#1583969Comment by jeremy Ruten on Convert every letter from a paragraph (string) to lowercase before storing it back to the string (C Programming)jeremy Ruten2009-10-18T04:11:15Z2009-10-18T04:11:15Zyou still need to dereference <code>c</code> in the for loop condition.http://stackoverflow.com/questions/1583964/convert-every-letter-from-a-paragraph-string-to-lowercase-before-storing-it-bac/1583976#1583976Comment by jeremy Ruten on Convert every letter from a paragraph (string) to lowercase before storing it back to the string (C Programming)jeremy Ruten2009-10-18T04:07:58Z2009-10-18T04:07:58Zyes that could be the problem: the toLower definition (or its prototype) needs to go above the spellCheck definition.http://stackoverflow.com/questions/1583964/convert-every-letter-from-a-paragraph-string-to-lowercase-before-storing-it-bacComment by jeremy Ruten on Convert every letter from a paragraph (string) to lowercase before storing it back to the string (C Programming)jeremy Ruten2009-10-18T04:03:34Z2009-10-18T04:03:34Zis that the whole program? You need a main() function.