User Kevin Beck - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T00:12:23Zhttp://stackoverflow.com/feeds/user/24734http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1557913/flex-compiler-error-please-put-definition-in-a-package-for-classes-that-are-in/1557956#15579560Answer by Kevin Beck for Flex compiler error: "please put definition in a package" for classes that ARE in a packageKevin Beck2009-10-13T02:38:13Z2009-10-13T02:38:13Z<p>Problem solved - I had missed out some items in the path in the environment where I was launching Eclipse.</p>
<pre><code> "C:\Program Files\Adobe\Flex Builder 3 Plug-in\sdks\3.2.0"\bin
"C:\Program Files\Adobe\Flex Builder 3 Plug-in\sdks\3.2.0"\frameworks
"C:\Program Files\Adobe\Flex Builder 3 Plug-in\jre"\bin
"C:\Program Files\Adobe\Flex Builder 3 Plug-in\jre"\lib
</code></pre>
<p>I'm amazed anything at all worked with this much missing from my path.</p>
http://stackoverflow.com/questions/1557913/flex-compiler-error-please-put-definition-in-a-package-for-classes-that-are-in0Flex compiler error: "please put definition in a package" for classes that ARE in a packageKevin Beck2009-10-13T02:11:00Z2009-10-13T02:38:13Z
<p>This is with Flexbuilder 3.2, Eclipse 3.3.2.</p>
<p>I am moving my development environment to a new machine. Actionscript classes that compiled in the old environment now get a compile error:</p>
<pre><code>A file found in a source-path must have an externally visible definition. If a definition in the file is meant to be externally visible, please put the definition in a package.
</code></pre>
<p>I do declare the package in these classes - I think failure to declare the package is the usual reason for this error.</p>
<p>To add to the mystery, many classes in this project compile without errors.</p>
<p>What should I check to diagnose this?</p>
http://stackoverflow.com/questions/1523129/is-there-a-way-to-automate-importing-projects-into-eclipse3Is there a way to automate importing projects into Eclipse?Kevin Beck2009-10-06T00:56:20Z2009-10-08T19:34:25Z
<p>For my current project, every time I set up a new workspace, I need to import hundreds of existing projects scattered in 20+ different directories. Is there a way to automate this step in Eclipse?</p>
<p>These projects are all checked into ClearCase.</p>
http://stackoverflow.com/questions/300360/create-a-button-with-an-icon-in-actionscript2Create a button with an icon in actionscriptKevin Beck2008-11-18T22:21:14Z2009-09-26T05:10:49Z
<p>I want to create buttons with icons in Flex dynamically using Actionscript.</p>
<p>I tried this, with no success:</p>
<pre><code>var closeButton = new Button();
closeButton.setStyle("icon", "@Embed(source='images/closeWindowUp.png");
</code></pre>
http://stackoverflow.com/questions/1101343/what-is-the-purpose-or-use-case-for-an-outer-join-in-sql/1101364#11013647Answer by Kevin Beck for What is the purpose (or use case) for an outer join in SQL?Kevin Beck2009-07-09T01:15:25Z2009-07-09T04:28:05Z<p>An example use case would be to produce a report that shows ALL customers and their purchases. That is, show even customers who have not purchased anything. If you do an ordinary join of customers and purchases, the report would show only those customers with at least one purchase.</p>
http://stackoverflow.com/questions/292066/why-does-flex-let-me-treat-a-class-as-an-object1Why does Flex let me treat a class as an objectKevin Beck2008-11-15T03:07:12Z2009-05-29T18:53:39Z
<p>This code is blunderous, as it adds a class to an array and later tries to pull it and manipulate it as if it were an object.</p>
<pre><code>private function fail(event:Event):void
{
var myObj:MyClass;
var a:ArrayCollection = new ArrayCollection();
var x:MyClass;
var y:MyClass;
myObj = new MyClass;
a.addItem(myObj);
a.addItem(MyClass); // !!BAD!!
x = a[0];
y = a[1];
}
</code></pre>
<p>When I did this accidentally, it took me forever to see what I had done wrong. Partly because the error message didn't tell me anything I could understand:</p>
<pre><code>TypeError: Error #1034: Type Coercion failed: cannot convert com.ibm.ITest::MyClass$ to com.ibm.ITest.MyClass.
at ITest/fail()[C:\work_simple01\ITest\src\ITest.mxml:51]
at ITest/___ITest_Button5_click()[C:\work_simple01\ITest\src\ITest.mxml:61]
</code></pre>
<p>So my question is, why is the line marked !!BAD!! above even allowed? I would expect a compile time error here. Since it compiles, there must be some use for this that I am unaware of. What is it?</p>
http://stackoverflow.com/questions/449662/exception-while-running-number-of-queries-concurrently-on-db2/907108#9071081Answer by Kevin Beck for Exception while running number of queries concurrently on DB2Kevin Beck2009-05-25T15:12:40Z2009-05-25T15:12:40Z<p>The pagesize of a bufferpool has to match the pagesize of the tablespaces it is associated with. Do all of your tablespaces use 32K pages? You should check whether there is a different bufferpool that is running out of pages. 10,000 pages should be more than enough to avoid the error you are seeing.</p>
http://stackoverflow.com/questions/432549/what-single-java-book-would-you-recommend-for-an-experienced-software-developer/899832#89983211Answer by Kevin Beck for What single Java book would you recommend for an experienced software developer?Kevin Beck2009-05-22T20:25:25Z2009-05-22T20:26:59Z<p>My situation was similar to yours. I tried a couple of different books and settled on <a href="http://www.mindview.net/Books/TIJ/" rel="nofollow">Thinking in Java</a> by Bruce Eckel.</p>
<p>It assumes you know basic programming and some programming language terminology.</p>
http://stackoverflow.com/questions/882422/glibc-detected-perl-double-free-or-corruption-prev-0x0c2b7138/882491#8824911Answer by Kevin Beck for *** glibc detected *** perl: double free or corruption (!prev): 0x0c2b7138 ***Kevin Beck2009-05-19T12:36:42Z2009-05-19T12:36:42Z<p>This looks like an error internal to Perl. The "double free or corruption" refers to memory being freed twice, or corrupted. Perl manages memory for you, so this should never happen if Perl is working correctly.</p>
<p>Is there a newer version of Perl you can upgrade to?</p>
http://stackoverflow.com/questions/880850/laws-of-computer-science-and-programming/880877#88087741Answer by Kevin Beck for Laws of Computer Science and ProgrammingKevin Beck2009-05-19T03:47:10Z2009-05-19T03:47:10Z<p><a href="http://en.wikipedia.org/wiki/Brook%27s%5Flaw" rel="nofollow">Brook's law</a>:</p>
<p>Adding manpower to a late software project makes it later.</p>
http://stackoverflow.com/questions/870860/how-can-you-get-a-variables-value-given-its-name-in-korn-shell/870897#8708972Answer by Kevin Beck for How can you get a variable's value given its name in korn shell?Kevin Beck2009-05-15T21:12:14Z2009-05-17T23:57:58Z<pre>
eval `echo '$'$var_name`
</pre>
<p>echo concatenates a '$' to the variable name inside $var_name, eval evaluates it to show the value.</p>
<p>EDIT:
The above isn't quite right. The correct answer is with no backticks.</p>
<pre>
eval echo '$'$var_name
</pre>
http://stackoverflow.com/questions/859739/duplicate-text-finding/859805#8598052Answer by Kevin Beck for Duplicate text-findingKevin Beck2009-05-13T19:06:58Z2009-05-13T19:19:11Z<p>You can use the Smith-Waterman algorithm to do local alignment, comparing the string against itself.</p>
<p><a href="http://en.wikipedia.org/wiki/Smith-Waterman%5Falgorithm" rel="nofollow">http://en.wikipedia.org/wiki/Smith-Waterman_algorithm</a></p>
<p>EDIT: To adapt the algorithm for self alignment, you need to force values in the diagonal to zero - that is, penalize the trivial solution of aligning the whole string exactly with itself. Then the "second best" alignment will pop out instead. This will be the longest two matching substrings. Repeat the same sort of thing to find progressively shorter matching substrings.</p>
http://stackoverflow.com/questions/842125/regular-expression-to-replace/842136#8421367Answer by Kevin Beck for Regular expression to replace _Kevin Beck2009-05-08T22:46:20Z2009-05-08T22:46:20Z<p>The "g" is for "global". If you leave it off, the substitution will apply only once on each line.</p>
<p>%s/old/new/</p>
http://stackoverflow.com/questions/839831/flex-bind-a-labels-fontsize-to-be-half-the-size-of-another-label/840490#8404900Answer by Kevin Beck for Flex: bind a label's fontSize to be half the size of another label?Kevin Beck2009-05-08T15:44:32Z2009-05-08T16:24:53Z<p>What you tried gets called too early, so the font for "mylabel" isn't initialized yet. You could use the initialize event to do this after the UI components are filled in.</p>
<pre><code><mx:Label id="mytitle" text="{halfSize}"
initialize="{setStyle('fontSize', mylabel.getStyle('fontSize') / 2)}"/>
</code></pre>
http://stackoverflow.com/questions/839975/how-does-c-by-ref-argument-passing-is-compiled-in-assembly/840018#8400180Answer by Kevin Beck for How does c++ by-ref argument passing is compiled in assembly?Kevin Beck2009-05-08T14:21:34Z2009-05-08T14:21:34Z<p>The difference is that it passes the address of the parameter, rather than the value of the parameter.</p>
http://stackoverflow.com/questions/813752/how-can-i-pre-allocate-a-string-in-perl/813759#813759-2Answer by Kevin Beck for How can I pre-allocate a string in Perl?Kevin Beck2009-05-02T00:04:48Z2009-05-02T00:04:48Z<p>Yes, pre-extending strings that you know will grow is a good idea.</p>
<p>You can use the 'x' operator to do this. For example, to preallocate 1000 spaces:</p>
<p>$s = " " x 1000:</p>
http://stackoverflow.com/questions/739596/why-is-my-implementation-of-wc-off-by-one-word-solved/739599#7395992Answer by Kevin Beck for Why is my implementation of wc off by one word? [solved]Kevin Beck2009-04-11T05:59:51Z2009-04-11T05:59:51Z<p>You are counting \n as a word even for a blank line.</p>
http://stackoverflow.com/questions/674837/whats-a-good-data-structure-for-building-equivalence-classes-on-nodes-of-a-tree/732411#7324111Answer by Kevin Beck for What's a good data structure for building equivalence classes on nodes of a tree?Kevin Beck2009-04-09T00:44:26Z2009-04-09T00:44:26Z<p>You seem to have two forms of equivalence to deal with. Plain equivalence (A), tracked as equivalence classes which are kept up to date and structural equivalence (D), for which you occasionally go build a single equivalence class and then throw it away.</p>
<p>It sounds to me like the problem would be conceptually simpler if you maintain equivalence classes for both plain and structural equivalence. If that introduces too much churn for the structural equivalence, you could maintain equivalence classes for some aspects of structural equivalence. Then you could find a balance where you can afford the maintenance of those equivalence classes but still greatly reduce the number of nodes to examine when building a list of structurally equivalent nodes.</p>
http://stackoverflow.com/questions/715643/search-for-string-and-get-count-in-vi-editor/715659#7156594Answer by Kevin Beck for Search for string and get count in VI editorKevin Beck2009-04-03T20:43:11Z2009-04-03T20:43:11Z<p>:g/xxxx/d</p>
<p>This will delete all the lines with pattern, and report how many deleted. Undo to get them back after.</p>
http://stackoverflow.com/questions/319328/writing-a-while-loop-in-the-c-preprocessor/319399#3193990Answer by Kevin Beck for Writing a while loop in the C preprocessorKevin Beck2008-11-26T00:53:18Z2008-11-26T00:53:18Z<p>Not quite what you asked, but checkout these links to a C program that is also a valid makefile and shell script.
<p></p>
<blockquote>
<p>The C, make and shell code build upon
each other to create a C program (?)
which when executed as a shell script
will compile itself through the C
compiler using a makefile!</p>
</blockquote>
<p>A winner in the 2000 obfuscated C contest.</p>
<p><a href="http://www.ioccc.org/2000/tomx.c" rel="nofollow">http://www.ioccc.org/2000/tomx.c</a> <br>
<a href="http://www.ioccc.org/2000/tomx.hint" rel="nofollow">http://www.ioccc.org/2000/tomx.hint</a></p>
http://stackoverflow.com/questions/300360/create-a-button-with-an-icon-in-actionscript/300768#3007682Answer by Kevin Beck for Create a button with an icon in actionscriptKevin Beck2008-11-19T01:40:35Z2008-11-19T01:40:35Z<p>I found an answer that works for me. In my .mxml file, I create Classes for the icons I will use:</p>
<pre><code>// Classes for icons
[Embed(source='images/closeWindowUp.png')]
public static var CloseWindowUp:Class;
[Embed(source='/images/Down_Up.png')]
public static var Down_Up:Class;
[Embed(source='/images/Up_Up.png')]
public static var Up_Up:Class;
</code></pre>
<p>In the Actionscript portion of my application, I use these classes when dynamically creating buttons:</p>
<pre><code>var buttonHBox:HBox = new HBox();
var closeButton:Button = new Button();
var upButton:Button = new Button();
var downButton:Button = new Button();
closeButton.setStyle("icon", SimpleWLM.CloseWindowUp);
buttonHBox.addChild(closeButton);
upButton.setStyle("icon", SimpleWLM.Up_Up);
buttonHBox.addChild(upButton);
downButton.setStyle("icon", SimpleWLM.Down_Up);
buttonHBox.addChild(downButton);
</code></pre>
http://stackoverflow.com/questions/282992/is-there-a-need-to-close-file-descriptors-before-exit/283010#2830103Answer by Kevin Beck for Is there a need to close file descriptors before exit?Kevin Beck2008-11-12T04:11:59Z2008-11-12T04:11:59Z<p>Closing file descriptors when you are done using them makes your code more reusable and easier to extend. This sounds to me like a case where you have a valid reason for letting them get closed automatically.</p>
http://stackoverflow.com/questions/279610/create-db2-history-table-trigger/281442#2814421Answer by Kevin Beck for Create DB2 History Table TriggerKevin Beck2008-11-11T16:42:34Z2008-11-11T16:42:34Z<p>Have you considered doing this as a two step process? Implement a simple trigger that records the original and changed version of the entire row. Then write a separate program that runs once a day to extract the changed fields as you describe above.</p>
<p>This makes the trigger simpler, safer, faster and you have more choices for how to implement the post processing step.</p>
http://stackoverflow.com/questions/277043/how-can-i-catch-and-handle-a-signal-in-perl/277050#27705010Answer by Kevin Beck for How can I catch and handle a signal in Perl?Kevin Beck2008-11-10T04:20:45Z2008-11-10T04:20:45Z<p>Use the %SIG hash to install signal handlers. Example:</p>
<p>$SIG{INT} = 'SigIntHandler';</p>
<p>Where SigIntHandler is a sub that you write to be called when an interrupt is caught.</p>
http://stackoverflow.com/questions/267465/how-to-revoke-permission-of-windows-administrator-user-from-db2/274355#2743550Answer by Kevin Beck for How to revoke permission of Windows Administrator user from DB2?Kevin Beck2008-11-08T04:17:31Z2008-11-08T04:17:31Z<p>By default, DB2 databases are created with CONNECT authority granted to public. If you want to restrict some users from connecting, you need to do</p>
<pre><code>GRANT CONNECT ON DATABASE TO <user1>, <user2>, ...
</code></pre>
<p>Then revoke the CONNECT authority from PUBLIC</p>
<pre><code>REVOKE CONNECT ON DATABASE FROM PUBLIC
</code></pre>
http://stackoverflow.com/questions/252862/db2-query-output-different-behavior/259847#2598470Answer by Kevin Beck for DB2 Query Output - Different BehaviorKevin Beck2008-11-03T20:30:58Z2008-11-03T20:30:58Z<p>Both queries should return the same rows. If this really behaves as you describe, you have found a bug in DB2.</p>
<p>What are you trying to accomplish with this query? If the values (1,2,3,4) of B.COL_A are orphan records, then this query should return no rows. If you meant to be searching for the orphans, you probably need to do some sort of outer join.</p>
http://stackoverflow.com/questions/1523129/is-there-a-way-to-automate-importing-projects-into-eclipse/1523134#1523134Comment by Kevin Beck on Is there a way to automate importing projects into Eclipse?Kevin Beck2009-10-06T01:18:12Z2009-10-06T01:18:12ZForgot to mention, I am using ClearCase for version control. Most of these project I will never need to check out. I just need them imported into my workspace so I can build.http://stackoverflow.com/questions/802901/how-to-use-asutime-limit-for-stored-procComment by Kevin Beck on how to use asutime limit for stored proc?Kevin Beck2009-07-14T02:34:06Z2009-07-14T02:34:06ZWhich platform? ASUTIME has no effect for DB2 LUW.http://stackoverflow.com/questions/1101343/what-is-the-purpose-or-use-case-for-an-outer-join-in-sql/1101364#1101364Comment by Kevin Beck on What is the purpose (or use case) for an outer join in SQL?Kevin Beck2009-07-09T04:27:50Z2009-07-09T04:27:50ZThe use case I described is typically done as a left outer join, you get all rows from the left table (customers) and matching rows from the right (purchases). To guarantee that all rows from BOTH tables are represented in the result, you would use a full outer join.http://stackoverflow.com/questions/882422/glibc-detected-perl-double-free-or-corruption-prev-0x0c2b7138/882491#882491Comment by Kevin Beck on *** glibc detected *** perl: double free or corruption (!prev): 0x0c2b7138 ***Kevin Beck2009-05-19T13:25:53Z2009-05-19T13:25:53ZPersonally, I would try upgrading to 5.8.9. It is supposed to be a maintenance release, so is unlikely to break your application.
The release announcement for Perl 5.8.9 does mention a fix for a threadsafe issue. This could be exactly your problem.
<a href="http://search.cpan.org/~nwclark/perl-5.8.9/pod/perl589delta.pod#Smaller_fixes" rel="nofollow">search.cpan.org/~nwclark/perl-5.8.9/…</a>
In theory, you could attach a debugger to Perl and try to learn more about where the problem is. This would be very ambitious.http://stackoverflow.com/questions/870860/how-can-you-get-a-variables-value-given-its-name-in-korn-shell/870897#870897Comment by Kevin Beck on How can you get a variable's value given its name in korn shell?Kevin Beck2009-05-17T23:58:57Z2009-05-17T23:58:57ZIndeed. I have edited my answer to correct it.http://stackoverflow.com/questions/300360/create-a-button-with-an-icon-in-actionscript/300431#300431Comment by Kevin Beck on Create a button with an icon in actionscriptKevin Beck2008-11-18T23:58:49Z2008-11-18T23:58:49ZAdding the missing close quote/paren didn't make any difference.
I still get a runtime error
Type Coercion failed: cannot convert "@Embed(source='images/closeWindowUp.png')" to Class.
I call
buttonHBox.addChild(closeButton);
Is this what you mean by add to stage?