User CaptainAwesomePants - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T01:52:32Z http://stackoverflow.com/feeds/user/81491 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1343507/hql-1-to-many-count-question 2 HQL 1 to many count() question CaptainAwesomePants 2009-08-27T20:10:17Z 2009-12-08T18:03:31Z <p>I'm trying to write a query in HQL, and I'm having some trouble with it. It's probably not too difficult, but I'm pretty awful at query languages in general and HQL in specific.</p> <p>Basically, there are three tables, Owners, Pets, and Toys, whose classes look like this:</p> <pre><code>public class Owner { long ownerId; List&lt;Pet&gt; pets; } public class Pet { Owner myOwner; List&lt;Toy&gt; toys; } public class Toy { Pet petThatOwnsThisToy; boolean isSqueaky; } </code></pre> <p>I'm looking for a HQL query that, given an Owner, returns the number of their pets that have at least 3 squeaky toys. I'm sure there's gotta be a pretty simple HQL way to solve this, but search me if I know what it is.</p> <p>I'd also be happy to discover any helpful HQL tutorials beyond the documentation (which is excellent, assuming one is already an SQL pro, which I'm not).</p> http://stackoverflow.com/questions/1842587/can-you-answer-this-2009-acm-international-collegiate-programming-contest-finals 1 Can you answer this 2009 ACM International Collegiate Programming Contest Finals problem? CaptainAwesomePants 2009-12-03T20:14:50Z 2009-12-04T01:21:16Z <p>Out of curiosity, I was checking out the problem set to the 2009 ACM international collegiate programming contest. The questions are pretty interesting. They're available at <a href="http://cm.baylor.edu/resources/pdf/2009Problems.pdf" rel="nofollow">http://cm.baylor.edu/resources/pdf/2009Problems.pdf</a>. I could not come up with an algorithm that solved problem 1, which I will reproduce here. It set off a lively discussion in the office, and we think we're pretty close to an answer, but we'd really appreciate it if somebody could find/work out a full solution (code not required).</p> <p>I will reproduce problem here for your convenience:</p> <h2>Problem 1</h2> <p>Consider the task of scheduling the airplanes that are landing at an airport. Incoming airplanes report their positions, directions, and speeds, and then the controller has to devise a landing schedule that brings all airplanes safely to the ground. Generally, the more time there is between successive landings, the “safer” a landing schedule is. This extra time gives pilots the opportunity to react to changing weather and other surprises. Luckily, part of this scheduling task can be automated – this is where you come in. You will be given scenarios of airplane landings. Each airplane has a time window during which it can safely land. You must compute an order for landing all airplanes that respects these time windows. Furthermore, the airplane landings should be stretched out as much as possible so that the minimum time gap between successive landings is as large as possible. For example, if three airplanes land at 10:00am, 10:05am, and 10:15am, then the smallest gap is five minutes, which occurs between the first two airplanes. Not all gaps have to be the same, but the smallest gap should be as large as possible.</p> <h2>Input</h2> <p>The input file contains several test cases consisting of descriptions of landing scenarios. Each test case starts with a line containing a single integer n (2 ≤ n ≤ 8), which is the number of airplanes in the scenario. This is followed by n lines, each containing two integers ai, bi, which give the beginning and end of the closed interval [ai, bi] during which the ith plane can land safely. The numbers ai and bi are specified in minutes and satisfy 0 ≤ ai ≤ bi ≤ 1440. The input is terminated with a line containing the single integer zero.</p> <h2>Output</h2> <p>For each test case in the input, print its case number (starting with 1) followed by the minimum achievable time gap between successive landings. Print the time split into minutes and seconds, rounded to the closest second. Follow the format of the sample output.</p> <p>Sample Input</p> <pre><code>3 0 10 5 15 10 15 2 0 10 10 20 0 </code></pre> <p>Sample Output</p> <pre><code>Case 1: 7:30 Case 2: 20:00 </code></pre> http://stackoverflow.com/questions/735791/hadoop-examples 10 Hadoop examples? CaptainAwesomePants 2009-04-09T20:18:23Z 2009-11-30T15:12:12Z <p>I'm examining Hadoop as a possible tool with which to do some log analysis. I want to analyze several kinds of statistics in one run. Each line of my log files has all sorts of potentially useful that I'd like to aggregate. I'd like to get all sorts of data out of the logs in a single Hadoop run, but the example Hadoop programs I see online all seem to total exactly one thing. This may be because every single example Hadoop program I can find just does word counts. Can I use Hadoop to solve two or more problems at once?</p> <p>Are there other Hadoop examples, or a Hadoop tutorial out there, that don't solve the word count problem?</p> http://stackoverflow.com/questions/1604258/why-is-a-b-equivalent-to-a-a-b-b 12 Why is (a | b ) equivalent to a - (a & b) + b? CaptainAwesomePants 2009-10-21T23:43:40Z 2009-11-27T03:43:26Z <p>I was looking for a way to do a BITOR() with an Oracle database and came across a suggestion to just use BITAND() instead, replacing BITOR(a,b) with a + b - BITAND(a,b).</p> <p>I tested it by hand a few times and verified it seems to work for all binary numbers I could think of, but I can't think out quick mathematical proof of why this is correct.<br /> Could somebody enlighten me?</p> http://stackoverflow.com/questions/1607819/weaknesses-of-hibernate/1609527#1609527 0 Answer by CaptainAwesomePants for Weaknesses of Hibernate CaptainAwesomePants 2009-10-22T19:45:09Z 2009-10-22T20:03:30Z <p>Hibernate always has and probably always will kind of suck at surprisingly obvious things like Java enumerations. To store an enum, you have to go through all sorts of hoops and custom handling classes and whatnots. They should be as simple as integers or strings (depending how you'd like to store them), but for some unknown reason, they're not.</p> <p>Also, tuning Hibernate can be rather difficult. Like Rails, it's great to get going, but when it comes to fine tuning, it's not really your friend (although their SQL debug output is fantastic and very useful). Sometimes you want wait an HQL query to do a join, in other cases you want it to retrieve everything from cache, and it's hard to specify when you want what to happen.</p> http://stackoverflow.com/questions/1587306/caching-spring-hibernate-webapp 2 caching spring/hibernate webapp CaptainAwesomePants 2009-10-19T06:59:25Z 2009-10-19T08:04:13Z <p>I have a website that allows searches for lists of content in various ways, for instance "show stuff created by user 523 ordered by date" or "show a list of the most recent 10 posts."</p> <p>I use Hibernate for my ORM, and Hibernate provides a cache for objects. For lists of objects, though, like the front page list of most recent content, I'm at a loss as how best to cache that content. Right now, I have my Spring controllers just return a standard JSP page, and then I use oscache at the JSP level wrapped around a call to another class.</p> <p>This seems inelegant, though. What I really want is for my controller to have access to a cached result if one's available so that the JSP can just be concerned with displaying results.</p> <p>What are my options here?</p> http://stackoverflow.com/questions/1555610/solr-dih-how-to-handle-deleted-documents 3 Solr DIH -- How to handle deleted documents? CaptainAwesomePants 2009-10-12T16:35:32Z 2009-10-13T18:34:48Z <p>I'm playing around with a Solr-powered search for my webapp, and I figured it'd be best to use the DataImportHandler to handle syncing with the app via the database. I like the elegance of just checking the <code>last_updated_date</code> field. Good stuff. However, I don't know how to handle deleting documents with this approach. The way I see it, I've got 2 choices. I could either send an explicit message to Solr from the client when a document is deleted, or I could add a "deleted" flag and leave the object in the database, so that Solr will notice that the document has changed and is now "deleted." I could add a query filter that would disregard results with the deleted flag, but it seems inefficient to include all the deleted documents in the Lucene index. What do other folks do?</p> http://stackoverflow.com/questions/1442622/testing-a-card-deck-shuffler 1 Testing a card deck shuffler CaptainAwesomePants 2009-09-18T04:38:47Z 2009-09-18T06:57:57Z <p>I have a class PlayingCard which represents a particular playing card. I have another class, Deck, which contains a list of PlayingCard objects. Deck has a <code>shuffle()</code> method that randomizes the card order.</p> <p>I would like to write some unit tests for the shuffle() method, but I'm at a bit of a loss. I'd prefer the test to not care about the internals of just how the shuffle is done, but I want them to be good tests.</p> <p>How do I best unit test when randomness is involved?</p> http://stackoverflow.com/questions/856268/spring-mvc-isformsubmission-equivalent-for-annotations 0 Spring MVC isFormSubmission() equivalent for annotations? CaptainAwesomePants 2009-05-13T05:53:37Z 2009-09-15T00:36:24Z <p>With Spring MVC, it's easy to express a concept like "A user is submitting the form if they use POST or if they include the 'isSubmit' parameter." You'd just extend <code>SimpleFormController</code> and override the <code>isFormSubmission</code> method.</p> <p>However, Spring MVC now uses these neat annotations like <code>@RequestMapping</code> to handle requests. <code>@RequestMapping</code> has an obvious filter for whether somebody used a GET or a POST, but I don't see any inherent support for all of the useful logic SimpleFormController provided. Is it still available to me with annotations?</p> http://stackoverflow.com/questions/1423562/what-does-the-percent-cpu-mean/1423615#1423615 2 Answer by CaptainAwesomePants for What does the percent CPU mean? CaptainAwesomePants 2009-09-14T20:03:27Z 2009-09-14T20:03:27Z <p>There are lots of ways for a process to not use the CPU. For instance, if your program makes a blocking I/O call, for instance reading a certain amount of bytes from a file or from the network, the program cannot continue until that information becomes available. During that time, the operating system will let another program (or a background task, or no program at all) take the CPU for that time. The CPU utilization is an average of what percentage of the time your program is actively using the CPU.</p> <p>A very low percentage can be considered a design goal in many cases. Avoiding taking up the CPU makes multitasking much snappier, lets background tasks run faster, and is generally considered "nice." Fullscreen Video games are traditionally CPU hugs, especially older ones. They often will maintain 100% CPU all the time.</p> <p>If your program gets into an infinite loop that does not involve I/O or system calls, for instance <code>while(1){;}</code>, it will take up 100% CPU until you kill it (although note that most operating systems can still interrupt processes that aren't actively yielding themselves. The details of how this works are outside the scope of this answer, though).</p> http://stackoverflow.com/questions/1422746/odds-of-1st-2nd-3rd-place/1422789#1422789 10 Answer by CaptainAwesomePants for Odds of 1st, 2nd, 3rd place CaptainAwesomePants 2009-09-14T17:03:07Z 2009-09-14T17:03:07Z <p>0%. 1st, 2nd, and 3rd place are mutually exclusive. You cannot win all 3.</p> http://stackoverflow.com/questions/1309623/circular-dependency-and-spring-powered-event-queue 0 Circular Dependency and Spring-powered Event Queue CaptainAwesomePants 2009-08-21T01:06:52Z 2009-09-03T18:52:29Z <p>I have a "MessageQueue" class. It's just is to queue messages. Beans that need the ability to post messages simply have a MessageQueue property and Spring takes care of injecting it.</p> <p>The problem is that many beans need to also register themselves as listeners. The list of listener beans cannot be injected into the messageQueue because that would be lead to circular dependencies. Many beans up and down the dependency chain need to post messages and/or listen to messages.</p> <p>How then could a Spring-powered message queue be implemented in such a way that it does not involve circular dependencies?</p> http://stackoverflow.com/questions/1309623/circular-dependency-and-spring-powered-event-queue/1375260#1375260 0 Answer by CaptainAwesomePants for Circular Dependency and Spring-powered Event Queue CaptainAwesomePants 2009-09-03T18:52:29Z 2009-09-03T18:52:29Z <p>Okay, I was worrying about something that was actually fine. Lots of things do in fact depend on the queue, but the queue itself depends on nothing. It has no dependencies of its own, and so does not in any way lead to circular dependency issues. It's just a leaf with lots of parents. Silly of me :-)</p> http://stackoverflow.com/questions/1373294/inheritance-in-hibernate-annotations/1375197#1375197 1 Answer by CaptainAwesomePants for Inheritance in Hibernate Annotations?? CaptainAwesomePants 2009-09-03T18:40:35Z 2009-09-03T18:40:35Z <p>This is a very general question, but I'd advise taking a look at the following resources:</p> <ul> <li><a href="http://docs.jboss.org/hibernate/stable/annotations/reference/en/html%5Fsingle/#d0e829" rel="nofollow">The documentation on how inheritance is declared via Hibernate annotations.</a></li> <li><a href="http://www.manning.com/bauer2/chapter2.pdf" rel="nofollow">This PDF file</a> (chapter 2 of a book on Hibernate). Page 38 forwards deals with Hibernate annotations.</li> </ul> <p>But the very basic answer to your question is that you should use the <code>@Inheritance</code> annotation, like so:</p> <pre><code>@Entity @Inheritance(strategy = InheritanceType.TABLE_PER_CLASS) public class Flight implements Serializable { ... } </code></pre> http://stackoverflow.com/questions/1370055/should-i-do-a-degree-and-get-some-accredited-qualifications-or-continue-to-go-do/1370133#1370133 3 Answer by CaptainAwesomePants for Should I do a degree and get some accredited qualifications, or continue to go down the self-taught route? CaptainAwesomePants 2009-09-02T21:08:33Z 2009-09-02T21:08:33Z <p>You might want to try your hand at UI design. There are lots of great programmers out there who can't design their way out of a paper bag. They will literally beg for you to create a precise image that describes the web page/application/heads-up display that must be implemented. That kind of work pays very well, too, as not that many people can both draw very well and also communicate effectively with programmers. As a bonus, you can probably get experience actually programming at the same time.</p> http://stackoverflow.com/questions/1323838/inserting-a-generated-value-into-a-hibernate-record 1 Inserting a generated value into a Hibernate record CaptainAwesomePants 2009-08-24T18:04:16Z 2009-08-24T19:40:43Z <p>I am creating a record of Widgets with Hibernate. It's pretty basic. I've got an hbm.xml file describing the object, a DAO class that creates and saves them, etc.</p> <p>However, there is an explicit sorting order to the widgets, and each new Widget needs to be inserted with a <code>sortIndex</code> column value that is greater than all other <code>sortIndex</code> column values (i.e. new widgets are automatically sorted last). I can't for the life of me figure out how to accomplish this.</p> <p>Hibernate is perfectly capable of setting ID columns automatically, and it makes sense to me that it would be able to set some other column to a unique value according to a formula like max(sortIndex)+1 or according to some increasing sequence generator value, but I can't find a reference in the documentation to this sort of thing. Could someone point me in the right direction?</p> <p>One approach that sprang to mind was to just query for the highest sortIndex manually, but I started worrying about two different transactions both finding the same new sortIndex.</p> http://stackoverflow.com/questions/1319733/user-sortable-records 4 User-sortable records CaptainAwesomePants 2009-08-23T22:21:23Z 2009-08-24T17:17:13Z <p>For each user in my webapp, there are <code>n</code> related Widgets. Each widget is represented in the database in a Widgets table. Users can sort their widgets, they'll never have more than a couple dozen widgets, and they will frequently sort widgets.</p> <p>I haven't dealt with database items that have an inherent order to them very frequently. What's a good strategy for ordering them? At first, I thought a simple "sortIndex" column would work just fine, but then I started wondering how to initialize this value. It presumably has to be a unique value, and it should be greater or less than every other sort index. I don't want to have to check all of the other sort indexes for that user every time I create a new widget, though. That seems unnecessary.</p> <p>Perhaps I could have a default "bottom-priority" sort index? But then how do I differentiate between those? I suppose I could use a creation date flag, but then what if a user wants to insert a widget in the middle of all of those bottom-priority widgets?</p> <p>What's the standard way to handle this sort of thing?</p> http://stackoverflow.com/questions/1304245/spring-and-the-anemic-domain-model 7 Spring and the anemic domain model CaptainAwesomePants 2009-08-20T06:06:02Z 2009-08-20T15:14:32Z <p>So, I've noticed that I definitely have a tendency to pattern my Spring/Hibernate stack objects like this:</p> <ul> <li>Foo controller makes a call to "FooService"</li> <li>FooService calls FooRepository.getById() method to get some Foos.</li> <li>FooRepository makes some Hibernate calls to load Foo objects.</li> <li>FooService does some interactions with the Foos. It may use a related TransactionalFooService to handle things that need to be done together in a transaction.</li> <li>FooService asks FooRepository to save the Foos.</li> </ul> <p>The problem here is that the Foos don't have any real logic. For example, if an email needs to be sent every time a Foo expires, there's not a call to Foo.expire(). There's a call to FooService.expireFoo(fooId). This is for a variety of reasons:</p> <ul> <li>It's annoying to get at other services and objects from a Foo. It's not a Spring bean, and it was loaded by Hibernate.</li> <li>It's annoying to get a Foo to do several somethings transactionally.</li> <li>It's hard to decide whether Foo should be responsible for choosing when to save itself. If you call foo.setName(), should foo persist the change? Should it wait until you call foo.save()? Should foo.save() just invoke FooRepository.save(this)?</li> </ul> <p>So for these sorts of reasons, my Spring domain objects tend to be basically glorified structs with some validation logic. Maybe this is okay. Maybe web services are okay as procedural code. Maybe as new features get written, it's acceptable to create new services that deal with the same old objects in new ways.</p> <p>But I'd like to escape from this sort of design, and I'm wondering what other Spring uses do about it? Do you combat it with fancy tricks like load-time weaving (which I'm not that comfortable with)? Do you have some other trick? Do you think procedural is fine?</p> http://stackoverflow.com/questions/1280497/autowired-and-transactionproxyfactorybean 0 @Autowired and TransactionProxyFactoryBean? CaptainAwesomePants 2009-08-14T22:26:30Z 2009-08-17T19:57:42Z <p>I have a repository class that is created in XML like so:</p> <pre><code>&lt;bean id="stuffRepositoryTarget" class="my.stuff.RepositoryImpl"&gt; &lt;!-- some params --&gt; &lt;/bean&gt; &lt;bean id="stuffRepository" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean" primary="true"&gt; &lt;property name="target" ref="stuffRepositoryTarget" /&gt; &lt;property name="transactionAttributes"&gt; &lt;prop key="*"&gt;PROPAGATION_REQUIRED&lt;/prop&gt; &lt;/property&gt; &lt;/bean&gt; </code></pre> <p>And then I have a class that uses the repository like this:</p> <pre><code>@Autowired Repository repository; </code></pre> <p>It appears that the @Autowired annotation is referring to my Impl object and not my transaction interceptor. What am I doing wrong?</p> http://stackoverflow.com/questions/1264522/spring-xml-inner-bean-question 2 Spring XML inner bean question CaptainAwesomePants 2009-08-12T06:33:21Z 2009-08-12T20:01:49Z <p>I have created a spring bean that contains a list of other beans, like so:</p> <pre><code>&lt;bean name="InventoryManager" class="InvManager"&gt; &lt;property name="slots"&gt; &lt;bean class="HeadSlot" /&gt; &lt;bean class="ShoulderSlot" /&gt; &lt;!-- ... --&gt; &lt;/property&gt; &lt;/bean&gt; </code></pre> <p>The problem, though, is that elsewhere I have used an <code>@Autowired</code> annotation in another class to grab a list of all beans implementing a certain interface that some of these inner beans implement, like so:</p> <pre><code>@Autowired public void registerInventoryHandlers( List&lt;InvSlot&gt; slots ) { //... do some setup stuff with beans that implement the InvSlot interface. } </code></pre> <p>The problem here is that apparently the "inner beans" defined in XML are not part of the <code>@Autowired</code> list. However, giving all of these slot beans names and then referencing them from the XML seems unnecessary and ugly.</p> <p>Is there a way to define a bean inside another bean, but not be an "inner" bean? Or is there a better way to handle this design?</p> http://stackoverflow.com/questions/1251924/how-to-handle-a-few-dozen-flags-in-a-database 3 How to handle a few dozen flags in a database CaptainAwesomePants 2009-08-09T18:26:53Z 2009-08-09T23:41:31Z <p>Like most apps, mine has a "users" table that describes the entities that can log in to it. It has info like their alias, their email address, their salted password hashes, and all the usual candidates.</p> <p>However, as my app has grown, I've needed more and more special case "flags" that I've generally just stuck in the users table. Stuff like whether their most recent monthly email has been transmitted yet, whether they've dismissed the tutorial popup, how many times they clicked the "I am awesome" button, etc.</p> <p>I am beginning to have quite a few of these fields, and the majority of these flags I don't need for the majority of the webpages that I handle.</p> <p>Is there anything wrong with keeping all of these flags in the users table? Is there somewhere better to put them? Would creating other tables with a 1:1 relationship with the users table provide additional overhead to retrieving the data when I do need it?</p> <p>Also, I use Hibernate as my ORM, and I worry that creating a bunch of extra tables for this information means that I'd also have to dirty up my User domain object. Advice?</p> http://stackoverflow.com/questions/1246803/constraintviolationexception-vs-dataintegrityviolationexception 1 ConstraintViolationException VS DataIntegrityViolationException CaptainAwesomePants 2009-08-07T20:20:14Z 2009-08-07T22:55:14Z <p>I am writing a Spring app, and it seems that when I run into database errors, sometimes Hibernate's <code>ConstraintViolationException</code> is thrown and sometimes Spring's <code>DataIntegrityViolationException</code> is thrown. Is there a reason one might be thrown and not the other? Do they mean different things?</p> http://stackoverflow.com/questions/1196208/java-inheritance-question/1196257#1196257 4 Answer by CaptainAwesomePants for Java Inheritance Question CaptainAwesomePants 2009-07-28T19:30:28Z 2009-07-28T19:30:28Z <p>As written, your code will not compile, which makes me think that your problem is elsewhere. Your return statements don't have semicolons at the end of them. Rather, they appear after the <code>}</code>. It's possible you had some other problem (maybe your subclass misspelled getApple()), but you're still using your old class files because your new stuff isn't compiling.</p> <p>This code works:</p> <pre><code>class Base { public String getApple() { return "base apple"; } } class Extended extends Base { public String getApple() { return "extended apple"; } } public class Test { public static void main(String[] args) { Base b = new Extended(); System.out.println(b.getApple()); } } </code></pre> <p>Console:</p> <pre><code>#javac Test.java #java Test extended apple </code></pre> http://stackoverflow.com/questions/1111254/interactive-website-prototyping 3 Interactive Website prototyping CaptainAwesomePants 2009-07-10T18:37:18Z 2009-07-23T19:48:05Z <p>I would like to rapidly prototype new features for a website. I'm looking for a way to:</p> <ul> <li>Build around an existing, complex website</li> <li>Allow for interactivity</li> <li>Ridiculously fast and easy to try out new things</li> </ul> <p>I imagine something that allows me to say "render this website, but on pages with URLs like this, tag on this thing that I'm now drawing with stick figures onto the page, and if somebody clicks on it, move them here".</p> <p>Or possibly, "here is a screenshot of a website. If somebody clicks in this box, show them this other screenshot".</p> <p>What do you folks use to prototype website UI features?</p> http://stackoverflow.com/questions/1168836/advise-about-next-learning-move/1168859#1168859 4 Answer by CaptainAwesomePants for advise about next learning move CaptainAwesomePants 2009-07-22T23:43:42Z 2009-07-22T23:43:42Z <p>Algorithms are really, really useful to know. A solid understanding of computational complexity and algorithms can be used across programming languages and across projects. It is fundamental information that will benefit you immensely over the course of a career. If you ask an academic what computer science is, he will tell you that it is a branch of mathematics concerned with complexity, computability, and algorithms.</p> <p>That being said, you may not be interested in it. Knowing what's O(n) or or Ω(2^n) will not improve your HTML, and being able to explain what it means for JavaScript to be Turing Complete sure won't make your webpages any more cross-browser compatible.</p> <p>I say learn what interests you, but I do advise sitting through at least one theory course. Good fundamentals never hurt.</p> http://stackoverflow.com/questions/1167630/hql-and-one-to-many-queries 1 HQL and one-to-many queries CaptainAwesomePants 2009-07-22T19:28:06Z 2009-07-22T20:14:26Z <p>I have Hibernate domain objects that looks like this:</p> <pre><code> class Player { List&lt;Item&gt; inventory; } class Item { List&lt;Enchantment&gt; enchantments; } class Enchantment { boolean isSuperiorEnchantment; } </code></pre> <p>I need to construct an HQL query that returns to me a list of all players that have at least one item with an enchantment on it that has the <code>isSuperiorEnchantment</code> flag set. I can't for the life of me figure out a way to express this in HQL.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1138830/how-to-replace-tokens-in-a-string-without-stringtokenizer/1138925#1138925 2 Answer by CaptainAwesomePants for How to replace tokens in a string without StringTokenizer CaptainAwesomePants 2009-07-16T16:56:44Z 2009-07-16T16:56:44Z <p>Depending on how ridiculously complex your string is, you could try using a more serious string templating language, like Velocity. In Velocity's case, you'd do something like this:</p> <pre><code>Velocity.init(); VelocityContext context = new VelocityContext(); context.put( "name", "Bob" ); StringWriter output = new StringWriter(); Velocity.evaluate( context, output, "", "Hello, #name, this is a personalized message for you."); System.out.println(output.toString()); </code></pre> <p>But that is likely overkill if you only want to replace one or two values.</p> http://stackoverflow.com/questions/1128907/java-need-efficient-notifications-between-site-users/1129068#1129068 1 Answer by CaptainAwesomePants for Java: Need efficient notifications between site users. CaptainAwesomePants 2009-07-15T02:14:52Z 2009-07-15T02:14:52Z <p>There are many ways to push notifications to a web client. Gmail's IM client is an excellent example of this sort of thing. This is often accomplished by holding an open HTTP connection in some manner, and this family of techniques is referred to as COMET. Wikipedia has an article on it, and there are blogs dedicated to the subject ( <a href="http://cometdaily.com/" rel="nofollow">http://cometdaily.com/</a> ).</p> <p>Even if you didn't use this technique, there are still many improvements you can make to the algorithm you identified in your question. One way would be to use a wait/notify sort of pattern or a subscriber/publisher approach. Another would be to return a "waiting for other player to make a turn" page immediately, and have that page automatically refresh every few seconds until the other player has taken his turn.</p> <p>I think the solution you're looking for is COMET-style notification, though.</p> http://stackoverflow.com/questions/1124516/why-does-spring-use-xml-for-component-wiring/1128111#1128111 2 Answer by CaptainAwesomePants for why does Spring use XML for component wiring? CaptainAwesomePants 2009-07-14T21:19:34Z 2009-07-14T21:30:15Z <p>I would say that the reason Spring favors XML over Java is that the two languages are for two different tasks. Java is a programming language. Its purpose is to describe algorithms, programs, control flow, etc. If deducing the structure of your program requires complex control flow, Java would be a good choice.</p> <p>XML is fundamentally different. It is not a programming language. It is a way to describe ordered data, like a cookbook or a vector graphic. If the organization and interdependencies of your program's system are static values, then XML might be an appropriate place to put them.</p> <p>I would argue that your configuration stuff should generally not be in Java for the same reason that a cookbook should not be in Java. In fact, I could make the same conversion:</p> <pre><code>&lt;book&gt; &lt;chapter&gt;It was the best of times, it was the worst of times&lt;/chapter&gt; &lt;/book&gt; public static void main(String[] args) { String chapter1 = BookXMLParser.loadChapter(1); System.out.println(chapter1); } </code></pre> <p>could obviously also be done entirely in Java:</p> <pre><code>public static void main(String[] args) { String chapter1 = "It was the best of times, it was the worst of times"); System.out.println(chapter1); } </code></pre> <p>Now, obviously, this is a ridiculous example. Books are hundreds of pages long. It would be silly to keep them in Java code. However, I would make the same argument for Spring configuration. One of my largest programs has spring XML that totals to many thousand lines.</p> <p>Of course, there's definitely something to be said in favor defining this stuff in Java. Most especially, IDEs would be able to provide additional help more easily about which classes are using what, and other static analysis tools would be a little better at analyzing your code for problems as well.</p> <p>Then again, there are also some downsides. Allowing you to do this configuration in Java allows the programmer to do all sorts of nasty things that are significantly harder to achieve in XML, like this:</p> <pre><code>bean1.setName("fred"); if( System.currentTimeMillis() &gt; 1234567890l ) { //Automatically use new feature after next Thursday bean1.setNewFeature(1); } else if( x &gt; 17 ) { switch(y) { case POTATO: bean1.setNewFeature(0); break; case POTAHTO: bean1.setNewFeature(1); case WHO_COULD_ASK_FOR_ANYTHING_MORE_FALLTHROUGH: bean1.setFoo(bar); break; default: baz? bean1.setBar(baz) : if(17 &gt; t) { bean1.setNewFeature(q) } else { throw new RuntimeException("That's odd..."); } } } </code></pre> <p>Well, you get the point. Your code obviously won't start out that bad, but you'll be tempted to use an if statement somewhere, and then you'll use another, and then another....</p> http://stackoverflow.com/questions/834117/how-to-build-a-compass-with-the-iphone/1122154#1122154 1 Answer by CaptainAwesomePants for How to build a compass with the iPhone? CaptainAwesomePants 2009-07-13T21:22:59Z 2009-07-13T21:22:59Z <p>As an update to this, the iPhone 3GS does include an actual, working digital compass that is available to apps. It makes writing such an app trivial.</p> <p>See the <code>CLHeading</code> class and the <code>magneticHeading</code> property.</p> <p><a href="http://developer.apple.com/iphone/library/documentation/CoreLocation/Reference/CLHeading_Class/Reference/Reference.html" rel="nofollow">http://developer.apple.com/iphone/library/documentation/CoreLocation/Reference/CLHeading_Class/Reference/Reference.html</a></p> <p>You can also get a true north heading, assuming that the phone has had time to locate itself geographically.</p> http://stackoverflow.com/questions/430142/what-algorithms-compute-directions-from-point-a-to-point-b-on-a-map/584211#584211 Comment by CaptainAwesomePants on What algorithms compute directions from point A to point B on a map? CaptainAwesomePants 2009-11-02T18:48:53Z 2009-11-02T18:48:53Z There's good news and bad news. Both of them are that you've made yourself Internet Famous via reddit. Don't worry, the Internet has a short attention span. <a href="http://www.reddit.com/r/programming/comments/a03ue/now_youve_got_two_problems_routfinding_and_xml/" rel="nofollow">reddit.com/r/programming/&hellip;</a> http://stackoverflow.com/questions/1607819/weaknesses-of-hibernate/1609527#1609527 Comment by CaptainAwesomePants on Weaknesses of Hibernate CaptainAwesomePants 2009-10-22T21:37:03Z 2009-10-22T21:37:03Z I'm sure you're right, but would you mind telling me how to do use enums in Hibernate without annotations, or point me to documentation of such a feature? http://stackoverflow.com/questions/1607819/weaknesses-of-hibernate/1607920#1607920 Comment by CaptainAwesomePants on Weaknesses of Hibernate CaptainAwesomePants 2009-10-22T20:17:44Z 2009-10-22T20:17:44Z @ChssPly76 Hibernate specifically recommends that it NOT be a private constructor. <a href="http://docs.jboss.org/hibernate/core/3.3/reference/en/html/persistent-classes.html#persistent-classes-pojo-constructor" rel="nofollow">docs.jboss.org/hibernate/core/&hellip;</a> Also, I'm not sure why the requirement that I modify my domain objects to suit Hibernate isn't a &quot;valid&quot; concern. http://stackoverflow.com/questions/1607819/weaknesses-of-hibernate/1609527#1609527 Comment by CaptainAwesomePants on Weaknesses of Hibernate CaptainAwesomePants 2009-10-22T20:09:32Z 2009-10-22T20:09:32Z I'll agree with you that complaining about how it caches is probably unfair, so I removed that bit. However, I don't use annotations: I use hbm.xml files. I can't find a single reference to enumerations anywhere in the Hibernate core documentation to enums. If you know of a way, though, I'd love to know about it. <a href="http://docs.jboss.org/hibernate/stable/core/reference/en/html_single/" rel="nofollow">docs.jboss.org/hibernate/stable/&hellip;</a> http://stackoverflow.com/questions/1607819/weaknesses-of-hibernate/1607920#1607920 Comment by CaptainAwesomePants on Weaknesses of Hibernate CaptainAwesomePants 2009-10-22T19:51:25Z 2009-10-22T19:51:25Z This is something that always bothered me. All of my domain objects MUST have a zero-argument constructor. If I want to do any sort of non-persistent initialization, I have to either do it explicitly after Hibernate retrieves the object, or I have to hook some sort of Hibernate interceptor in, which is really tricky. I really wish Spring and Hibernate especially could play nicer with this issue. http://stackoverflow.com/questions/1604258/why-is-a-b-equivalent-to-a-a-b-b/1604324#1604324 Comment by CaptainAwesomePants on Why is (a | b ) equivalent to a - (a & b) + b? CaptainAwesomePants 2009-10-22T00:08:55Z 2009-10-22T00:08:55Z This is also a great answer, thanks! http://stackoverflow.com/questions/1604258/why-is-a-b-equivalent-to-a-a-b-b/1604269#1604269 Comment by CaptainAwesomePants on Why is (a | b ) equivalent to a - (a & b) + b? CaptainAwesomePants 2009-10-21T23:57:51Z 2009-10-21T23:57:51Z That's a great answer, exactly what I was looking for and easy to understand. Thanks a lot! http://stackoverflow.com/questions/1587306/caching-spring-hibernate-webapp/1587371#1587371 Comment by CaptainAwesomePants on caching spring/hibernate webapp CaptainAwesomePants 2009-10-19T07:54:11Z 2009-10-19T07:54:11Z Not exactly. Query caching seems neat, but also limited and prone to frequent flushing in many situations. I was hoping for some way to cache arbitrary calls to the DAO more generically, but I'm sure that's exactly what I want. I'm just sort of wondering if there are any standard techniques out there I'm not aware of. For instance, what might stack overflow use to render its front page, or does every visit trigger a database read? http://stackoverflow.com/questions/1555610/solr-dih-how-to-handle-deleted-documents/1557604#1557604 Comment by CaptainAwesomePants on Solr DIH -- How to handle deleted documents? CaptainAwesomePants 2009-10-13T19:40:16Z 2009-10-13T19:40:16Z That's a great list! I'm still using 1.3, but that's a convincing reason to look into switching. http://stackoverflow.com/questions/1480040/regular-expression-removing-all-words-shorter-than-n/1480056#1480056 Comment by CaptainAwesomePants on Regular expression removing all words shorter than n CaptainAwesomePants 2009-09-26T00:53:15Z 2009-09-26T00:53:15Z If you slightly changed that to \b\w{1,2}\s?\b, that might address the whitespace issue. http://stackoverflow.com/questions/1434774/qa-vs-development-ratio/1434832#1434832 Comment by CaptainAwesomePants on QA vs Development Ratio CaptainAwesomePants 2009-09-16T19:38:40Z 2009-09-16T19:38:40Z I think that this is generally a very good comment, but just to stress how important QA is, you misspelled &quot;medical imaging devices.&quot; Always be concerned with bugs when dealing with radiation machines (especially if they match the regular expression therac-[0-9]+ ) http://stackoverflow.com/questions/1358059/questions-about-sun-certifications/1358189#1358189 Comment by CaptainAwesomePants on Questions about SUN certifications CaptainAwesomePants 2009-08-31T17:17:12Z 2009-08-31T17:17:12Z While I generally agree with this, I don't necessarily think that college is for everybody. Some folks are clever technically, need a job right now and not four years from now, and need some sort of formal recognition so that you don't throw away their resume. http://stackoverflow.com/questions/1323838/inserting-a-generated-value-into-a-hibernate-record/1323907#1323907 Comment by CaptainAwesomePants on Inserting a generated value into a Hibernate record CaptainAwesomePants 2009-08-24T21:29:31Z 2009-08-24T21:29:31Z Indeed, that is exactly my problem with them. Otherwise they'd be so amazingly great for my needs :( http://stackoverflow.com/questions/1323838/inserting-a-generated-value-into-a-hibernate-record/1323907#1323907 Comment by CaptainAwesomePants on Inserting a generated value into a Hibernate record CaptainAwesomePants 2009-08-24T18:22:03Z 2009-08-24T18:22:03Z Ah, no, I was wondering about using a formula or a generated value to calculate its INITIAL value, so that every new Widget would be at the end of the list just by virtue of being persisted. http://stackoverflow.com/questions/1318770/impressive-examples-in-java/1318783#1318783 Comment by CaptainAwesomePants on Impressive examples in Java? CaptainAwesomePants 2009-08-23T22:44:58Z 2009-08-23T22:44:58Z This is a very good idea. Java's library is very, very good at accessing network resources, which C and Pascal are much worse at. A quick example of Java's pros vs. C's cons would be a 10 line program that loaded an image from the Internet and displayed it.