User Loki - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T19:37:40Z http://stackoverflow.com/feeds/user/39057 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/326467/gwt-without-java-script 0 GWT without Java Script? Loki 2008-11-28T19:10:26Z 2009-12-17T06:33:00Z <p>I was looking into GWT. It seems nice, but our software have the must work without JS requirement. Is it possible?</p> http://stackoverflow.com/questions/340717/other-uses-of-version-control-than-for-code 5 Other uses of version control than for code? Loki 2008-12-04T14:14:19Z 2009-11-25T00:53:41Z <p>Seeing this: <a href="http://www.suckless.org/wiki.html" rel="nofollow">http://www.suckless.org/wiki.html</a>. A wiki based on Mercurial. Are there any other non-code related use to version control? Is there any other projects that uses version control tools inside instead of programming their own specific solution?</p> http://stackoverflow.com/questions/354837/whats-up-with-logging-in-java 32 What's Up with Logging in Java? Loki 2008-12-10T01:27:31Z 2009-10-28T02:01:18Z <p>Why one would use one of the following packages instead of the other?</p> <ul> <li>Java Logging</li> <li>Commons Logging</li> <li>Log4j</li> <li>SLF4j</li> <li>Logback</li> </ul> http://stackoverflow.com/questions/353258/are-object-oriented-databases-still-in-use 7 Are Object oriented databases still in use? Loki 2008-12-09T16:00:25Z 2009-09-03T07:01:21Z <p>Quite a while ago, I heard about Object databases. Cool concept and all. Now, with the event of ORMs everywhere, does anyone still use any of the Object oriented Databases systems? Are they relevant? Are they practical?</p> http://stackoverflow.com/questions/1009703/wifi-triangulation 4 Wifi Triangulation Loki 2009-06-17T21:47:53Z 2009-06-18T02:34:33Z <p>What would be the best way to triangulate a wireless network passively. Are there tools available? Algorithms? Libraries?</p> <p>My goal would be to create a relative map of various objects that sends or receive signals using signal strength (DB's), signal/noise ratio, signal phase, etc. from a few location points. With enough sampling, i'm guessing it would be possible to create a good 2d/3d map.</p> <p>I'm searching for stuff in any language / platform.</p> <p>Some keywords: wi-fi site survey, visualization, coverage, location, positioning</p> <p>Thinking about using kismet to gather the data and then process it. Maybe Free Space Path Loss for RF in the 2.4Ghz range to calculate a relative distance. And optionally try to use <a href="http://www.moonblinkwifi.com/attenuation%5Fat%5F24ghz%5F.cfm" rel="nofollow">RF obstacle attenuation estimation values</a> (based on some user input) to give better estimates. Then use trilateration to generate possible relative coordinates.</p> http://stackoverflow.com/questions/330963/why-does-everyone-go-with-subversion 13 Why does everyone go with Subversion? Loki 2008-12-01T14:15:40Z 2009-06-16T08:11:04Z <p>I personally used Mercurial and Subversion in a limited way and I just can't see why 95% of the people will chose SVN over something else. Is it just a monopoly case or is there a lot of good hidden in SVN that other systems don't have?</p> http://stackoverflow.com/questions/344374/is-there-anything-like-openmp-on-java 2 Is there anything like OpenMP on Java? Loki 2008-12-05T16:21:07Z 2009-06-04T14:27:59Z <p>Is there anything like OpenMP on Java?</p> http://stackoverflow.com/questions/322118/what-is-the-weirdest-commercial-language-system-youve-ever-used 3 What is the weirdest commercial language/system you've ever used? Loki 2008-11-26T20:56:10Z 2009-05-20T16:15:05Z <p>Ah. I know everyone of you have worked on a system so weird only a handful of people know about. So what about it?</p> http://stackoverflow.com/questions/344314/best-places-to-be-kept-updated-on-security-flaws-in-softwares 1 Best place(s) to be kept updated on security flaws in softwares. Loki 2008-12-05T16:02:11Z 2009-05-20T00:07:56Z <p>Where should one go to be kept updated on all of the security flaws/problems floating around? Specially in the era of open source where we tend to use libraries from everywhere.</p> http://stackoverflow.com/questions/318804/maven-or-ivy-for-managing-dependencies-from-ant 5 Maven or Ivy for Managing Dependencies from Ant? Loki 2008-11-25T20:49:57Z 2009-05-07T02:51:50Z <p>Hi, I was wondering about the best way to manage projects dependencies from ant. What are the pros and cons of the Maven Ant task and of Ivy?</p> http://stackoverflow.com/questions/503566/efficient-paging-limit-query-in-sqlserver-2000 0 Efficient Paging (Limit) Query in SQLServer 2000? Loki 2009-02-02T15:21:14Z 2009-02-09T12:49:44Z <p>What would be the most efficient way to do a paging query in SQLServer 2000?</p> <p>Where a "paging query" would be the equivalent of using the LIMIT statement in MySQL.</p> <p>EDIT: Could a stored procedure be more efficient than any set based query in that case?</p> http://stackoverflow.com/questions/352761/best-resource-for-character-encodings 2 Best Resource for Character Encodings Loki 2008-12-09T13:52:01Z 2009-02-09T09:44:57Z <p>I'm searching for a document (not printed) that explains in details but still simply the subject of character encoding.</p> http://stackoverflow.com/questions/520930/calculate-final-scores-in-a-game-relative-to-previous-scores-and-other-players 1 Calculate final scores in a game relative to previous scores and other players. Loki 2009-02-06T16:15:31Z 2009-02-06T21:48:31Z <p>Supposing a multi-player game, what you be the fairest way give final scores based on the previous scores of all players.</p> <p>For example, in a two player match, player A having two times the score of player B. "A" finishing first would not give him a lot of points; finishing last, he would lose quite a lot of points.</p> http://stackoverflow.com/questions/462898/jpa-not-generating-on-delete-set-null-fk-restrictions/520839#520839 2 Answer by Loki for JPA not generating "on delete set null" FK restrictions. Loki 2009-02-06T15:56:53Z 2009-02-06T15:56:53Z <p>In your case, you are generating the database from the classes. This would imply that you wont use the database for other purposes (as doing so would force you to have DDL scripts). That means that have this rule implemented in the database or in the java code is unimportant.</p> <p>We also know that Hibernate would raise a transient exception in the case where one would delete one or more statuses and try to reference it when committing without a cascade.</p> <p>Also, the database will be generated using a foreign key constraint.</p> <p>All that means that the constraint MUST be respected for the application to work.</p> <p>If your entities are in a jar by themselves, you could add a transient method to the alarm or the status interface to remove a status while respecting the rule.</p> <p>Also, the programmers, when using the entities will be forced to respect the rule or else the code wont work. But to make the task easier, you could make the relation bidirectional so that the task of tracking down the alarms from the statuses is made easier.</p> <p>If you can, use an ondelete interceptor/listener to set the alarm.status property to null.</p> http://stackoverflow.com/questions/504368/maven-findbugs-plugin/504394#504394 1 Answer by Loki for Maven FindBugs plugin Loki 2009-02-02T18:49:59Z 2009-02-02T18:49:59Z <p>try that:</p> <pre><code>&lt;version&gt;1.2&lt;/version&gt; </code></pre> <p><a href="http://repo2.maven.org/maven2/org/codehaus/mojo/findbugs-maven-plugin/" rel="nofollow">http://repo2.maven.org/maven2/org/codehaus/mojo/findbugs-maven-plugin/</a></p> <p>Seems like they did a simple copy/paste error.</p> http://stackoverflow.com/questions/504337/difference-between-set-and-collection-in-hibernate/504357#504357 0 Answer by Loki for Difference between Set and Collection in hibernate Loki 2009-02-02T18:40:20Z 2009-02-02T18:40:20Z <p>Collection is an Interface, cannot be instantiated. Set is also an Interface.</p> <p>As such, it doesn't matter what you use, as long as the instantiated object that you use is compatible with those.</p> <p>So normally, you would do something like this:</p> <pre><code>private Set parts = new HashSet(); </code></pre> http://stackoverflow.com/questions/498712/persisting-blob-streams-with-nhibernate/498905#498905 0 Answer by Loki for Persisting Blob Streams with NHibernate Loki 2009-01-31T14:31:32Z 2009-01-31T14:31:32Z <p>By using an custom type.</p> <p>Here's the documentation: <a href="http://www.hibernate.org/hib_docs/nhibernate/1.2/reference/en/html/mapping.html#mapping-types-custom" rel="nofollow">http://www.hibernate.org/hib_docs/nhibernate/1.2/reference/en/html/mapping.html#mapping-types-custom</a></p> http://stackoverflow.com/questions/487826/java-web-application-properties/496485#496485 0 Answer by Loki for Java web application properties Loki 2009-01-30T17:51:06Z 2009-01-30T17:51:06Z <p>Have a look at <a href="http://wicketwebbeans.sourceforge.net/" rel="nofollow">Wicket Web Beans</a>.</p> <blockquote> <p>Wicket Web Beans (WWB) is an Apache Wicket (<a href="http://wicket.apache.org" rel="nofollow">http://wicket.apache.org</a>) component toolkit for displaying and editing POJOs that conform to the JavaBeans specification. Web pages are automatically generated based on bean properties and certain conventions. If necessary, the layout, editability, and actions of these pages can be customized on an exception basis. In other words, the toolkit normally does what you'd expect, but when it doesn't, you can override its behavior.</p> <p>At the highest-level, the net.sourceforge.wicketwebbeans.containers.BeanForm component provides rich AJAX form functionality. The form is embedded in a Page designed by you. This allows you to create customized page designs. Also, this allows multiple BeanForms to be incorporated on a single page. At your choosing, other lower-level components may be used independently of BeanForm (e.g., BeanGridPanel). WWB does not try to force you into a certain way of doing things, but BeanForm makes it very convenient to implement a bean-based form if you don't want to go to a lot of extra work. You focus on the model (beans), WWB handles the user interface.</p> <p>Fields within a form are dynamically sent back to the server-side bean as they are changed, which eliminates the typical submit cycle. This makes WWB act more like a rich client application and less like a standard forms-based application.</p> </blockquote> http://stackoverflow.com/questions/493765/type-of-join/493781#493781 0 Answer by Loki for Type of JOIN Loki 2009-01-29T22:31:20Z 2009-01-29T22:31:20Z <pre><code>SELECT projects.cat_id cat_id FROM projects INNER JOIN project_category ON project_category.cat_id = projects.cat_id </code></pre> http://stackoverflow.com/questions/487283/storing-and-retrieving-dynamically-changing-structures/488076#488076 1 Answer by Loki for Storing and Retrieving Dynamically Changing Structures Loki 2009-01-28T15:37:23Z 2009-01-28T15:37:23Z <p>So, what you want to do is serialization.</p> <p>I suggest simply using an already existing library for that. Have a look at this thread: <a href="http://stackoverflow.com/questions/234724/how-to-serialize-in-c">How to serialize in c++ ?</a></p> http://stackoverflow.com/questions/485023/ways-to-prevent-sql-injection-attack-xss-in-java-web-application/485074#485074 1 Answer by Loki for Ways to prevent SQL Injection Attack & XSS in Java Web Application Loki 2009-01-27T20:24:17Z 2009-01-27T20:24:17Z <p>Here's a pretty extensive <a href="http://www.securityfocus.com/infocus/1768" rel="nofollow">article</a> on that very subject.</p> <p>I don't think you'll have a holy grail here though. I would also suggest trying to encode/decode the received text in some standard ways (uuencode, base64)</p> http://stackoverflow.com/questions/481976/is-there-a-dive-into-smalltalk-book/482018#482018 3 Answer by Loki for Is There a "Dive Into Smalltalk" Book Loki 2009-01-27T01:12:48Z 2009-01-27T01:12:48Z <p>Here's a big list (from the wikipedia page actually):</p> <p><a href="http://stephane.ducasse.free.fr/FreeBooks.html" rel="nofollow">http://stephane.ducasse.free.fr/FreeBooks.html</a></p> http://stackoverflow.com/questions/480309/how-to-increment-or-reserve-identity-value-in-sql-server-without-inserting-into/480330#480330 4 Answer by Loki for How to increment (or reserve) IDENTITY value in SQL Server without inserting into table Loki 2009-01-26T16:14:44Z 2009-01-26T16:14:44Z <p>Then its no more a one-to-one relationship.</p> <p>Just break the PK constraint.</p> http://stackoverflow.com/questions/473522/word-comparison-algorithm/473545#473545 0 Answer by Loki for Word comparison algorithm Loki 2009-01-23T16:29:13Z 2009-01-23T16:29:13Z <p>There's multiple algorithms to do just that, and most databases even include one by default. It is actually a quite common concern.</p> <p>If its just about English words, SQL Server for example includes SOUNDEX which can be used to compare on the resulting sound of the word.</p> <p><a href="http://msdn.microsoft.com/en-us/library/aa259235%28SQL.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa259235%28SQL.80%29.aspx</a></p> http://stackoverflow.com/questions/473420/sorting-hierarchical-queries-in-sql-server-2005/473437#473437 3 Answer by Loki for SORTING Hierarchical Queries in SQL Server 2005 Loki 2009-01-23T16:00:55Z 2009-01-23T16:12:14Z <p>To get the concatenated values, you need to do it in the with.</p> <p>To sort, you need to add an order by in the last select.</p> <pre><code>WITH tree (id, parentid, code, name) AS ( SELECT id, ofs.ParentID, ofs.code, ofs.name FROM OrganizationFeatures ofs WHERE ofs.ParentID IS NULL UNION ALL SELECT ofs.id, ofs.ParentID, tree.code+'/'+ofs.code, ofs.name FROM OrganizationFeatures ofs JOIN tree ON tree.ID = ofs.ParentID ) select * from tree order by code </code></pre> <p>Also, if code is not a varchar, you will have to convert the code columns in this bit of code (<code>tree.code+'/'+ofs.code</code>) for it to work.</p> http://stackoverflow.com/questions/473357/generalization-vs-specialization-of-db-table/473399#473399 0 Answer by Loki for Generalization vs Specialization of DB table Loki 2009-01-23T15:50:51Z 2009-01-23T15:50:51Z <p>Having used both, the former is definitely easier to grasp by new programmers. It is also simpler to deal with in most simple cases.</p> <p>Where the latter comes in handy, is where the hierarchy of things could change; or an object changes its hierarchical order or the hierarchy itself changes. It is also useful when the hierarchy is complex, as you don't have to model it as tables in the database.</p> http://stackoverflow.com/questions/472732/how-to-group-ranged-values-using-sql-server/473171#473171 2 Answer by Loki for How to group ranged values using SQL Server Loki 2009-01-23T14:58:43Z 2009-01-23T15:17:11Z <p>From the article that Josh posted, here's my take (tested and working):</p> <pre><code>SELECT MAX(t1.gapID) as gapID, t2.gapID-MAX(t1.gapID)+t2.gapSize as gapSize -- max(t1) is the specific lower bound of t2 because of the group by. FROM ( -- t1 is the lower boundary of an island. SELECT gapID FROM gaps tbl1 WHERE NOT EXISTS( SELECT * FROM gaps tbl2 WHERE tbl1.gapID = tbl2.gapID + tbl2.gapSize + 1 ) ) t1 INNER JOIN ( -- t2 is the upper boundary of an island. SELECT gapID, gapSize FROM gaps tbl1 WHERE NOT EXISTS( SELECT * FROM gaps tbl2 WHERE tbl2.gapID = tbl1.gapID + tbl1.gapSize + 1 ) ) t2 ON t1.gapID &lt;= t2.gapID -- For all t1, we get all bigger t2 and opposite. GROUP BY t2.gapID, t2.gapSize </code></pre> http://stackoverflow.com/questions/472902/subversion-async-development-cycle-two-trunks/472962#472962 0 Answer by Loki for Subversion - Async development cycle... two trunks? Loki 2009-01-23T13:56:59Z 2009-01-23T14:23:12Z <p>In most cases what you need is to test the resultant application with features enabled AND disabled so that you can choose what to enable or disable at release time.</p> <p>The point is that if you create a testing release that contains both and then go and completely remove one part, regardless of your versionning system, you could end up creating an integration problem, which you wont know about and you'll have already pushed it to the production server.</p> <p>Regardless of what you do, you still need to test the exact product you will give to the client.</p> <p>A release should then be what is going to be tested, not what is going to production. What will be going to production is the tested release. At that point it simply a question of creating a branch for each release or feature and merge what is needed.</p> <p>A merge operation doesn't need to be for everything. If the commits are well done, you should be able to merge just the features (comits and/or files) you need between branches easily. Also to note that SVN only has the ability to keep the history of merged branches since 1.5/</p> http://stackoverflow.com/questions/472842/is-it-possible-to-print-a-pdf-to-a-file-so-that-the-file-contains-plain-text-of/472875#472875 2 Answer by Loki for Is it possible to "print a PDF to a file" so that the file contains plain text of the content? Loki 2009-01-23T13:30:04Z 2009-01-23T13:30:04Z <p>The Adobe Reader has the save as text option. The Foxit Reader has the view as text option. The adobe web site offers the service too. And many other options exist.</p> <p>The only problem with those (and I have tested them on a few documents) is that by leaving the layout off, it's sometimes impossible to know exactly where the text should fit in a regular text file and so they must guess. For example: repeating headers, captions under images in the middle of a text block, paged multi-column text, etc.</p> http://stackoverflow.com/questions/462656/how-to-resolve-specific-circular-dependency-dal-logging/463025#463025 0 Answer by Loki for How to resolve specific circular dependency: DAL & Logging Loki 2009-01-20T20:46:31Z 2009-01-20T20:46:31Z <p>Actually, if by high-risk data you mean criticial/important to know it is how it is supposed to be data, and also if you need to have the logs in the database (some kind of meta-data), then the solution should be completely different as what others have suggested.</p> <p>The situation I described would mean that the result of a database transaction should have both the logging data and the data itself in the database at any given time. One should not be done independently from the other.</p> <p>As a result, this kind of "logging" should be done as part a single database transaction and the DAL should make sure that both items are inserted correctly at the same time in the same transaction.</p> <p>Failure to do so could have the following side effect:</p> <ul> <li>Having only one of the data or log inserted in the db.</li> <li>Having only one of the data or log inserted in the db before the other, meaning that a system relying on the fact that both must be present at any given time might randomly fail in specific circumstances.</li> </ul> http://stackoverflow.com/questions/1299374/what-is-eager-loading/1299403#1299403 Comment by Loki on What is eager loading? Loki 2009-08-19T11:49:25Z 2009-08-19T11:49:25Z When you think about it, lazy loading is more about less memory and more computations at each function call, while eager loading would use more memory and more computations when the class is created and less computations when the function is called. http://stackoverflow.com/questions/1299374/what-is-eager-loading/1299389#1299389 Comment by Loki on What is eager loading? Loki 2009-08-19T11:44:57Z 2009-08-19T11:44:57Z I could add that these terms are generally used (and maybe come from?) in the context of a ORM (Object Relational Mapper), where you map an object to a table in a relational database. http://stackoverflow.com/questions/1261825/subversion-should-anyone-be-developing-off-the-trunk/1261844#1261844 Comment by Loki on Subversion - should anyone be developing off the trunk? Loki 2009-08-11T18:42:30Z 2009-08-11T18:42:30Z @Aiden Bell, you wont be able to share your changes with other devs otherwise. http://stackoverflow.com/questions/1261081/byte-to-string-conversion-in-java/1261126#1261126 Comment by Loki on Byte to string conversion in Java Loki 2009-08-11T18:28:04Z 2009-08-11T18:28:04Z I say your method (of converting the searched string) might not work where BOMs (<a href="http://en.wikipedia.org/wiki/UTF-8#Byte-order_mark" rel="nofollow">en.wikipedia.org/wiki/UTF-8#Byte-order_mark/&hellip;</a>) are used. http://stackoverflow.com/questions/1261081/byte-to-string-conversion-in-java/1261217#1261217 Comment by Loki on Byte to string conversion in Java Loki 2009-08-11T18:21:35Z 2009-08-11T18:21:35Z I see two more problems: 1) the size of the buffer should be dependent of the encoding and 2) the search method must be aware that the searched word might be cut because the code is reading by small parts. http://stackoverflow.com/questions/1223736/c-change-all-values-of-an-array-of-structures-in-one-line/1223806#1223806 Comment by Loki on C - Change all values of an array of structures in one line Loki 2009-08-03T19:06:17Z 2009-08-03T19:06:17Z With that, you could create a macro for a assignment loop. That way, it's easy to reuse and very clean. http://stackoverflow.com/questions/1191625/which-bugtracker-works-best-with-eclipses-mylyn-on-windows-server/1191715#1191715 Comment by Loki on Which bugtracker works best with Eclipse's Mylyn on Windows server? Loki 2009-07-28T14:05:04Z 2009-07-28T14:05:04Z If you're ready to pay, or if you have an opensource project, JIRA is the best. http://stackoverflow.com/questions/325743/how-to-automate-or-facilitate-multiplatform-build-test-before-committing/325759#325759 Comment by Loki on how to automate or facilitate multiplatform build/test before committing? Loki 2009-06-22T18:31:04Z 2009-06-22T18:31:04Z I can confirm BuildForge has the feature too. http://stackoverflow.com/questions/1009703/wifi-triangulation Comment by Loki on Wifi Triangulation Loki 2009-06-18T01:45:07Z 2009-06-18T01:45:07Z WTF, there seems to be a patent on that: <a href="http://www.patentgenius.com/patent/7515578.html" rel="nofollow">patentgenius.com/patent/7515578.html</a> maybe more? any implications? http://stackoverflow.com/questions/1009703/wifi-triangulation Comment by Loki on Wifi Triangulation Loki 2009-06-17T23:22:45Z 2009-06-17T23:22:45Z Noted. Will update accordingly. http://stackoverflow.com/questions/511873/refactor-subqueries-using-group-by-having Comment by Loki on Refactor subqueries using GROUP BY/HAVING? Loki 2009-02-04T15:54:15Z 2009-02-04T15:54:15Z You're doing a pivot query. http://stackoverflow.com/questions/508428/is-there-a-simple-way-to-convert-my-xml-object-back-to-string-in-java Comment by Loki on is there a simple way to convert my XML object back to String in java? Loki 2009-02-03T18:58:45Z 2009-02-03T18:58:45Z What API are you using and type is that object? http://stackoverflow.com/questions/508400/what-is-a-programmer Comment by Loki on What is a programmer? Loki 2009-02-03T18:55:07Z 2009-02-03T18:55:07Z what is the question to the answer to life the universe and everything http://stackoverflow.com/questions/503866/timer-class-in-linux Comment by Loki on timer class in linux Loki 2009-02-02T18:12:02Z 2009-02-02T18:12:02Z What is relatively low resolution? http://stackoverflow.com/questions/491738/how-do-you-calculate-the-average-of-a-set-of-angles/491907#491907 Comment by Loki on How do you calculate the average of a set of angles? Loki 2009-01-29T15:24:01Z 2009-01-29T15:24:01Z You can still end up with some indeterminate answers. Like in the 0, 180 sample. So you still have to check for edge cases. Also, there is usually an atan2 function available which might be faster in your case.