User Ray Tayek - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T11:08:32Zhttp://stackoverflow.com/feeds/user/51292http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1829961/an-overview-of-unit-testing-terminology-stub-vs-mock-integration-vs-interact/1830116#18301162Answer by Ray Tayek for An overview of unit testing terminology ( stub vs mock , integration vs. interaction )?Ray Tayek2009-12-02T01:25:00Z2009-12-02T01:25:00Z<p>this is an excellent book: <a href="http://xunitpatterns.com/" rel="nofollow">http://xunitpatterns.com/</a></p>
<p>see: <a href="http://xunitpatterns.com/Mocks,%20Fakes,%20Stubs%20and%20Dummies.html" rel="nofollow">http://xunitpatterns.com/Mocks,%20Fakes,%20Stubs%20and%20Dummies.html</a></p>
<p>and <a href="http://xunitpatterns.com/XUnit%20Terminology%20Crossreference.html" rel="nofollow">http://xunitpatterns.com/XUnit%20Terminology%20Crossreference.html</a></p>
http://stackoverflow.com/questions/972611/old-developers-any-future/1052172#10521722Answer by Ray Tayek for Old Developers - any future ?Ray Tayek2009-06-27T05:32:29Z2009-10-03T00:31:52Z<p>I'm 62. I started programming when I was 20. I still love to write code and make it work (but it does seem harder sometimes).</p>
<p>It seems like there are two kinds of programmers: those that love to write code and those that don't.</p>
<p>I tend to view code as an end in itself as opposed to a means to an end.</p>
http://stackoverflow.com/questions/1420103/design-patterns-what-are-some-new-ones-where-are-the-existing-ones-used/1430410#14304100Answer by Ray Tayek for Design patterns: what are some new ones, where are the existing ones used?Ray Tayek2009-09-16T01:05:52Z2009-09-16T01:05:52Z<p>there are no new <em>design</em> patterns. the ones in the gang-of-four book (modulo a few) are pretty much orthogonal and complete. there are lots of <em>other</em> types of patterns.</p>
http://stackoverflow.com/questions/1402695/j2ee-download-link/1402707#14027070Answer by Ray Tayek for J2EE Download LinkRay Tayek2009-09-09T23:38:59Z2009-09-09T23:38:59Z<p>see Java EE at: <a href="http://developers.sun.com/downloads/" rel="nofollow">http://developers.sun.com/downloads/</a></p>
http://stackoverflow.com/questions/1395567/vector-education/1396853#13968530Answer by Ray Tayek for Vector EducationRay Tayek2009-09-08T23:21:11Z2009-09-08T23:21:11Z<p>i liked this book when i taught a computer graphics course: <a href="http://math.ucsd.edu/~sbuss/MathCG/" rel="nofollow">http://math.ucsd.edu/~sbuss/MathCG/</a></p>
<p>3D Computer Graphics:
A Mathematical Introduction with OpenGL
Author: Samuel R. Buss</p>
<p>This is the homepage for the book 3D Computer Graphics: A mathematical approach with OpenGL, by Sam Buss, Cambridge University Press, 2003. This book provides a mathematical introduction to 3D Computer Graphics at the advanced undergraduate or introductory graduate level.</p>
<pre><code>* Table of contents: HTML or more complete contents as PDF. (Pagination has changed for the actual version.)
* Sample OpenGL programs
* Ray Trace software. Release 3 is now the standard version. NEW: Supports .NFF and .OBJ files. Uses kd-tree acceleration.
* Figures from the book. All figures in postscript and PDF formats.
* Errata page. List of known errata. Please email new errata to me at sbuss@ucsd.edu.
</code></pre>
http://stackoverflow.com/questions/1351275/most-of-my-interesting-tags-have-no-or-one-questions0most of my "interesting tags" have no (or one) questions [closed]Ray Tayek2009-08-29T12:00:47Z2009-08-29T12:12:35Z
<p>this started happening a day or so ago. java has lots, but groovy, math, oop, and grails have zero or one.</p>
http://stackoverflow.com/questions/1320187/library-implementation-pitfalls/1320320#13203200Answer by Ray Tayek for Library implementation pitfallsRay Tayek2009-08-24T03:09:31Z2009-08-24T03:09:31Z<p>you could separate your lib into two jars, one pure interfaces and the other implementations.</p>
<p>you could provide set methods for the lib's own in, out and err streams.</p>
<p>you could use internationalizaton: <a href="http://java.sun.com/javase/6/docs/technotes/guides/intl/index.html" rel="nofollow">http://java.sun.com/javase/6/docs/technotes/guides/intl/index.html</a></p>
<p>consider using creational patterns (<a href="http://en.wikipedia.org/wiki/Creational%5Fpattern" rel="nofollow">http://en.wikipedia.org/wiki/Creational%5Fpattern</a>), the facade pattern (<a href="http://en.wikipedia.org/wiki/Facade%5Fpattern" rel="nofollow">http://en.wikipedia.org/wiki/Facade%5Fpattern</a>), and any of other the design patterns (<a href="http://en.wikipedia.org/wiki/Design%5Fpattern%5F%28computer%5Fscience%29" rel="nofollow">http://en.wikipedia.org/wiki/Design%5Fpattern%5F%28computer%5Fscience%29</a>) if appropriate.</p>
http://stackoverflow.com/questions/1298806/grails-how-to-create-dummy-data-for-unit-test/1299186#12991862Answer by Ray Tayek for [grails] how to create dummy data for unit test ?Ray Tayek2009-08-19T11:04:42Z2009-08-19T11:04:42Z<p>as noted, you can use the test fixture. you can also put code in bootstrap (<a href="http://www.transentia.com.au/flatpress/2009/08/09/pimped-out-grails-bootstraps/" rel="nofollow">http://www.transentia.com.au/flatpress/2009/08/09/pimped-out-grails-bootstraps/</a>). if you are using junit 4, you might be able to use @BeforeClass. also, there is <a href="http://grails.org/plugin/build-test-data" rel="nofollow">http://grails.org/plugin/build-test-data</a> that may be of interest.</p>
<p>if you really mean unit test (as opposed to integration test), take a look at <a href="http://grails.org/Testing+Plugin" rel="nofollow">http://grails.org/Testing+Plugin</a> (these run fast).</p>
http://stackoverflow.com/questions/587458/implement-mixin-in-java/1285705#12857051Answer by Ray Tayek for Implement Mixin In Java?Ray Tayek2009-08-17T00:08:18Z2009-08-17T00:08:18Z<p>just ran across: <a href="http://www.berniecode.com/blog/2009/08/16/mixins-for-java/" rel="nofollow">http://www.berniecode.com/blog/2009/08/16/mixins-for-java/</a></p>
http://stackoverflow.com/questions/1246352/java-what-are-some-steps-to-learn-a-project-where-you-have-a-little-or-no-experi/1246459#12464590Answer by Ray Tayek for Java: what are some steps to learn a project where you have a little or no experienceRay Tayek2009-08-07T19:05:01Z2009-08-07T19:05:01Z<p>if you have tests, study them. if not, then write some.</p>
http://stackoverflow.com/questions/1237581/need-a-java-map-table-with-multiple-keys-to-one-value-value-is-commonly-altered/1237785#12377850Answer by Ray Tayek for Need a Java map/table with multiple keys to one value. Value is commonly alteredRay Tayek2009-08-06T09:09:46Z2009-08-06T09:09:46Z<p>this <em>may</em> do what you want:</p>
<pre><code>import java.util.*;
class Value {
public String toString() {
return x.toString();
}
Integer x=0;
}
public class Main {
public static void main(String[] arguments) {
Map m=new HashMap();
final Value v=new Value();
m.put(1,v);
m.put(2,v);
System.out.println(m.get(1));
System.out.println(m.get(2));
v.x=42;
System.out.println(m.get(1));
System.out.println(m.get(2));
}
</code></pre>
http://stackoverflow.com/questions/942066/speeding-up-grails-test-app/1236313#12363130Answer by Ray Tayek for Speeding up grails test-appRay Tayek2009-08-05T23:44:46Z2009-08-05T23:44:46Z<p>grails now comes with <a href="http://grails.org/Testing+Plugin" rel="nofollow">http://grails.org/Testing+Plugin</a> installed. this mocks the domain stuff, so you can do some testing of domain classes as <em>unit</em> tests. they run pretty fast.</p>
http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1115276#11152764Answer by Ray Tayek for What's your most controversial programming opinion?Ray Tayek2009-07-12T03:53:08Z2009-07-12T03:53:08Z<p>in almost <em>all</em> cases, comments are evil: <a href="http://gooddeveloper.wordpress.com/" rel="nofollow">http://gooddeveloper.wordpress.com/</a></p>
http://stackoverflow.com/questions/1102972/the-most-important-recent-book-on-software-engineering-after-mythical-man-month/1103357#11033571Answer by Ray Tayek for The most important recent book on Software Engineering (after "Mythical Man-Month")Ray Tayek2009-07-09T11:48:40Z2009-07-09T11:48:40Z<p>i like uncle bob's clean code:<a href="http://blog.objectmentor.com/articles/2008/04/08/clean-code-whew" rel="nofollow">http://blog.objectmentor.com/articles/2008/04/08/clean-code-whew</a></p>
http://stackoverflow.com/questions/1096806/learning-java-as-a-c-programmer/1096840#10968400Answer by Ray Tayek for Learning java as a C++ programmerRay Tayek2009-07-08T08:35:43Z2009-07-08T08:35:43Z<p>android uses it's own jvm. it has the standard jdk minus swing and awt (gui stuff).</p>
<p>you should think of a reference as a pointer (but you can't do pointer arithmetic with it).</p>
<p>packages are a directory structure enforcement policy.</p>
<p>extends means inherits from (java uses implements if the base "class" is an interface).</p>
<p>import is like an include (but the code is compiled).</p>
<p>everything in a java program must be in a class.</p>
http://stackoverflow.com/questions/1083056/external-data-file-for-unit-tests/1083107#10831071Answer by Ray Tayek for External Data File for Unit TestsRay Tayek2009-07-04T22:41:55Z2009-07-04T22:41:55Z<p>take a look at: <a href="http://xunitpatterns.com/Data-Driven%20Test.html" rel="nofollow">http://xunitpatterns.com/Data-Driven%20Test.html</a></p>
http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe/1081770#10817700Answer by Ray Tayek for Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?Ray Tayek2009-07-04T08:01:33Z2009-07-04T08:01:33Z<p>lowest: <a href="http://en.wikipedia.org/wiki/IBM_1620" rel="nofollow">http://en.wikipedia.org/wiki/IBM_1620</a> machine language (binary).</p>
<p>highest (level of abstraction): writing builders in groovy</p>
http://stackoverflow.com/questions/1081342/iterating-over-a-data-structure-with-51-million-primes-quickly/1081683#10816830Answer by Ray Tayek for Iterating over a data structure with 51 million primes quickly.Ray Tayek2009-07-04T06:45:16Z2009-07-04T06:45:16Z<p>this java applet seems fairly fast: Table of Primes from 1 to 1 000 000 000 000 <a href="http://www.walter-fendt.de/m14e/primes.htm" rel="nofollow">http://www.walter-fendt.de/m14e/primes.htm</a> (no source though, but you might try the author)</p>
http://stackoverflow.com/questions/1018525/should-i-change-the-naming-convention-for-my-unit-tests/1077794#10777940Answer by Ray Tayek for Should I change the naming convention for my unit tests?Ray Tayek2009-07-03T04:47:04Z2009-07-03T04:47:04Z<p>i vote for calling the test case class: EmployeeReaderTestCase and calling the methods() like <a href="http://xunitpatterns.com/Organization.html" rel="nofollow">http://xunitpatterns.com/Organization.html</a> and <a href="http://xunitpatterns.com/Organization.html#Test%20Naming%20Conventions" rel="nofollow">http://xunitpatterns.com/Organization.html#Test%20Naming%20Conventions</a></p>
http://stackoverflow.com/questions/1067236/c-c-testing-framework-like-junit-for-java/1067759#10677590Answer by Ray Tayek for C/C++ testing framework (like JUnit for java)Ray Tayek2009-07-01T07:34:22Z2009-07-02T00:12:23Z<p>if you are using windows, take a look at: <a href="http://stackoverflow.com/questions/243673/limitations-of-using-c-cli-with-nunit">http://stackoverflow.com/questions/243673/limitations-of-using-c-cli-with-nunit</a> and write your tests in <a href="http://en.wikipedia.org/wiki/Managed_Extensions_for_C%2B%2B" rel="nofollow">http://en.wikipedia.org/wiki/Managed_Extensions_for_C%2B%2B</a>.</p>
<p>also: <a href="http://golios.blogspot.com/2008/12/using-nunit-with-c-part-2.html" rel="nofollow">http://golios.blogspot.com/2008/12/using-nunit-with-c-part-2.html</a>, <a href="http://golios.blogspot.com/2008/11/using-nunit-with-native-c.html" rel="nofollow">http://golios.blogspot.com/2008/11/using-nunit-with-native-c.html</a></p>
<p>this will work <em>just</em> like junit except for the fact that nunit does not create a new instance of the test case class before running each test.</p>
http://stackoverflow.com/questions/1052244/switch-statement-for-enum-value-representations-in-java/1052294#10522940Answer by Ray Tayek for Switch Statement for Enum Value Representations in JavaRay Tayek2009-06-27T07:18:33Z2009-06-27T07:18:33Z<p>consider doing something like this: </p>
<pre><code>public class Node {
public enum Slot {
empty, start, wall, visited, end;
static Slot fromInt(int s) {
for (Slot slot : Slot.values())
if (slot.ordinal() == s)
return slot;
throw new RuntimeException("" + s + " is illegal value!");
}
}
public Node(Slot slot) {
this.slot = slot;
}
public Node(int s) {
this(Slot.fromInt(s));
switch(slot) {
case empty: /* special stuff for empty */ break;
case start: /* special stuff for start */ break;
/* ... */
}
}
private Slot slot;
}
</code></pre>
http://stackoverflow.com/questions/1052004/is-the-function-of-interfaces-primarily-for-using-functions-without-knowing-how-a/1052182#10521820Answer by Ray Tayek for Is the function of interfaces primarily for using functions without knowing how a class is built?Ray Tayek2009-06-27T05:41:42Z2009-06-27T05:41:42Z<p>an interface reduces what the client is dependent on (<a href="http://en.wikipedia.org/wiki/Dependency_inversion_principle" rel="nofollow">http://en.wikipedia.org/wiki/Dependency_inversion_principle</a>). it allows for multiple implementations and the ability to change implementations at run time.</p>
http://stackoverflow.com/questions/1051894/how-do-i-handle-an-empty-list-in-grails-gorm/1051983#10519830Answer by Ray Tayek for How do I handle an empty List in Grails/GORM?Ray Tayek2009-06-27T02:22:17Z2009-06-27T02:22:17Z<p>i am getting similar results (maybe children stays null). note that you must be using an integration test for the gorm stuff to be around.</p>
<p>you can handle an empty list as follows:</p>
<pre><code>parent.children?.each { println it}
parent.addToChildren(new Children(/* whatever you need */))
parent.children?.each { println it}
</code></pre>
http://stackoverflow.com/questions/1051778/can-generic-xml-by-parsed-as-nicely-as-simple-xml-in-groovy/1051887#10518870Answer by Ray Tayek for Can generic XML by parsed as nicely as simple XML in Groovy?Ray Tayek2009-06-27T01:16:47Z2009-06-27T01:16:47Z<p>head and title are attributes.</p>
<p>there are some really subtle differences between slurper and parser: <a href="http://www.ibm.com/developerworks/java/library/j-pg05199/" rel="nofollow">http://www.ibm.com/developerworks/java/library/j-pg05199/</a></p>
<p>you can do this:</p>
<pre><code>println "${doc.lst.str[0]} ${doc.lst.str[0].@name}"
println doc.lst.str.each {
println "${it} ${it.@name}"
}
</code></pre>
<p>but look at the output:</p>
<pre><code>groovy title
groovy title
java xml keywords
groovyjava xml
</code></pre>
http://stackoverflow.com/questions/995161/how-to-explain-an-object/1020938#10209381Answer by Ray Tayek for How to explain an object?Ray Tayek2009-06-20T04:25:15Z2009-06-20T04:25:15Z<p>objects (usually) have state, behaviour, and identity.</p>
<p>basic o-o programming principles are encapsulation, inheritance, and polymorphism.</p>
<p>basic o-o design principles are here: <a href="http://butunclebob.com/ArticleS.UncleBob.PrinciplesOfOod" rel="nofollow">http://butunclebob.com/ArticleS.UncleBob.PrinciplesOfOod</a></p>
http://stackoverflow.com/questions/1020481/structs-contribution-to-type-size/1020510#10205100Answer by Ray Tayek for Struct's contribution to type sizeRay Tayek2009-06-19T23:45:56Z2009-06-19T23:45:56Z<p>sometmes, see: <a href="http://en.wikipedia.org/wiki/Sizeof" rel="nofollow">http://en.wikipedia.org/wiki/Sizeof</a></p>
http://stackoverflow.com/questions/1016284/matrix-transforms-concepts-and-theory-are-there-any-free-resources-for-learning/1016371#10163716Answer by Ray Tayek for Matrix transforms; concepts and theory, are there any free resources for learning practically?Ray Tayek2009-06-19T04:48:26Z2009-06-19T04:48:26Z<p>this is <a href="http://en.wikipedia.org/wiki/Computer_graphics" rel="nofollow">http://en.wikipedia.org/wiki/Computer_graphics</a>. two of the key concepts are <a href="http://mathworld.wolfram.com/LinearTransformation.html" rel="nofollow">http://mathworld.wolfram.com/LinearTransformation.html</a>, and <a href="http://mathworld.wolfram.com/AffineTransformation.html" rel="nofollow">http://mathworld.wolfram.com/AffineTransformation.html</a>.</p>
http://stackoverflow.com/questions/1016290/how-to-organize-my-classes/1016361#10163610Answer by Ray Tayek for How to organize my classes?Ray Tayek2009-06-19T04:39:11Z2009-06-19T04:39:11Z<p>consider making category an enum (photo can have a set of categories). consider an album class. allow a photo to be in many albums. use the mvc mini-architecture. take a look at picasa.</p>
http://stackoverflow.com/questions/971863/when-do-you-refactor-code/972168#9721680Answer by Ray Tayek for When do you refactor code?Ray Tayek2009-06-09T19:54:22Z2009-06-09T19:54:22Z<p>as soon as all of the tests run.</p>
http://stackoverflow.com/questions/961169/if-you-could-give-yourself-programming-advice-in-the-past-what-would-it-be/961174#9611746Answer by Ray Tayek for If you could give yourself programming advice in the past, what would it be?Ray Tayek2009-06-07T04:08:16Z2009-06-07T04:08:16Z<p>learn how to write unit tests</p>
http://stackoverflow.com/questions/1351275/most-of-my-interesting-tags-have-no-or-one-questionsComment by Ray Tayek on most of my "interesting tags" have no (or one) questionsRay Tayek2009-08-29T12:11:25Z2009-08-29T12:11:25Zi tried to post it on meta, but my rep is only 1 therehttp://stackoverflow.com/questions/1351275/most-of-my-interesting-tags-have-no-or-one-questions/1351285#1351285Comment by Ray Tayek on most of my "interesting tags" have no (or one) questionsRay Tayek2009-08-29T12:10:37Z2009-08-29T12:10:37Zprior to a few days ago, there were at least a page full for groovy, grails, math, oop, unit-testing etc.http://stackoverflow.com/questions/1347901/is-there-an-optimized-net-implementation-of-design-patternsComment by Ray Tayek on Is there an optimized .net implementation of design patterns?Ray Tayek2009-08-28T16:00:32Z2009-08-28T16:00:32Zmost of the 23 at <a href="http://www.dofactory.com/Patterns/PatternVisitor.aspx" rel="nofollow">dofactory.com/Patterns/PatternVisitor.aspx/…</a> seem to have code. which ones are missing?http://stackoverflow.com/questions/731832/interview-question-ffn-n/731912#731912Comment by Ray Tayek on Interview question: f(f(n)) == -nRay Tayek2009-08-26T15:28:04Z2009-08-26T15:28:04Zdoes the python code work as posted?
i can't seem to make a java version work:
static int f(int n) {
if(n==0) return 0;
if (n > 0)
if (n % 2 == 1)
return n + 1;
else
return -1 * (n - 1);
else if (n % 2 == 1)
return n - 1;
else
return -1 * (n + 1);
}http://stackoverflow.com/questions/1308727/grails-using-a-package-to-hold-domain-classesComment by Ray Tayek on Grails using a package to hold domain classesRay Tayek2009-08-25T14:56:42Z2009-08-25T14:56:42Zconsider using packages and when you create the controller, use com.g2one.gtunes.Song and the import will be added for you for you.http://stackoverflow.com/questions/1234389/whats-your-recommendation-for-architecting-gwt-applications-mvc-mvp-or-custom/1240276#1240276Comment by Ray Tayek on What's your recommendation for architecting GWT applications? MVC, MVP or custom messaging solution?Ray Tayek2009-08-07T20:49:24Z2009-08-07T20:49:24Zalso from google io 2009: Voices That Matter: GWT - Architecture Best Practices: <a href="http://www.youtube.com/watch?v=Uwp3EVU5ePA" rel="nofollow">youtube.com/watch?v=Uwp3EVU5ePA</a>http://stackoverflow.com/questions/304488/recent-java-references/304535#304535Comment by Ray Tayek on RECENT Java References?Ray Tayek2009-06-05T18:18:52Z2009-06-05T18:18:52Zfixed it. thankshttp://stackoverflow.com/questions/796219/whats-the-most-minimal-java-web-mvc-framework/796235#796235Comment by Ray Tayek on What's the most minimal Java web MVC framework?Ray Tayek2009-04-29T04:07:18Z2009-04-29T04:07:18Zi should have said "convention over configuration" instead of "sane defaults" :(http://stackoverflow.com/questions/303853/what-are-your-impressions-of-maven/305086#305086Comment by Ray Tayek on What are your impressions of Maven?Ray Tayek2009-04-25T22:38:26Z2009-04-25T22:38:26Zi heard this in one of raible's video's. i have no experience with it myself. http://stackoverflow.com/questions/748503/how-do-you-introduce-unit-testing-into-a-large-legacy-c-c-codebase/748587#748587Comment by Ray Tayek on How do you introduce unit testing into a large, legacy (C/C++) codebase?Ray Tayek2009-04-14T21:21:25Z2009-04-14T21:21:25Zyes, this is a realy good book for this sort of thing (it's a bit painful though)http://stackoverflow.com/questions/563952/in-java-when-one-interface-extends-another-why-would-one-redeclare-a-method-in-a/564022#564022Comment by Ray Tayek on In Java when one interface extends another, why would one redeclare a method in a subinterface?Ray Tayek2009-02-19T16:29:54Z2009-02-19T16:29:54Zi sit corrected :(http://stackoverflow.com/questions/490420/favorite-clever-defensive-programming-best-practices/490607#490607Comment by Ray Tayek on Favorite (Clever) Defensive Programming Best PracticesRay Tayek2009-01-29T06:35:55Z2009-01-29T06:35:55Zconsider using:
int mystringsize = sizeof(mystrings)/sizeof(*mystrings)
this will survive a type change.
http://stackoverflow.com/questions/490420/favorite-clever-defensive-programming-best-practices/490533#490533Comment by Ray Tayek on Favorite (Clever) Defensive Programming Best PracticesRay Tayek2009-01-29T06:33:04Z2009-01-29T06:33:04Zin c, i used to add an invalidAccountType at the end. this is useful sometimes.http://stackoverflow.com/questions/472347/re-scaling-automatic-build-from-2-cpu-pizza-boxes-to-multi-cpu-monstersComment by Ray Tayek on Re-scaling automatic build from 2-cpu pizza-boxes to multi-cpu monster(s) ? Ray Tayek2009-01-24T07:44:31Z2009-01-24T07:44:31Zif you are worried about i/o time, you may wish to consider: <a href="http://en.wikipedia.org/wiki/RAID_0#RAID_0" rel="nofollow">en.wikipedia.org/wiki/RAID_0#RAID_0</a>http://stackoverflow.com/questions/475675/when-is-a-function-too-longComment by Ray Tayek on When is a function too long?Ray Tayek2009-01-24T07:31:35Z2009-01-24T07:31:35Zthis question can become complicated depending on the code and the language. maybe you can post it.