User AlbertoPL - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T02:42:59Z http://stackoverflow.com/feeds/user/88383 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1602998/fastest-way-to-obtain-the-largest-x-numbers-from-a-very-large-unsorted-list/1603020#1603020 0 Answer by AlbertoPL for Fastest way to obtain the largest X numbers from a very large unsorted list? AlbertoPL 2009-10-21T19:21:35Z 2009-10-21T19:21:35Z <p>You want the absolute largest X numbers, so I'm guessing you don't want some sort of heuristic. How unsorted is the list? If it's pretty random, your best bet really is just to do a quick sort on the whole list and grab the top X results.</p> <p>If you can filter scores during the list generation, that's way way better. Only ever store X values, and every time you get a new value, compare it to those X values. If it's less than all of them, throw it out. If it's bigger than one of them, throw out the new smallest value. </p> <p>If X is small enough you can even keep your list of X values sorted so that you are comparing your new number to a sorted list of values, you can make an O(1) check to see if the new value is smaller than all of the rest and thus throw it out. Otherwise, a quick binary search can find where the new value goes in the list and then you can throw away the first value of the array (assuming the first element is the smallest element).</p> http://stackoverflow.com/questions/1579977/palindrome-recursion-program/1579999#1579999 0 Answer by AlbertoPL for Palindrome Recursion Program AlbertoPL 2009-10-16T19:36:04Z 2009-10-16T19:36:04Z <p>You can certainly just do this:</p> <pre><code>return palindrome(input, i, j); </code></pre> <p>However it is good practice to have a single return to improve readability. Try this on for size:</p> <pre><code> boolean isPalindrome = false; if (i &gt;= j) isPalindrome = true; else if (input.charAt(i) == input.charAt(j)) { i++; j--; isPalindrome = palindrome(input, i, j); } else if (input.charAt(i) != input.charAt(j)) isPalindrome = false; return isPalindrome; } </code></pre> <p>Have that boolean always instantiated. The key here is to make palindrome's return be stored in that boolean.</p> <p>The recursive portion comes in at the call to palindrome. It will only finally return the final value after all of the recursive calls, because it only ever determines if its a palindrome when it reaches the end of the recursive cycle.</p> http://stackoverflow.com/questions/1568226/giving-version-numbers-that-make-clear-when-youre-breaking-backward-compatibilit/1568299#1568299 0 Answer by AlbertoPL for Giving version numbers that make clear when you're breaking backward compatibility AlbertoPL 2009-10-14T18:57:54Z 2009-10-14T18:57:54Z <p>Why don't you go ahead and release version 1. Continue to update that version without breaking backwards compatibility, and then release version 2 separately which does so.</p> <p>Either way, I cringe every time I hear backwards compatibility will not be met eventually, but that's more of a personal opinion.</p> http://stackoverflow.com/questions/1552613/why-doesnt-my-jquery-selector-work-here/1552628#1552628 1 Answer by AlbertoPL for Why doesn't my jquery selector work here? AlbertoPL 2009-10-12T03:58:43Z 2009-10-12T04:16:50Z <p>You should try accessing the 0th element of data. Like this:</p> <pre><code>data: { tipKey: $("a[data]")[0].data}, </code></pre> <p>EDIT: oh ok, i see, this should work then as an alternative.</p> http://stackoverflow.com/questions/1544168/calculating-very-large-whole-numbers/1544192#1544192 1 Answer by AlbertoPL for Calculating very large whole numbers AlbertoPL 2009-10-09T14:38:30Z 2009-10-09T14:38:30Z <p>You could use an array to store your digits. It's messy I know, but essentially you will have to program multiplication as you would do it by hand, except in your code.</p> http://stackoverflow.com/questions/1539444/ruby-how-to-return-a-1-specifically-for-a-specific-comparison/1539459#1539459 1 Answer by AlbertoPL for (Ruby) how to return a -1 specifically for a specific comparison AlbertoPL 2009-10-08T17:53:06Z 2009-10-08T18:07:49Z <p>Why don't you instead use a dictionary to keep values associated with their relative value? In this case, the string abc can be mapped to -1, and then just make sure no other values map to values equal to or less than -1.</p> <p>Edit: If you're only concerned with one particular value breaking the norm, then this solution is not for you.</p> http://stackoverflow.com/questions/1508906/python-2-6-or-python-3-1/1508919#1508919 5 Answer by AlbertoPL for python 2.6 or python 3.1? AlbertoPL 2009-10-02T11:08:53Z 2009-10-02T11:08:53Z <p>You really want to stick with the later version. Python 2.6 and the rest of the 2.x versions that come out are really for compatibility. However, this is not true if you want to use a framework like Django right away because it is incompatible with the 3.x series at the moment.</p> <p>A tip for learning Python? Just start using it and find online documentation for it. I feel it's an easy (and awesome) language to pick up.</p> http://stackoverflow.com/questions/1507519/how-to-design-model-for-my-case-with-django/1507539#1507539 3 Answer by AlbertoPL for how to design model for my case with django? AlbertoPL 2009-10-02T02:50:02Z 2009-10-02T02:50:02Z <p>The problem is that a Foreign key established a bidirectional relationship. This means you can do User.trainer_set to get all of the Trainer models under a User, which means you have a circular reference back to the user database (getting the Trainer models gets all of its fields, one of those fields being the original User model.</p> <p>So, to fix this, add a related name argument to the Foreign key to stop this circular dependency:</p> <pre><code>user = models.ForeignKey(User, unique=True, related_name='traineruser') </code></pre> <p>You can replace traineruser with something that does not already have a table in the database.</p> http://stackoverflow.com/questions/1428928/array-access-optimization/1428945#1428945 1 Answer by AlbertoPL for Array access optimization AlbertoPL 2009-09-15T18:37:17Z 2009-09-15T18:37:17Z <p>You're better off using a List than an array, especially since you may not use the whole set of data. This has several advantages.</p> <ol> <li>You're not checking for nulls and may not accidentally try to use a null object.</li> <li>More memory efficient in that you're not allocating memory which may not be used.</li> </ol> http://stackoverflow.com/questions/1422920/debugging-django-admin-template-resolution/1422934#1422934 0 Answer by AlbertoPL for Debugging Django Admin Template Resolution AlbertoPL 2009-09-14T17:36:13Z 2009-09-14T17:36:13Z <p>If you run Django's development server from the command line, you can definitely just use print statements to find out which template is being used. You can also use the FireBug plugin for Firefox to figure out what the server is sending back to you.</p> http://stackoverflow.com/questions/1422297/is-it-possible-for-a-rails-django-project-to-become-a-death-march/1422333#1422333 2 Answer by AlbertoPL for Is it possible for a Rails/Django project to become a Death March? AlbertoPL 2009-09-14T15:36:09Z 2009-09-14T15:36:09Z <p>Honestly, anything poorly managed has a chance to fail, even with the conveniences of frameworks that are supposed to ease the development process. They are certainly not immune to the death march scenarios because its a matter of using the frameworks properly. I've seen many projects fail because the technologies used were not being used as intended.</p> http://stackoverflow.com/questions/1300657/writing-python-django-view-to-join-across-three-models-tables/1300701#1300701 0 Answer by AlbertoPL for Writing Python/Django view to "join" across three models/tables AlbertoPL 2009-08-19T15:27:21Z 2009-08-19T15:27:21Z <p>There are many ways of accomplishing what you need. One of the easiest would be to keep a dictionary of number to string. Like this: 1->High, 2->Medium, 3->High.</p> <p>Keep this dictionary outside of your view functions so that you can access it from any of your view functions that need to get the priority.</p> <p>You could also simply write a switch that determines what to display in the template.</p> http://stackoverflow.com/questions/1267945/tips-for-picking-a-computer-science-masters-program/1267984#1267984 3 Answer by AlbertoPL for Tips for picking a computer science masters program AlbertoPL 2009-08-12T18:44:22Z 2009-08-12T18:44:22Z <p>If it's programming in industry that you enjoy, then surely you want to pursue Software Engineering, not necessarily Computer Science. In fact, I claim Computer Science has little to do with Software Engineering.</p> <p>That being said, Carnegie Mellon has an excellent Software Engineering masters/PhD program, and I would certainly take a look into that.</p> <p>Oh, as for a tip, look into Software Engineering programs, and at the very least look at Computer Science programs that offer Software Engineering-like courses. You'll find them to be closer to what you've done in the real world.</p> http://stackoverflow.com/questions/1050889/using-hibernate-with-dynamic-eclipse-plug-ins 2 Using Hibernate with Dynamic Eclipse Plug-ins AlbertoPL 2009-06-26T19:44:48Z 2009-08-12T00:55:03Z <p>I have classes that are named exactly the same across different plug-ins that I use for my application, and I'd like to be able to configure them properly with Hibernate. The problem is that it looks like Hibernate dynamically generates a class' package name when trying to find a class when it's doing its mapping. With one plug-in this scheme works, but across multiple plug-ins it's not working. It looks like Hibernate gets confused when dealing with Hibernate configuration files across multiple plug-ins.</p> <p>Is this because each plug-in has its own class-loader? What is the best way to proceed to make this work with the existing plug-ins and Hibernate?</p> http://stackoverflow.com/questions/1254848/error-using-double-quotes-in-a-string-in-javascript/1254882#1254882 0 Answer by AlbertoPL for Error using double quotes in a string in javascript AlbertoPL 2009-08-10T13:29:02Z 2009-08-10T13:29:02Z <p>If you're not using AddSettings before it gets to that line, you will have an error, as AddSettings has not been defined yet when you are adding it to itself. Make sure AddSettings has been defined prior to calling that line.</p> http://stackoverflow.com/questions/1241954/how-do-i-make-a-jlabel-that-has-an-imageicon-that-is-available-to-all-methods-and/1241974#1241974 0 Answer by AlbertoPL for How do I make a JLabel that has an imageIcon that is available to all methods and classes? AlbertoPL 2009-08-06T22:53:36Z 2009-08-06T22:53:36Z <p>Don't make the JLabel static - instead define it outside of other methods but still in your class.</p> <pre><code>public class Test { private JLabel label = new JLabel(new ImageIcon(/*your icon*/)); } </code></pre> <p>If you need to access it from another class, create an accessor method:</p> <pre><code>public JLabel getLabel() { return label; } </code></pre> http://stackoverflow.com/questions/1233433/how-do-i-retrieve-the-class-name-from-hibernate 0 How Do I Retrieve The Class Name From Hibernate? AlbertoPL 2009-08-05T13:57:29Z 2009-08-05T22:00:56Z <p>If there's already a question that addresses this, then could I please get a link as I cannot find one.</p> <p>I'm looking to obtain the stored class name of an object stored in my Hibernate database. When I look at the database externally I see the strings stored that have the classname. How can I retrieve the class name without constructing the object?</p> <p>Thank you in advance.</p> <p><strong>Edit:</strong> No I am not specifically specifying the discriminator; these are in fact subclasses being stored. I'm simply trying to get the actual subclass of the object.</p> http://stackoverflow.com/questions/1233433/how-do-i-retrieve-the-class-name-from-hibernate/1235998#1235998 0 Answer by AlbertoPL for How Do I Retrieve The Class Name From Hibernate? AlbertoPL 2009-08-05T22:00:56Z 2009-08-05T22:00:56Z <p>I created a new field in the object that stored its type. This is what I used for my solution, however I'd still like answers as to how to access the discriminator value.</p> http://stackoverflow.com/questions/1235227/is-the-null-object-pattern-worth-it/1235243#1235243 3 Answer by AlbertoPL for Is the null object pattern worth it ? AlbertoPL 2009-08-05T19:29:09Z 2009-08-05T19:29:09Z <p>If your object being null is going to be a norm throughout your code, you'd might as well use the pattern. I check for null when an object has not been created and <em>it needs to be instantiated</em>. I do not really use null for anything else, and I certainly don't use it to mean no behavior defined.</p> <p>If however, you are using null to mean the behavior hasn't been defined yet or the default behavior is nothing, then certainly use the pattern.</p> http://stackoverflow.com/questions/1227268/indexing-an-array-every-cycle-in-seconds/1227299#1227299 0 Answer by AlbertoPL for Indexing an array every cycle (in seconds) AlbertoPL 2009-08-04T12:42:09Z 2009-08-04T12:42:09Z <p>That is fairly silly; if you've set a time interval, simply have your function be called every 10 seconds and add your new number to the next index in the array. Keep track of this index globally or within the scope of the iteration.</p> http://stackoverflow.com/questions/1226839/br-n-a-line-break-in-java/1226854#1226854 3 Answer by AlbertoPL for <br>? \n? a line break in java AlbertoPL 2009-08-04T11:03:32Z 2009-08-04T11:03:32Z <p>Line break won't help with placing Swing objects; you need to place a layout on a center JPanel. That is, the center of your border layout should be a single Swing object, a JPanel, and you should set that to a style which allows you to stack each widget. GridLayout(6,1) may do it.</p> http://stackoverflow.com/questions/1226760/filter-manytomany-box-in-django-admin/1226848#1226848 0 Answer by AlbertoPL for Filter ManyToMany box in Django Admin AlbertoPL 2009-08-04T11:01:21Z 2009-08-04T11:01:21Z <pre><code>Category.objects.filter(available_in=cityobject) </code></pre> <p>That should do it. The view should have the city that the user selected, either in the request or as a parameter to that view function.</p> http://stackoverflow.com/questions/1223923/advanced-banner-rotation-algorithms/1223956#1223956 6 Answer by AlbertoPL for Advanced Banner-Rotation Algorithms AlbertoPL 2009-08-03T18:45:10Z 2009-08-03T18:45:10Z <p>The difficulty comes from the time constraint more than anything else. I would divide anyone's priority who did not specify a time constraint by 365 (a year), and then use time as part of the weight factor. So:</p> <pre><code>Client 1 priority: 10000/10 = 1000 Client 2 priority: 1000/365 ~ 3 Client 3 priority: 10000/365 ~30 </code></pre> <p>That should get you a fairly decent indicator of priority. Now, you can't mix and match impressions and clicks can you? They either go the impression route or the click route. Seeing as you cannot control click, but you can control impressions (at least, moreso than clicks), I would weigh it according to impressions. </p> http://stackoverflow.com/questions/1222122/is-dvorak-typing-appropriate-for-programming/1222146#1222146 3 Answer by AlbertoPL for Is Dvorak typing appropriate for programming? AlbertoPL 2009-08-03T12:42:42Z 2009-08-03T12:42:42Z <p>The purpose of the Dvorak keyboard is to prevent strain on the hands by keeping the most typed letters on the home row, at least for English. I highly doubt this would help with programming in any significant way due to the speed at which code is written. I always think about what I write as I write it, and variable names are never completely conforming to standard English. In fact, I would not be surprised if the letter frequencies in a typical file of source code varies dramatically from established English letter frequencies.</p> <p>If you suffer from something like Carpal Tunnel, Dvorak may help alleviate that. I'd have to say that the Dvorak keyboard probably helps with regular writing and typing far more than with programming.</p> http://stackoverflow.com/questions/1221824/building-a-tree-like-structure/1221836#1221836 0 Answer by AlbertoPL for Building A Tree Like Structure AlbertoPL 2009-08-03T11:32:30Z 2009-08-03T12:26:09Z <p>Create a class called Node and make Node have an ArrayList of nodes and a variable containing the parent node. As such:</p> <pre><code>class Node { private List&lt;Node&gt; children; private Node parent; public Node() { children = new ArrayList&lt;Node&gt;(); } //Constructors, accessors, mutators, etc. } </code></pre> <p>This is by far the simplest way. You can make node an abstract class, then have chair, desk, school, etc, all extend Node.</p> <pre><code>public class School extends Node { public School() { super(); } public void addChild(Node node) { children.add(node); } public void setParent(Node node) { parent = node; } } </code></pre> <p><strong>Edit:</strong> I've added some sample methods to show you what needs to happen in order to add children or set the parent. In some other class you can create your School, Desk, etc. objects and then create addChild and setParent methods in order to add children to the node or set the node's parent.</p> http://stackoverflow.com/questions/1202197/change-menu-items-programmatically-from-eclipse-plugin 4 Change Menu Items Programmatically From Eclipse Plugin AlbertoPL 2009-07-29T18:36:02Z 2009-07-29T19:03:43Z <p>I would like to be able to completely remove menu items upon startup of my eclipse plugin application. What I want to do is be able to add these menu items later depending on business logic based off of the user's actions. Is there a way to do this? I've looked at using contributions, but I feel like it's not going to be exactly what I want.</p> <p>If it <em>can</em> do what I need it to do, how do I go about using them? Thanks in advance for any assistance.</p> http://stackoverflow.com/questions/1202128/what-career-can-i-hope-for-if-i-like-algorithms/1202146#1202146 7 Answer by AlbertoPL for What career can I hope for if I like algorithms? AlbertoPL 2009-07-29T18:27:46Z 2009-07-29T18:27:46Z <p>Certainly you can look into helping to develop cryptographic algorithms, although a lot of those opportunities will probably be as part of the government and/or government contracting work.</p> http://stackoverflow.com/questions/1194403/what-names-do-you-find-yourself-prepending-appending-to-classes-regularly/1194459#1194459 1 Answer by AlbertoPL for What names do you find yourself prepending/appending to classes regularly? AlbertoPL 2009-07-28T14:26:09Z 2009-07-28T14:26:09Z <pre><code>Factory </code></pre> <p>Also:</p> <pre><code>Provider </code></pre> http://stackoverflow.com/questions/1187868/how-can-i-exclude-some-folders-from-my-eclipse-project/1187897#1187897 1 Answer by AlbertoPL for How can I exclude some folders from my Eclipse project? AlbertoPL 2009-07-27T12:26:06Z 2009-07-27T12:26:06Z <p>Yes, you may place a custom filter on your project. In your project explorer view, there should be a white, downwards pointing arrow near the top of the panel by the Package Explorer tab. Click it, and go to Filters. From there, you can specify certain folder patterns you do not want detected by checking the box next to Name Filter Patterns. In this case, I would put the name of the 3rd party library.</p> http://stackoverflow.com/questions/1187852/algorithm-for-a-graph-problem/1187870#1187870 3 Answer by AlbertoPL for Algorithm for a graph problem AlbertoPL 2009-07-27T12:20:07Z 2009-07-27T12:20:07Z <p>Use a <a href="http://en.wikipedia.org/wiki/Breadth-first%5Fsearch" rel="nofollow">breadth first search</a> algorithm, keeping track of all of the nodes you have already visited. If, when searching for the next node to traverse, one of the nodes already visited is a possibility, then the graph is wrong. Additionally, if you reach a node that has no other possible node to traverse to next, and you have not reached the end, then the graph is also not connected properly.</p> http://stackoverflow.com/questions/1669517/how-would-i-find-a-book-in-a-large-library/1669535#1669535 Comment by AlbertoPL on How would I find a book in a large library? AlbertoPL 2009-11-03T19:19:11Z 2009-11-03T19:19:11Z Not likely. If the librarian's answers might not be correct, then you could waste time looking at the wrong half of the library. This is equivalent to simply looking through the entire library. In fact, you cannot use any Binary search type questions because the answer could at any time be incorrect (or always incorrect). Thus you can gain no sense as to where the book is via this method. http://stackoverflow.com/questions/1637789/0-0-1-109/1637854#1637854 Comment by AlbertoPL on 0.0 < (1/10^9)? AlbertoPL 2009-10-28T15:12:58Z 2009-10-28T15:12:58Z @Xinus : <a href="http://mathoverflow.net/" rel="nofollow">mathoverflow.net</a> http://stackoverflow.com/questions/1602998/fastest-way-to-obtain-the-largest-x-numbers-from-a-very-large-unsorted-list/1603020#1603020 Comment by AlbertoPL on Fastest way to obtain the largest X numbers from a very large unsorted list? AlbertoPL 2009-10-21T19:28:45Z 2009-10-21T19:28:45Z Yes, and that will require that the list of 100 also stays sorted. http://stackoverflow.com/questions/1602836/comparing-5-integers-in-least-number-of-comparisons/1602863#1602863 Comment by AlbertoPL on Comparing 5 Integers in least number of comparisons AlbertoPL 2009-10-21T18:57:44Z 2009-10-21T18:57:44Z No, n-1 is the least number of comparisons. This code doesn't test if results 3 or 4 are equal to the others. http://stackoverflow.com/questions/1596571/eclipse-attaching-java-source-file-with-class-file Comment by AlbertoPL on Eclipse - Attaching java source file with class file AlbertoPL 2009-10-20T19:42:56Z 2009-10-20T19:42:56Z Yes, I'm confused as well since you could just open the source file itself... http://stackoverflow.com/questions/1596290/isnt-crappy-code-good-for-the-economy Comment by AlbertoPL on Isn't crappy code good for the economy? AlbertoPL 2009-10-20T18:00:16Z 2009-10-20T18:00:16Z Progress creates jobs, not impeding progress. http://stackoverflow.com/questions/1594090/angles-commands-in-superclass Comment by AlbertoPL on angles commands in superclass AlbertoPL 2009-10-20T12:05:07Z 2009-10-20T12:05:07Z The question is fairly vague. Please elaborate. http://stackoverflow.com/questions/1590668/try-catch-and-how-throw-work-in-catch-block/1590672#1590672 Comment by AlbertoPL on Try-Catch and how throw work in catch block AlbertoPL 2009-10-19T19:41:41Z 2009-10-19T19:41:41Z only if the part of the code catching it returns false. http://stackoverflow.com/questions/1567607/finding-substring Comment by AlbertoPL on finding substring AlbertoPL 2009-10-14T16:57:03Z 2009-10-14T16:57:03Z the question is rather vague. Are you looking for a substring that's as long as possible while satisfying the restraint or simply any substring which is a multiple of 3? http://stackoverflow.com/questions/1567598/text-classification-in-java Comment by AlbertoPL on Text Classification in Java AlbertoPL 2009-10-14T16:54:54Z 2009-10-14T16:54:54Z Sounds good. So what have you done to attempt to solve this? http://stackoverflow.com/questions/1552613/why-doesnt-my-jquery-selector-work-here/1552618#1552618 Comment by AlbertoPL on Why doesn't my jquery selector work here? AlbertoPL 2009-10-12T03:59:59Z 2009-10-12T03:59:59Z Well he's looking for getting the attribute, not the text of the link right? http://stackoverflow.com/questions/1544350/condense-this-python-statement-without-destroying-readability/1544366#1544366 Comment by AlbertoPL on Condense this Python statement without destroying readability AlbertoPL 2009-10-09T15:32:44Z 2009-10-09T15:32:44Z Probably should have mentioned that in the question. http://stackoverflow.com/questions/1544350/condense-this-python-statement-without-destroying-readability/1544366#1544366 Comment by AlbertoPL on Condense this Python statement without destroying readability AlbertoPL 2009-10-09T15:08:48Z 2009-10-09T15:08:48Z Yes, it is. But that's not the issue here. He asked for readability. It doesn't matter if it's horrible, the question asked is there a way. This is a way. http://stackoverflow.com/questions/1544350/condense-this-python-statement-without-destroying-readability/1544366#1544366 Comment by AlbertoPL on Condense this Python statement without destroying readability AlbertoPL 2009-10-09T15:06:47Z 2009-10-09T15:06:47Z Sigh, is this NOT a one liner as he as asked for? Why -1 http://stackoverflow.com/questions/1544168/calculating-very-large-whole-numbers/1544250#1544250 Comment by AlbertoPL on Calculating very large whole numbers AlbertoPL 2009-10-09T14:57:52Z 2009-10-09T14:57:52Z Haha StackOverflow just let the number go way off the page. At least, that's what it looks like on my browser (FF 3.5)