User Victor - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T00:04:29Z http://stackoverflow.com/feeds/user/125946 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1100819/how-do-you-design-object-oriented-projects 26 How do you design object oriented projects? Victor 2009-07-08T22:10:25Z 2009-11-27T11:10:52Z <p>I'm working on a large project (for me) which will have many classes and will need to be extensible, but I'm not sure how to plan out my program and how the classes need to interact.</p> <p>I took an OOD course a few semesters back and learned a lot from it; like writing UML, and translating requirements documents into objects and classes. We learned sequence diagrams too but somehow I missed the lecture or something, they didn't really stick with me.</p> <p>With previous projects I've tried using methods I learned from the course but usually end up with code that as soon as I can say "yeah that looks something like what I had in mind" i have no desire to dig through the muck to add new features.</p> <p>I've got a copy of Steve McConnell's <em>Code Complete</em> which I continually hear is amazing, here and elsewhere. I read the chapter on design and didn't seem to come out with the information I'm looking for. I know he says that it's not a cut and dried process, that it's mostly based on heuristics, but I can't seem to take all his information and apply it to my projects.</p> <p>So <strong>what are things you do during the high level design phase (before you begin programming) to determine what are the classes you need (especially ones not based on any 'real world objects') and how will they interact with each other</strong>?</p> <p>Specifically I'm interested in what are the methods you use? What is the process you follow that usually yeilds a good, clean design that will closely represent the final product?</p> http://stackoverflow.com/questions/1128318/choosing-an-excel-java-api 0 Choosing an excel java api. Victor 2009-07-14T22:03:33Z 2009-11-03T16:06:59Z <p>All I need to do is open an MS excel sheet - not sure which kind yet (2003, 2007, etc.) - and parse the information in each row into an object. I'm performing only readonly operations.</p> <p>out of <a href="http://poi.apache.org/" rel="nofollow">Apache POI</a>, <a href="http://jexcelapi.sourceforge.net/" rel="nofollow">JExcelAPI</a>, or <a href="http://www.extentech.com/estore/product%5Fdetail.jsp?product%5Fgroup%5Fid=228" rel="nofollow">OpenXLS</a> which is best for this task?</p> <p>I'd rather not find out about anymore api's but if you're certain that none of these are the best then I'll take your input.</p> http://stackoverflow.com/questions/1605916/what-is-wrong-with-this-where-clause 0 what is wrong with this WHERE clause? Victor 2009-10-22T09:01:15Z 2009-10-22T09:04:18Z <p>is there a reason why this query wouldn't work? the following query will work if i just exclude the WHERE clause. I need to know what is wrong with it. I know the values of $key given exist in the table so why wouldn't this work?</p> <pre><code>$q = "SELECT * WHERE t1.project=$key FROM project_technologies AS t1 JOIN languages AS t2 ON t1.language = t2.key"; </code></pre> <p>each table has the following fields.<br /> project_technologies<br /> - key<br /> - project<br /> - language<br /> languages<br /> - key<br /> - name </p> http://stackoverflow.com/questions/1145601/commonly-misunderstood-elements-of-java 6 Commonly Misunderstood Elements of Java? Victor 2009-07-17T20:44:20Z 2009-10-14T12:03:20Z <p>I was making an array of objects, and wanted to run the constructor for the object on every element of the array to initialize them like so:</p> <pre><code>cells = new Cell[cols]; Arrays.fill(cells, new Cell()); </code></pre> <p>But I started to doubt that it did what I wanted and sure enough <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Arrays.html#fill%28java.lang.Object%5B%5D,%20java.lang.Object%29" rel="nofollow">Arrays.fill(Object[] o, Object val)</a> doesn't do what I want it to. Essentially fill will run the object constructor once and point every element of the array to that object.</p> <p>Testing this on StringsBuilders:</p> <pre><code>StringBuilder[] a = new StringBuilder[10]; Arrays.fill(a,new StringBuilder("")); a[0].append("1"); System.out.println(Arrays.toString(a)); </code></pre> <p>Confirmed my doubts and printed <code>[1, 1, 1, 1, 1, 1, 1, 1, 1, 1]</code>.</p> <p>I've always used this method with Strings and primitives and never run in to this problem because obviously it's ideal for primitives but it never caused a problem for me with strings because "<em>modifying</em>" them creates a completely new object. (Yes I know, I should be using StringBuilders to do that :P)</p> <p><strong>So I'm curious as to what are some other things in Java that are commonly misunderstood but people don't notice for a long time?</strong></p> <p>And just out of curiosity is there another similar Java method that fills an array with unique objects?</p> http://stackoverflow.com/questions/1075905/class-file-from-jython-with-pydev 0 .class file from jython with pydev Victor 2009-07-02T18:17:59Z 2009-10-14T00:29:15Z <p>My first attempt at jython is a java/jython project I'm writing in eclipse with pydev.</p> <p>I created a java project and then made it a pydev project by the RightClick project >> pydev >> set as... you get the idea. I then added two source folders, one for java and one for jython, and each source folder has a package. And I set each folder as a buildpath for the project. I guess I'm letting you know all this so hopefully you can tell me wether or not I set the project up correctly.</p> <p>But the real question is: <strong>how do I get my jython code made into a class file so the java code can use it?</strong> The preferred method would be that eclipse/pydev would do this for me automatically, but I can't figure it out. Something mentioned in the jython users guide implies that it's possible but I can't find info on it anywhere.</p> <p>EDIT: I did find some information <a href="http://wiki.python.org/jython/JythonMonthly/Articles/September2006/1" rel="nofollow">here</a> and <a href="http://www.jython.org/archive/22/jythonc.html#what-is-jythonc" rel="nofollow">here</a>, but things are not going too smooth.</p> <p>I've been following the guide in the second link pretty closely but I can't figure out how to get jythonc to make a constructor for my python class.</p> http://stackoverflow.com/questions/1289689/disable-scrolling-to-cell-in-focus 0 disable scrolling to cell in focus Victor 2009-08-17T18:44:01Z 2009-08-17T21:25:32Z <p>I have a jtable inside of a scrollpane. how can i stop the scrollpane from scrolling up or down when a cell that is partly out of view gains focus?</p> <p>the problem is i am setting the cells to editable when the user mouses over them, so when you mouse over a cell that's partly out of view, the view changes suddenly. I don't like this behaviour. any ideas on how to change it?</p> http://stackoverflow.com/questions/1229777/whats-the-easiest-way-to-show-a-windows-explorer-type-file-structure-in-java-swi/1229794#1229794 1 Answer by Victor for What's the easiest way to show a Windows Explorer-type file structure in Java Swing? Victor 2009-08-04T20:35:50Z 2009-08-04T20:35:50Z <p>I think <a href="http://www.java2s.com/Code/Java/Swing-JFC/FileTree.htm" rel="nofollow">JTree</a> would be the easiest way.</p> <p>but if you just want it to view files before you load them then use a <a href="http://java.sun.com/docs/books/tutorial/uiswing/components/filechooser.html" rel="nofollow">file chooser</a>.</p> http://stackoverflow.com/questions/1225058/java-sudoku-gui/1225085#1225085 0 Answer by Victor for Java Sudoku Gui Victor 2009-08-03T23:18:50Z 2009-08-03T23:24:39Z <p>1st way:</p> <p>You could put the text fields into an array that mirrors the array that your cell values are in.</p> <p>The problem with this method tho is that when you need to bind a mouseListener or ActionListener to the TextField you will have a hard time figuring out which cell number it corrisponds to.</p> <p>2nd way:</p> <p>You could extend the JTextField into a custom class with new instance variables that store cell number in it.</p> <p>Using this method you can also implement MouseListener or ActionListener on the extended class too and get whatever information about the field you need, without searching through your array. And combining with the first to put them into an array organizes them for quick access.</p> http://stackoverflow.com/questions/1203734/swing-hyperlinks-in-jeditorpane-in-a-jtable 0 [swing] hyperlinks in JEditorPane in a JTable Victor 2009-07-29T23:58:20Z 2009-07-30T05:47:04Z <p>I swear... i hope this is the last question I have to ask like this, but I'm about to go crazy.</p> <p>I've got a JTable using a custom TableCellRenderer which uses a JEditorPane to display html in the individual cells of the JTable. How do I process clicking on the links displayed in the JEditorPane?</p> <p>I know about HyperlinkListener but no mouse events get through the JTable to the EditorPane for any HyperlinkEvents to be processed.</p> <p>How do I process Hyperlinks in a JEditorPane within a JTable?</p> http://stackoverflow.com/questions/1197580/displaying-links-in-javas-jtextpane-without-html 0 displaying links in java's JTextPane without html Victor 2009-07-29T01:03:52Z 2009-07-30T00:07:17Z <p>I need to take text from a source as plain text and display it in a JTextPane or JEditorPane. The source text is not HTML but will contain URLs between square brackets which need to be displayed and function as hyperlinks.</p> <p>I've considered setting the pane's content type to text/html and surounding the url in html tags but that ends up ignoring the newline characters, which is a bad thing, and i'm not sure how to go about replacing newline characters with "<code>&lt;br/&gt;</code>". Is there an easy wat to do that?</p> <p>If doing that means scanning through the whole string wouldn't it be better to just customize how the text is displayed?</p> <p>So I've also considered the route that involves making my own EditorKit like starturtle mentions in <a href="http://forums.sun.com/thread.jspa?threadID=246223&amp;tstart=32326" rel="nofollow">this thread</a>, but he doesn't explain how to do it. I've looked over the code in <a href="http://java.sun.com/products/jfc/tsc/articles/text/editor%5Fkit/" rel="nofollow">this article</a>, but it seems like a lot of work, is this the route I should take?</p> <p>Has anyone ever done this. Any recommendations? Is it better to convert to html or to customize the display?</p> http://stackoverflow.com/questions/1196405/how-to-keep-yourself-from-perfectionism-when-coding/1197197#1197197 0 Answer by Victor for how to keep yourself from perfectionism when coding Victor 2009-07-28T22:57:28Z 2009-07-28T22:57:28Z <p>The way I finally got myself out of that rut was thinking, "what good is your perfect code if it doesn't do anything?"</p> <p>You've got to realize that you won't learn anything by writing perfect code right off the bat. It's when you write the imperfect code, that you learn lessons. And then the next time you write something similar the part that you messed up on will be better, maybe not perfect, but better.</p> http://stackoverflow.com/questions/1191373/reading-from-java-jtextarea/1191378#1191378 0 Answer by Victor for Reading from Java JTextArea Victor 2009-07-28T00:43:39Z 2009-07-28T01:01:40Z <p>your idea is interesting. so you would have a line such as.</p> <blockquote> <p>2+2</p> </blockquote> <p>then when pressing calculate would add the line</p> <blockquote> <p>4</p> </blockquote> <p>and so on then you could type in another equation.</p> <p>it could work but as you said it wouldn't be the most efficient implementation... but that's just a tradeoff of getting the desired functionality.</p> <p>If i were going to implement it the way you discribed (with a JTextArea) I'd use scanner, and scan the value string a line at a time.</p> <p>if the line has +/- in it then do the calculation and add both the original line and the answer to a string.</p> <p>the new string is the new value of the text field.</p> <p>this method would get pretty cumbersom as you would be continually recalculating the users old entries more were added.</p> <p>I guess if you continually stored the last line of the document, when you run out of lines, calculate the last stored and append the answer, then it wouldn't be so bad. <hr> Here's what I would do:</p> <p>use a JTextField to enter in the calculations, and a <a href="http://java.sun.com/docs/books/tutorial/uiswing/components/list.html" rel="nofollow">JList</a> to display the old ones and their answers.</p> http://stackoverflow.com/questions/1190254/tolowercase-with-special-unicode-characters-throws-exception 0 toLowerCase with special/unicode characters throws exception Victor 2009-07-27T19:49:33Z 2009-07-27T19:57:09Z <p>correct me if I'm wrong.</p> <p>If <code>str</code> has a character such as "<code>•</code>" in it then running:</p> <pre><code>str.toLowerCase(Locale.English); </code></pre> <p>throws a null pointer exception. That's the behavior I'm seeing.</p> <p>So what's the deal here? What's going on? It isn't specified that toLowerCase throws a null pointer exception.</p> <p>Is there an easy way to get around this? I need the str to be lower case to be able to use a case insensitive contains check with another string, but I need the string to contain those characters for it to be displayed correctly.</p> <p>What would you say is the most efficient solution if there is no "easy way?"</p> http://stackoverflow.com/questions/1179540/problems-with-swing-components-and-awt-events 2 Problems with swing components and awt events Victor 2009-07-24T19:02:06Z 2009-07-27T18:36:44Z <p>I seem to be having problems with my java gui code, and I have no idea why it's not working.</p> <p>What needs to happen is when the mouse is clicked on the <strong>panel</strong> or frame - <em>for now lets just say panel; as this is just a test eventually this code will be implemented for another gui component, but I'd like to get this working first</em> - the <strong>popup menu</strong> needs to become visible and the focus needs to be set on the <strong>text field</strong>. Then when the user presses enter or the focus on the text field is lost then the popup menu needs to hide and the text reset to blank or whatever I need it to be.</p> <p>So this is what I wrote:</p> <pre><code>public class Test { private final JFrame frame = new JFrame(); private final JPanel panel = new JPanel(); private final JPopupMenu menu = new JPopupMenu(); private final JTextField field = new JTextField(); private final Obj obj; //... constructor goes here public void test(){ frame.setSize(new Dimension(200,200)); field.setColumns(10); field.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent arg0) { obj.method(field.getText()); menu.setVisible(false); field.setText(""); } }); field.addFocusListener(new FocusListener() { public void focusLost(FocusEvent e) { menu.setVisible(false); field.setText(""); } //... focus gained event goes here }); panel.addMouseListener(new MouseListener() { public void mouseClicked(MouseEvent e) { menu.setLocation(e.getX(), e.getY()); menu.setVisible(true); field.requestFocusInWindow(); } //... other mouse events go here }); menu.add(field); frame.getContentPane().add(panel); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setVisible(true); } } </code></pre> <p>With the code as it is written here the menu automatically hides right after I click. It just flashes on screen briefly and then hides without me doing anything else.</p> <p>If I change the code to exclude any occurrences of <code>menu.setVisible(false)</code> then the text field will never gain focus.</p> <p>Is this due to a misuse of JPopupMenu? Where am I going wrong?</p> <p>Also note that I left out main or Obj. They are in another file and most likely insignificant to this problem. Obj.method() does nothing and main only calls Test's constructor and test() method.</p> http://stackoverflow.com/questions/1179540/problems-with-swing-components-and-awt-events/1189845#1189845 0 Answer by Victor for Problems with swing components and awt events Victor 2009-07-27T18:36:44Z 2009-07-27T18:36:44Z <p>I'd like to point out that I'm discovering through usage of the suggested methods that <code>setComponentPopupMenu()</code> automatically adds a MouseListener to display the given PopupMenu which then consumes the right-click event.<br /> so whatever is inside the <code>if(e.isPopupTrigger())</code> structure is never run on right clicks because the event is consumed.</p> <p>So essentially I get the behavour specified in my question just by adding <code>panel.setComponentPopupMenu(getMenu())</code>, but the fact that it's consuming all my right-click events, not just mouseClicked, is extremely limiting.</p> http://stackoverflow.com/questions/313527/simple-algorithm-tutorials/1140695#1140695 0 Answer by Victor for Simple algorithm tutorials? Victor 2009-07-16T22:37:15Z 2009-07-25T05:50:35Z <p>USA Computing Olympiad has a nice algorithms <a href="http://train.usaco.org/" rel="nofollow">training site</a> that so far anyone can sign up for and it's almost in a class like format. read a little, do an exercise, read more, do an exercise etc.</p> http://stackoverflow.com/questions/1082603/java-code-examples-for-tutoring/1144689#1144689 1 Answer by Victor for Java: Code Examples for Tutoring Victor 2009-07-17T17:33:38Z 2009-07-17T18:07:13Z <p>Show them some common algorithm implementations... BFS, DFS, Djikstras, A*, Mergesort, Quicksort, etc.</p> <p>I'd say code that has a wide range of uses is best. wide as in, not code that is "this counts to 100 and prints the numbers that are modulo 3 and 5 and is totally useless." but code that solves a real problem. Once you say "A* can make a path from <em>start</em> to <em>finish</em>" then you've got their attention because they know it's useful.</p> <p>The sorts and the Breadth/Depth first searches are good because they can be short and comprehended easily and have very clear implementations that can teach some good coding practices. The sorts are especially good examples of recursion.</p> http://stackoverflow.com/questions/1144462/move-between-two-points-in-an-output-file/1144507#1144507 0 Answer by Victor for Move between two points in an output file Victor 2009-07-17T16:56:17Z 2009-07-17T16:56:17Z <p>with <a href="http://www.java2s.com/Code/C/stdio.h/fgetposstoresthecurrentfilepositionindicator.htm" rel="nofollow">fgetpos</a> you can store a pointer to a position in a file and jump to it at any time with <a href="http://www.java2s.com/Code/C/stdio.h/fseekmovesthefilepositionpointer.htm" rel="nofollow">fseek</a>: </p> http://stackoverflow.com/questions/1053971/a-java-practice-problem/1144456#1144456 0 Answer by Victor for A java practice problem Victor 2009-07-17T16:44:38Z 2009-07-17T16:44:38Z <p>here's another practice problem i thought of that's fairly similar to this problem, just thought i'd post it and see if it works for people:</p> <blockquote> <p>you are given an int SO starting reputation and an int SO goal reputation that is higher than the starting rep. You only answer questions so you can gain reputation only by either 10 or 15. you can also down vote so you can lose reputation by 1 as well. what is the minimum amount of reputation that you should lose to reach the target reputation?</p> </blockquote> <p>example: you start with 715 and you want to reach 888. the answer is 2.</p> <p>to increase the challenge change the ints to longs and don't use a loop.</p> http://stackoverflow.com/questions/1144322/find-largest-cluster-of-a-particular-word-in-a-block-of-text/1144379#1144379 6 Answer by Victor for Find largest cluster of a particular word in a block of text Victor 2009-07-17T16:29:50Z 2009-07-17T16:29:50Z <p>I'm not sure how you know they're highlighted but here's a simple O(n) aproach that I'd try.</p> <p>scan the words into a circular queue (max capacity of 400) and if they're highlighted then increment the counter, once you reach the queues capacity, dequeue words as is necesary to enqueue the next one. when you dequeue a highlighted word decrement the counter. keep track of the max that your counter reaches at all times and where this chunk of 400 words starts at the max.</p> <p>not too elegant but fairly simple.</p> http://stackoverflow.com/questions/1139279/computer-science-and-psychology/1140000#1140000 1 Answer by Victor for Computer Science and Psychology Victor 2009-07-16T20:11:20Z 2009-07-16T20:11:20Z <p>first thing that comes to my mind are "<a href="http://www.stophcommerce.com/" rel="nofollow">hackers</a>." you've no doubt seen tv specials on people who's curiosity gets the better of them. Though there are a lot of things out there on it... not the most original topic, but on the other hand, plenty of resources.</p> <p>Come to think of it <a href="http://www.grc.com/securitynow.htm" rel="nofollow">security</a> is likely closely related to psychology as well and would be an interesting topic to <a href="http://rads.stackoverflow.com/amzn/click/076454280X" rel="nofollow">read</a> about.</p> <p>I wrote a paper for an english class on <code>AI</code>, it was definately the best choice for a topic I could have made. Not boring at all.</p> http://stackoverflow.com/questions/1137324/about-java-abstract-class-and-string-encryption-to-the-next-character/1139440#1139440 0 Answer by Victor for about java abstract class and string encryption to the next character? Victor 2009-07-16T18:32:30Z 2009-07-16T18:43:21Z <p>I'm not sure what your question is exactly, but you can't instantiate the abstract class. You need to write a class to extend it, and you won't have to override anything because it's already written in the abstract class. Though writing an abstract class where nothing will be overridden is not that useful usually.</p> <p>so what u should do is:</p> <pre><code>public abstract class AbstractAssignment2{ //what you had before, just change the name. } </code></pre> <p>and:</p> <pre><code>public class Assignment2 extends AbstractAssignment2 { //... } </code></pre> <p>So you will have 2 seperate classes... but only one is instantiable. <hr> as for the encryption... i'm sure you can figure it out... remember that chars have numeric values.</p> http://stackoverflow.com/questions/1137113/which-is-more-advantageous-learning-new-languages-or-increasing-knowledge-of-one/1138868#1138868 1 Answer by Victor for Which is more advantageous: Learning new languages or increasing knowledge of ones you already know? Victor 2009-07-16T16:46:59Z 2009-07-16T16:46:59Z <p>Is it too much to ask for both?</p> <p>Seriously, I've spent more three years (damn... that's it?) learning Java and I still havn't seen a quarter of it, and I'm sure 3 years from now I'll still be learning Java, actually let's extend that to 6 years. My point is even when you're a master at something I'm sure you'll still be learning it. (note: not talking from experience here, just pretty sure that's the way it'll be :P)</p> <p>As for learning other languages, especially ones that use different paradigms, it IS like learning another language. With my java background when trying to go to c++ I feel like I'm just learning small syntax adjustments and new names for things I can already do (from a personal standpoint) much more efficiently in Java, whereas going to Python I see different uses where it can overcome limitations that Java has.</p> <p>So learning different languages is like equipping a toolbelt. I'd say always learn new languages but keep learning what you're best at, that is, if it's something that is highly marketable. I know that mastering freeBasic is probably not the best language to master.</p> http://stackoverflow.com/questions/1134801/c-pointer-issue/1134957#1134957 0 Answer by Victor for C++ pointer issue Victor 2009-07-16T01:10:51Z 2009-07-16T01:10:51Z <p>It's helpful to translate the symols into words so you understand what you're writing exactly.</p> <p>when to the right of the equal sign, mentaly substitute <code>'*'</code> with "the value pointed to by" and <code>'&amp;'</code> with "the address of".</p> <p>if you had done this you would have read your code verbaly as follows:</p> <pre><code>#testFalse is False; #thisIsFalse is **the address of** testFalse; #shouldBeFalse is **the address of** thisIsFalse; </code></pre> <p>but what you wanted was:</p> <pre><code>#shouldBeFalse is **the value pointed to by** thisIsFalse; </code></pre> <p>from there it's easy to remember the roles of <code>'*'</code> and <code>'&amp;'</code> so you could translate it back into:</p> <pre><code>bool shouldBeFalse = *thisIsFalse; </code></pre> http://stackoverflow.com/questions/1127884/how-to-check-a-regexps-relevance/1127955#1127955 1 Answer by Victor for How to check a regexp's relevance? Victor 2009-07-14T20:50:27Z 2009-07-15T22:08:47Z <p>one factor i can think of is whether a language is infinite or not infinite. not infinite is definately more relevant than infinite as there are a finite number of acceptable words in the language.</p> <p>if measuring infinite languages like your examples, both just go on forever and you can keep on counting each word in the language until you're blue in the face, you'll never reach a conclusion.</p> <p>until you consider that the first regex's language is a proper subset of the second's language. Then you might say one is more relevent.</p> <p>I'm not sure of any standard though of how to measure regex relevancy.</p> <p>to expound on the idea of proper subsets, you may ask what is your language and does your regex accept words outside of that? your expression might still work, but it has a wider range of words than you intended... of course this may not matter if your input is controlled, but that's one way you could measure relevance. is it accepting my language <em>exactly</em>?</p> <p>yours is a good example, perhaps you want to accept numbers starting with 1234. <code>1234.*</code> works like a charm... but that isn't the language you specified. `1234\d* is more specific and matches your language exactly as you specified... thus being more relevant.</p> <p>but this is all from a purely theoretical standpoint and probably won't help you much to programatically determine if one regex is better than another.</p> http://stackoverflow.com/questions/1127739/exclude-certain-characters-using-regex/1127821#1127821 0 Answer by Victor for Exclude certain characters using RegEx Victor 2009-07-14T20:27:25Z 2009-07-14T20:27:25Z <p>i think this</p> <pre><code>^\w*$ </code></pre> <p>should work as <code>\w</code> does not include single quote or space.</p> http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/1127035#1127035 0 Answer by Victor for Computer Language puns and jokes Victor 2009-07-14T18:06:21Z 2009-07-14T18:06:21Z <p>Just thought of one, not sure how funny it is :P</p> <pre><code>public enum ees{ John_Dillinger, Baby_Face_Nelson, Pretty_Boy_Floyd } </code></pre> <p>LAWL right? yeah it's lame. the movie was alright btw.</p> http://stackoverflow.com/questions/1126802/change-eclipse-variable-autohighlight-color/1126826#1126826 5 Answer by Victor for Change Eclipse variable autohighlight color Victor 2009-07-14T17:25:06Z 2009-07-14T17:30:35Z <p>window -> preferences: general -> editors -> text editors -> annotations -> occurrences</p> http://stackoverflow.com/questions/140270/humor-in-code/1120812#1120812 3 Answer by Victor for Humor in code Victor 2009-07-13T17:07:54Z 2009-07-13T17:07:54Z <p>acceptable usage of breaks and contunues in java:</p> <pre><code>dance: while(some_bool){ //something in loop ... if(some_condition) break dance; } </code></pre> <p>and:</p> <pre><code>the_assault: while(something){ //body ... if(condition) continue the_assault; } </code></pre> <p>or something to that effect.</p> http://stackoverflow.com/questions/1120441/should-every-programmer-try-game-programming/1120551#1120551 1 Answer by Victor for Should every programmer try game programming? Victor 2009-07-13T16:27:06Z 2009-07-13T16:27:06Z <p>It will definately broaden your horizons a bit.</p> <p>The fact that everything you program for a game goes into a massive loop certainly changes some of the ways that you need to think about things.</p> <p>It was/is definately beneficial for me (I do not plan on becoming a game programmer). The fact that when you've finished, you've produced a very tangible, interactive program makes it pretty easy to motivate yourself.</p> <p>I would say it is never harmful to expand your horizons and would be very useful even if you don't use any direct game programming techniques in your future career.<br /> But many non-game companies use game technology every day for very important physics simulators and the like, you never know when you might need to whip some game programming out.</p> <p>Not to mention there are a <strong>ton</strong> of resources out there to learn from and SO.</p> <p>So your answer is yes.</p> http://stackoverflow.com/questions/1309375/regex-remove-whitespace-at-begining/1309387#1309387 Comment by Victor on Regex remove whitespace at begining Victor 2009-08-20T23:35:04Z 2009-08-20T23:35:04Z that's the beginning of line and end of line charcters, not how you're using it. http://stackoverflow.com/questions/1309375/regex-remove-whitespace-at-begining/1309387#1309387 Comment by Victor on Regex remove whitespace at begining Victor 2009-08-20T23:34:29Z 2009-08-20T23:34:29Z in a line that is invald, it will match parts of that line as valid. i think for this anything that doesn't explicitly use the ^ and $ characters won't work. http://stackoverflow.com/questions/1289689/disable-scrolling-to-cell-in-focus/1289791#1289791 Comment by Victor on disable scrolling to cell in focus Victor 2009-08-17T20:16:03Z 2009-08-17T20:16:03Z i've tried the suggested method on both the scrollpane and the jtable and neither change the behavior i described. http://stackoverflow.com/questions/1225058/java-sudoku-gui Comment by Victor on Java Sudoku Gui Victor 2009-08-03T23:10:29Z 2009-08-03T23:10:29Z yeah... i did the 81 text fields... looks cool, takes a while to enter it in tho. :P http://stackoverflow.com/questions/1203734/swing-hyperlinks-in-jeditorpane-in-a-jtable/1204658#1204658 Comment by Victor on [swing] hyperlinks in JEditorPane in a JTable Victor 2009-07-31T17:40:31Z 2009-07-31T17:40:31Z indeed this method passes the mouse events on... but it's still not activating hyperlink update events. http://stackoverflow.com/questions/1208210/jquery-accordion-menu Comment by Victor on jquery accordion menu Victor 2009-07-30T17:55:36Z 2009-07-30T17:55:36Z downvoting it doesn't do any bad either, we're the ones losing rep not him. http://stackoverflow.com/questions/1203734/swing-hyperlinks-in-jeditorpane-in-a-jtable/1204658#1204658 Comment by Victor on [swing] hyperlinks in JEditorPane in a JTable Victor 2009-07-30T17:28:13Z 2009-07-30T17:28:13Z wow, THANKS! this looks like it could work. however, in my case my row heights are different depending on the contents of the cells. is there any reason in getRow(MouseEvent e) that you're not using table.rowAtPoint(e.getPoint())? http://stackoverflow.com/questions/1203734/swing-hyperlinks-in-jeditorpane-in-a-jtable/1204463#1204463 Comment by Victor on [swing] hyperlinks in JEditorPane in a JTable Victor 2009-07-30T05:46:14Z 2009-07-30T05:46:14Z this will not work as there will be links mixed with text... and possibly multiple links in one cell. http://stackoverflow.com/questions/1197580/displaying-links-in-javas-jtextpane-without-html/1197685#1197685 Comment by Victor on displaying links in java's JTextPane without html Victor 2009-07-29T18:21:54Z 2009-07-29T18:21:54Z I had tried the string replace method and that wasn't working. this works thanks. http://stackoverflow.com/questions/1190254/tolowercase-with-special-unicode-characters-throws-exception Comment by Victor on toLowerCase with special/unicode characters throws exception Victor 2009-07-27T20:00:18Z 2009-07-27T20:00:18Z wow i feel dumb. I'm iterating over a couple of strings and i knew that some of them had the character in it but turns out that one was null... not empty, i was focusing on the character :P http://stackoverflow.com/questions/1179540/problems-with-swing-components-and-awt-events/1179627#1179627 Comment by Victor on Problems with swing components and awt events Victor 2009-07-24T20:52:54Z 2009-07-24T20:52:54Z k i tried everything you said and it works! for the most part. When I use the e.isPopupTrigger() condition I only displays a small dot on the screen.. not sure why... but it woks without it for the most part. here's the problem and it's very strange. When the popup menu overlaps with the edge of the frame, the text field will not automatically gain focus. It will when the menu is entirely within the frame, but when it overlaps, no automatic focus... strange no? http://stackoverflow.com/questions/1179540/problems-with-swing-components-and-awt-events/1179627#1179627 Comment by Victor on Problems with swing components and awt events Victor 2009-07-24T19:39:07Z 2009-07-24T19:39:07Z i don't really understand where to put that, who's getComponentPopupMenu do i overwrite? http://stackoverflow.com/questions/1179540/problems-with-swing-components-and-awt-events/1179627#1179627 Comment by Victor on Problems with swing components and awt events Victor 2009-07-24T19:31:56Z 2009-07-24T19:31:56Z I will update my question, but all i did was change setVisible to show and it works except that the focus doesn't automatically shift to the textfield. It no longer hides tho... thanks. http://stackoverflow.com/questions/1179540/problems-with-swing-components-and-awt-events/1179643#1179643 Comment by Victor on Problems with swing components and awt events Victor 2009-07-24T19:26:41Z 2009-07-24T19:26:41Z that doesn't really make sense because it only hides when I have the menu.setVisible(false) in my code, whithout that - even when I have field.requestFocusInWindow() - it doesn't hide. http://stackoverflow.com/questions/1175159/sorting-two-way-cell-connections-with-priority Comment by Victor on Sorting two-way cell connections with priority Victor 2009-07-24T00:33:41Z 2009-07-24T00:33:41Z i know this doesn't help your problem but it's another corner case: what if two different cells want to swap with the same one? will one swap and then the other swap with the one it didn't intend to?