User Zarkonnen - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T00:50:20Z http://stackoverflow.com/feeds/user/15255 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1800974/window-beforeunload-called-twice-in-firefox-how-to-get-around-this 1 window.beforeunload called twice in Firefox - how to get around this? Zarkonnen 2009-11-26T00:50:45Z 2009-11-26T06:07:46Z <p>I'm creating a popup window that has a beforeunload handler installed. When the "Close" file menu item is used to close the popup, the beforeunload handler is called twice, resulting in two "Are you sure you want to close this window?" messages appearing.</p> <p>This is a bug with Firefox, and I've <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=531199" rel="nofollow">reported it here</a>, but I still would like a way to prevent this from happening. Can you think of a sane way of detecting double beforeunload to prevent the double message problem? The problem is that Firefox doesn't tell me which button in the dialog the user elected to click - OK or cancel.</p> http://stackoverflow.com/questions/309495/windows-shortcut-lnk-parser-in-java 1 Windows shortcut (.lnk) parser in Java? Zarkonnen 2008-11-21T17:09:05Z 2009-11-09T11:05:49Z <p>I'm currently using Win32ShellFolderManager2 and ShellFolder.getLinkLocation to resolve windows shortcuts in Java. Unfortunately, if the Java program is running as a service under Vista, getLinkLocation, this does not work. Specifically, I get an exception stating "Could not get shell folder ID list".</p> <p>Searching the web does turn up mentions of this error message, but always in connection with JFileChooser. I'm not using JFileChooser, I just need to resolve a .lnk file to its destination.</p> <p>Does anyone know of a 3rd-party parser for .lnk files written in Java I could use?</p> <p>I've since found unofficial documentation for the .lnk format <a href="http://mediasrv.ns.ac.yu/extra/fileformat/windows/lnk/shortcut.pdf" rel="nofollow">here</a>, but I'd rather not have to do the work if anyone has done it before, since the format is rather scary.</p> http://stackoverflow.com/questions/443064/alternatives-to-flexnet-publisher-reprise 0 Alternatives to FlexNet Publisher & Reprise? Zarkonnen 2009-01-14T14:09:40Z 2009-11-05T21:25:57Z <p>I've been tasked with investigating licence server vendors.</p> <p>(Note: licence servers, or "key servers", are a type of "software copy protection" wherein copies of software deployed to a site call a central licence server to see if they're allowed to run. This is more than just a licence key generation/verification algorithm!)</p> <p>We need a licence client/server system with a Java API.</p> <p>So far, I've found <a href="http://www.acresso.com/products/fnp/flexnet-publisher-overview.htm" rel="nofollow">FlexNet Publisher</a> (formerly FlexLM) and its "reboot", <a href="http://www.reprisesoftware.com/" rel="nofollow">Reprise</a>. I would really like to look at some more options, but I'm not having much luck searching for them. (I can't find good search terms for Google, and Wikipedia is sparse on the topic.)</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/1042902/most-elegant-way-to-generate-prime-numbers/1049441#1049441 1 Answer by Zarkonnen for Most elegant way to generate prime numbers Zarkonnen 2009-06-26T14:26:27Z 2009-10-26T14:57:41Z <p>I personally think this is quite a short &amp; clean (Java) implementation:</p> <pre><code>static ArrayList&lt;Integer&gt; getPrimes(int numPrimes) { ArrayList&lt;Integer&gt; primes = new ArrayList&lt;Integer&gt;(numPrimes); int n = 2; while (primes.size() &lt; numPrimes) { while (!isPrime(n)) { n++; } primes.add(n); n++; } return primes; } static boolean isPrime(int n) { if (n &lt; 2) { return false; } if (n == 2) { return true; } if (n % 2 == 0) { return false; } int d = 3; while (d * d &lt;= n) { if (n % d == 0) { return false; } d += 2; } return true; } </code></pre> http://stackoverflow.com/questions/1582359/code-golf-reversi 6 Code Golf: Reversi Zarkonnen 2009-10-17T14:49:12Z 2009-10-24T23:07:25Z <p>OK, here's a rather elaborate code golf challenge: Implement a game of <a href="http://en.wikipedia.org/wiki/Reversi" rel="nofollow">Reversi</a> (Othello).</p> <ul> <li>The game should display the current state of the game-board and allow players at a single computer to alternately input moves.</li> <li>Incorrect input and disallowed moves must be caught, but can be ignored silently.</li> <li>The game must end when no more moves can be made (either because the board is full or because no move would flip any pieces).</li> <li>The game must then announce who won, or if it was a draw.</li> </ul> <p>Do this in as few characters as possible.</p> <p>A session should look something like this:</p> <pre><code> abcdefgh 1 2 3 4 wb 5 bw 6 7 8 b&gt;d3 abcdefgh 1 2 3 b 4 bb 5 bw 6 7 8 </code></pre> http://stackoverflow.com/questions/1617537/breakpoints-not-working/1617765#1617765 1 Answer by Zarkonnen for breakpoints not working Zarkonnen 2009-10-24T11:38:36Z 2009-10-24T11:38:36Z <p>Make sure you have the most up-to-date version of Java. There was a bug in a version a little while back that would cause breakpoints to be ignored. I had the same problems using J2SE in Eclipse.</p> http://stackoverflow.com/questions/1582359/code-golf-reversi/1582461#1582461 2 Answer by Zarkonnen for Code Golf: Reversi Zarkonnen 2009-10-17T15:35:58Z 2009-10-17T19:12:01Z <p>I can do it in 1143 characters of Java:</p> <pre><code>import java.io.*;public class R{public static void main(String[]args)throws Exception{char[][]b=new char[10][10];for(inty=0;y&lt;10;y++)for(int x=0;x&lt;10;x++)b[y][x]=' ';b[4][4]='w';b[4][5]='b';b[5][4]='b';b[5][5]='w';char c='b';BufferedReader r=new BufferedReader(new InputStreamReader(System.in));while(true){System.out.println(" abcdefgh");boolean m=false;for(int y=1;y&lt;9;y++){System.out.print(y);for(int x=1;x&lt;9;x++){System.out.print(b[y][x]);m=m||(b[y][x]==' '&amp;&amp;f(x,y,b,c,false));}System.out.println();}if(!m)break;System.out.print(c+"&gt;");String l = r.readLine();if(l.length()&lt;2)continue;int x=l.charAt(0)-'a'+1;int y=l.charAt(1)-'0';if(x&lt;1||x&gt;8||y&lt;1||y&gt;8||b[y][x]!=' '||!f(x, y, b, c, true))continue;b[y][x]=c;c=c=='b'?'w':'b';}int s=0;for(int y=1;y&lt;9;y++)for(int x=1;x&lt;9;x++)s+=b[y][x]=='b'?1:b[y][x]=='w'?-1:0;System.out.println(s==0?"d":s&lt;0?"w":"b");}static boolean f(int x,int y,char[][]b,char c,boolean o){boolean p=false;for(int u=-1;u&lt;2;u++)for(int v=-1;v&lt;2;v++){if(u==0&amp;&amp;v==0)continue;int d=0;do d++;while(b[y+d*u][x+d*v]==(c=='b'?'w':'b'));if(b[y+d*u][x+d*v]==c&amp;&amp;d&gt;1){p=true;if(o)for(int e=1;e&lt;d;e++)b[y+e*u][x+e*v]=c;}}return p;}} </code></pre> <p>Here's a longhand version of (nearly) the same Java:</p> <pre><code>import java.io.*; public class Reversi { public static void main(String[] args) throws Exception { // Initialise game board, made of chars - ' ' is empty, 'b' is a black piece, 'w' a white. // Using a 10x10 board, with the outer ring of empties acting as sentinels. char[][] board = new char[10][10]; for (int y = 0; y &lt; 10; y++) { for (int x = 0; x &lt; 10; x++) { board[y][x] = ' '; } } // Set up the four pieces in the middle. board[4][4] = 'w'; board[4][5] = 'b'; board[5][4] = 'b'; board[5][5] = 'w'; // Color of the current player. char currentColor = 'b'; BufferedReader r = new BufferedReader(new InputStreamReader(System.in)); while (true) { // Print game board. System.out.println(" abcdefgh"); for (int y = 1; y &lt; 9; y++) { System.out.print(y); for (int x = 1; x &lt; 9; x++) { System.out.print(board[y][x]); } System.out.println(); } // See if there are any legal moves by considering all possible ones. boolean legalMovesAvailable = false; for (int y = 1; y &lt; 9; y++) { for (int x = 1; x &lt; 9; x++) { legalMovesAvailable = legalMovesAvailable || (board[y][x] == ' ' &amp;&amp; flip(x, y, board, currentColor, false)); }} if (!legalMovesAvailable) { break; } // Print input, indicating which color's turn it is. System.out.print(currentColor + "&gt;"); // Parse input. String l = r.readLine(); if (l.length() &lt; 2) { continue; } int x = l.charAt(0) - 'a' + 1; int y = l.charAt(1) - '0'; // Discard malformed input. if (x &lt; 1 || x &gt; 8 || y &lt; 1 || y &gt; 8 || board[y][x] != ' ') { continue; } // Check if valid move &amp; flip if it is - if not, continue. if (!flip(x, y, board, currentColor, true)) { continue; } // Put down the piece itself. board[y][x] = currentColor; // Switch players. currentColor = currentColor == 'b' ? 'w' : 'b'; } // Calculate final score: negative is a win for white, positive one for black. int score = 0; for (int y = 1; y &lt; 9; y++) { for (int x = 1; x &lt; 9; x++) { score += board[y][x] == 'b' ? 1 : board[y][x] == 'w' ? -1 : 0; }} System.out.println(score == 0 ? "d" : score &lt; 0 ? "w" : "b"); } /** Flip pieces, or explore whether putting down a piece would cause any flips. */ static boolean flip(int pieceX, int pieceY, char[][] board, char playerColor, boolean commitPutDown) { boolean causesFlips = false; // Explore all straight and diagonal directions from the piece put down. for (int dY = -1; dY &lt; 2; dY++) { for (int dX = -1; dX &lt; 2; dX++) { if (dY == 0 &amp;&amp; dX == 0) { continue; } // Move along that direction - if there is at least one piece of the opposite color next // in line, and the pieces of the opposite color are followed by a piece of the same // color, do a flip. int distance = 0; do { distance++; } while (board[pieceY + distance * dY][pieceX + distance * dX] == (playerColor == 'b' ? 'w' : 'b')); if (board[pieceY + distance * dY][pieceX + distance * dX] == playerColor &amp;&amp; distance &gt; 1) { causesFlips = true; if (commitPutDown) { for (int distance2 = 1; distance2 &lt; distance; distance2++) { board[pieceY + distance2 * dY][pieceX + distance2 * dX] = playerColor; } } } }} return causesFlips; } } </code></pre> http://stackoverflow.com/questions/1581759/jaas-with-ldap-password-policy/1581941#1581941 1 Answer by Zarkonnen for JAAS with LDAP password policy Zarkonnen 2009-10-17T10:47:57Z 2009-10-17T10:47:57Z <p>Unfortunately, what you can do using JAAS is kind of constrained to a small set of operations that any login system can support. While LDAP supports a password policy, other login systems (eg keystores) may not, so JAAS cannot have code that requires this.</p> <p>Hence, you'll have to talk to the LDAP server directly using either JNDI or possibly <a href="http://developer.novell.com/wiki/index.php/Jldap" rel="nofollow">this library from Novell</a>.</p> http://stackoverflow.com/questions/1433908/startproject-option-disappeared-from-django-admin-py/1434163#1434163 1 Answer by Zarkonnen for "startproject" option disappeared from django-admin.py Zarkonnen 2009-09-16T16:45:30Z 2009-09-16T16:45:30Z <p>From <a href="http://docs.djangoproject.com/en/dev/ref/django-admin/#startproject-projectname" rel="nofollow">the Django Documentation</a>:</p> <pre> [startproject] is disabled [...] when the environment variable DJANGO_SETTINGS_MODULE has been set. To re-enable it in these situations, [...] unset DJANGO_SETTINGS_MODULE. </pre> <p>I ran across this just the other day and it caused me some amount of groaning when I finally figured it out.</p> http://stackoverflow.com/questions/1433786/which-cms-script-etc-should-i-use/1433832#1433832 0 Answer by Zarkonnen for Which CMS, script, etc. should I use? Zarkonnen 2009-09-16T15:46:29Z 2009-09-16T15:46:29Z <p>I would recommend the <a href="http://www.djangoproject.com/" rel="nofollow">Django</a> framework. I'm currently in the process of learning it, and it's generally very pleasant to use.</p> <p>If you want to hire someone to do (some of) the work for you, I recommend you get in touch with <a href="http://www.etianen.com/" rel="nofollow">Etianen</a> who do Django work and also have a CMS built on top of it. (Full disclosure: I don't work for Etianen, but I do know the guy behind it. He's very good at what he does.)</p> http://stackoverflow.com/questions/174659/calculating-which-tiles-are-lit-in-a-tile-based-game-raytracing 15 Calculating which tiles are lit in a tile-based game ("raytracing") Zarkonnen 2008-10-06T15:02:47Z 2009-09-09T17:53:37Z <p>I'm writing a little tile-based game, for which I'd like to support light sources. But my algorithm-fu is too weak, hence I come to you for help.</p> <p>The situation is like this: There is a tile-based map (held as a 2D array), containing a single light source and several items standing around. I want to calculate which tiles are lit up by the light source, and which are in shadow.</p> <p>A visual aid of what it would look like, approximately. The L is the light source, the Xs are items blocking the light, the 0s are lit tiles, and the -s are tiles in shadow.</p> <pre><code>0 0 0 0 0 0 - - 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 X 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 L 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 X X X X 0 0 0 0 0 - - - - - 0 0 0 - - - - - - - </code></pre> <p>A fractional system would be even better, of course, where a tile can be in half-shadow due to being partially obscured. The algorithm wouldn't have to be perfect - just not obviously wrong and reasonably fast.</p> <p>(Of course, there would be multiple light sources, but that's just a loop.)</p> <p>Any takers?</p> http://stackoverflow.com/questions/1265218/bluescreen-of-death-during-java-development-on-a-leopard-any-ideas-how-to-solve/1265268#1265268 0 Answer by Zarkonnen for Bluescreen of death during Java development on a Leopard - any ideas how to solve this? Zarkonnen 2009-08-12T09:54:42Z 2009-08-12T09:54:42Z <p>Have you had a look at the system console (/Applications/Utilities/Console)? Java or the OS may have recorded some dying gasp there before the BSOD happened.</p> http://stackoverflow.com/questions/1165428/should-closeable-be-used-as-the-java-equivalent-for-nets-idisposable/1165572#1165572 4 Answer by Zarkonnen for Should Closeable be used as the Java equivalent for .NET's IDisposable? Zarkonnen 2009-07-22T14:13:58Z 2009-07-22T14:13:58Z <p>Especially given that close() throws an IOException you then have to write exception handling code for, I would advise you write your own interface. This interface can then throw any checked exceptions that are appropriate to the use you want to put the interface to.</p> <p>Interfaces tend to signify intent in the mind of the reader, so having a class implement an IO-associated Closeable interface will make the reader assume the class is also IO-based.</p> <p>Obviously, if the objects you do want to close <em>are</em> all IO-related, you should use Closeable. But otherwise go for</p> <pre><code>/** Interface for objects that require cleanup post-use. Call dispose() in finally block! */ public interface Disposable { public void dispose(); } </code></pre> http://stackoverflow.com/questions/1159404/java-bind-something-to-a-thread/1159438#1159438 7 Answer by Zarkonnen for Java, "bind" something to a Thread Zarkonnen 2009-07-21T14:09:17Z 2009-07-21T14:09:17Z <p>You can have per-thread information using <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/ThreadLocal.html" rel="nofollow">ThreadLocal</a> variables. I don't know anything about the details of Rhino or log4j, but I imagine this is how they do it.</p> <p>Example from the Javadoc that assigns a different serial number to each thread.</p> <pre><code> public class SerialNum { // The next serial number to be assigned private static int nextSerialNum = 0; private static ThreadLocal serialNum = new ThreadLocal() { protected synchronized Object initialValue() { return new Integer(nextSerialNum++); } }; public static int get() { return ((Integer) (serialNum.get())).intValue(); } } </code></pre> http://stackoverflow.com/questions/1118509/creating-dialog-box/1118520#1118520 3 Answer by Zarkonnen for creating dialog box Zarkonnen 2009-07-13T09:44:35Z 2009-07-13T10:07:21Z <p>The easiest way to do this in Java is to use <a href="http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/JOptionPane.html" rel="nofollow">JOptionPane</a>. You can ask for text input in the following fashion:</p> <pre><code>String name = JOptionPane.showInputDialog("What is your name?"); </code></pre> <p>If you want to ask multiple questions in one dialog, you are going to have to construct your own JDialog. What follows is a somewhat lengthy bit of example code for somewhat crudely constructing your own dialog.</p> <pre><code>import java.awt.BorderLayout; import java.awt.Container; import java.awt.FlowLayout; import java.awt.Frame; import java.awt.GridLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JButton; import javax.swing.JDialog; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.JTextField; public class FirstNameLastNameDialog extends JDialog { private static final long serialVersionUID = 1L; private JTextField firstNameF; private JTextField lastNameF; private JButton okButton; /** Convenience method to ask the user for first and last name. */ public static FirstAndLastName askForFirstAndLastName() { FirstNameLastNameDialog fnlnd = new FirstNameLastNameDialog(); fnlnd.setVisible(true); return new FirstAndLastName(fnlnd.firstNameF.getText(), fnlnd.lastNameF.getText()); } /** Constructs the dialog. */ private FirstNameLastNameDialog() { super(/*owner*/ (Frame) null, /*title*/ "Name entry"); Container cp = getContentPane(); cp.setLayout(new BorderLayout()); // Put a 2x2 grid in the middle of the dialog. JPanel mainPanel = new JPanel(new GridLayout(2, 2)); cp.add(mainPanel, BorderLayout.CENTER); // 1st row - first name mainPanel.add(new JLabel("First name")); mainPanel.add(firstNameF = new JTextField()); firstNameF.setColumns(20); // 2nd row - last name mainPanel.add(new JLabel("Last name")); mainPanel.add(lastNameF = new JTextField()); lastNameF.setColumns(20); JPanel bottomPanel = new JPanel(new FlowLayout(FlowLayout.CENTER)); cp.add(bottomPanel, BorderLayout.SOUTH); bottomPanel.add(okButton = new JButton("OK")); // Make the button close the dialog. okButton.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { dispose(); } }); // Make the button the default one. getRootPane().setDefaultButton(okButton); // Layout the dialog. pack(); // Make the dialog modal. setModal(true); // Center the dialog on the screen. setLocationRelativeTo(null); } /** Simple data structure for holding answers. */ public static class FirstAndLastName { public final String firstName; public final String lastName; private FirstAndLastName(String firstName, String lastName) { this.firstName = firstName; this.lastName = lastName; } } } </code></pre> http://stackoverflow.com/questions/1102228/struggling-with-generics-and-classes/1102423#1102423 0 Answer by Zarkonnen for Struggling with generics and classes Zarkonnen 2009-07-09T07:53:07Z 2009-07-09T07:53:07Z <p>Alternatively, as amit.dev said, you may want to use a list. In which case, assuming the myNiceClasses field is supposed to be a constant, you can use <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Collections.html#unmodifiableList(java.util.List)" rel="nofollow">Collections.unmodifiableList</a> to make sure the list can't be changed:</p> <pre><code>private static final List&lt;? extends Father&gt; myNiceClasses; static { ArrayList&lt;? extends Father&gt; l = new ArrayList&lt;? extends Father&gt;(); l.add(Child1.class); l.add(Child2.class); myNiceClasses = Collections.unmodifiableList(l); } </code></pre> <p>It's fairly verbose but has the advantage of being entirely constant and hence easier to reason about.</p> http://stackoverflow.com/questions/1102228/struggling-with-generics-and-classes/1102323#1102323 3 Answer by Zarkonnen for Struggling with generics and classes Zarkonnen 2009-07-09T07:22:55Z 2009-07-09T07:22:55Z <p>What quant_dev's linked thread is saying is that generic arrays cannot be created because they cannot guarantee type safety. You can end up with things in the array the generics don't allow. The cleanest way I know of to do it anyway is:</p> <pre><code>private static Class&lt;? extends Father&gt;[] myNiceClasses = (Class&lt;? extends Father&gt;[]) new Class&lt;?&gt;[] {}; </code></pre> http://stackoverflow.com/questions/1078899/how-to-deal-with-animating-in-between-states-when-the-model-is-discrete 2 How to deal with animating in-between states when the model is discrete Zarkonnen 2009-07-03T11:15:20Z 2009-07-03T23:11:07Z <p>The data model in my program has a number of discrete states, but I want to animate the transition between these states. While the animation is going on, what the user sees on the screen is disconnected from what the underlying data is like. Once the animation is complete, they match up again.</p> <p>For example, let's say we have a simple game where Snuffles the bunny hops around on a 2D grid. The model of Snuffles contains integer x/y coordinates. When the player tells Snuffles to hop north, his y-coordinate is decremented by one immediately. However, on the screen, Snuffles should at that point still be in his old location. Then, frame by frame, Snuffles proceeds to hop over to his new location, until he is shown in the location his model states.</p> <p>So usually, when we draw Snuffles, we can just look up his coordinates in his model. But when he's hopping, that coordinate is wrong.</p> <p>If there is only ever one thing moving on the screen, I can just about get away with freezing the entire game state and not allowing the user to do anything until Snuffles has finished hopping. But what if there is more than one bunny on the screen?</p> <p>It gets worse if elements interact, merge or split. If Snuffles magically merges with a hat to become a potato, at which point does the data model delete the bunny and the hat, and add the potato? If it does so immediately, the view instantly loses access to information about Snuffles and the potato which it still needs to draw the animation of the magical merger.</p> <p>I have come across this problem multiple times while implementing animated GUIs, especially games, and have found no satisfactory solution.</p> <p>Unsatisfactory ones include:</p> <ul> <li><p>Do the changes immediately, but then suspend any further changes in the model until the animation has resolved. Makes things unresponsive and doesn't work if more than one thing can move or things interact in complex ways.</p></li> <li><p>Merge the model and the view - Snuffles gains floating-point coordinates, and probably a z-coordinate to indicate how far up he is. The model's rules become massively more complex as a result, as the model can no longer make concise statements like "you cannot hop north if there is a wall at (x, y - 1)". Any change to the rules takes much longer, and development slows to a crawl.</p></li> <li><p>Keep what amounts to a duplicate of the data in the view. SnufflesModel has integer coordinates, but SnufflesSprite has floating-point ones. End up duplicating some of the model rules in the view and having to keep them in sync. Spend lots of time debugging to make sure that SnufflesModel and SnufflesSprite don't de-sync under some rare circumstance.</p></li> </ul> <p>My best bet at the moment is option 3, but it hardly strikes me as elegant. Thoughts?</p> http://stackoverflow.com/questions/1049228/charsequence-vs-string-in-java/1049244#1049244 9 Answer by Zarkonnen for CharSequence VS String in Java ? Zarkonnen 2009-06-26T13:45:38Z 2009-06-26T13:45:38Z <p><a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/String.html" rel="nofollow">Strings are CharSequences</a>, so you can just use Strings and not worry. Android is merely trying to be helpful by allowing you to also specify other CharSequence objects, like StringBuffers.</p> http://stackoverflow.com/questions/1037590/which-cipher-suites-to-enable-for-ssl-socket 2 Which Cipher Suites to enable for SSL Socket? Zarkonnen 2009-06-24T10:41:32Z 2009-06-24T11:28:22Z <p>I'm using Java's SSLSocket to secure communications between a client and a server program. The server program also serves up HTTPS requests from web browsers.</p> <p>According to "<a href="http://www.wrox.com/WileyCDA/WroxTitle/productCd-0764596330.html" rel="nofollow">Beginning Cryptography with Java</a>", page 371, you should always call <code>setEnabledCipherSuites</code> on your <code>SSLSocket</code> / <code>SSLServerSocket</code> to ensure that the cipher suite that ends up being negotiated is sufficiently strong for your purposes.</p> <p>That being said, a call to my <code>SSLSocketFactory</code>'s <code>getDefaultCipherSuites</code> method yields some <em>180</em> options. These options range from <code>TLS_RSA_WITH_AES_256_CBC_SHA</code> (which I think is fairly secure) to <code>SSL_RSA_WITH_RC4_128_MD5</code> (not so sure if that's secure, given MD5's current status) to <code>SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA</code> (not entirely sure what that does).</p> <p><strong>What's a sensible list of cipher suites to restrict the sockets to?</strong></p> <p>Note that the client and server have access to the <a href="http://www.bouncycastle.org/" rel="nofollow">Bouncy Castle</a> service provider, and that they may or may not have unlimited cryptographic policy files installed.</p> http://stackoverflow.com/questions/1011167/what-are-common-ui-misconceptions-and-annoyances/1017013#1017013 17 Answer by Zarkonnen for What are common UI misconceptions and annoyances? Zarkonnen 2009-06-19T09:06:46Z 2009-06-19T09:06:46Z <p>Inconsistency. Seriously, in the long run it doesn't matter if any meaningful operation takes eight mouse clicks or keystrokes. As long as these mouse clicks and key strokes follow a consistent pattern, a user will automatically memorise them.</p> <p>One "feature" that egregiously violated this was Microsoft's idea of menus that would reorder themselves to show the most often-used ones at the top. It made it impossible to select "third menu from the left, first option" and know it was eg "Transflutinate Founts". You had to visually inspect the menu each time to make sure you selected the right option, breaking your concentration.</p> <p>If you are serious about user interface design, I highly recommend Jef Raskin's <a href="http://books.google.co.uk/books?id=D39vjmLfO3kC&amp;dq=jef+raskin&amp;printsec=frontcover&amp;source=bl&amp;ots=COqDbY3T-6&amp;sig=92po9njGWT0Sbh4a3vOgUdapdho&amp;hl=en&amp;ei=t1Q7SueNGKSsjAfIspUN&amp;sa=X&amp;oi=book_result&amp;ct=result&amp;resnum=2" rel="nofollow">The Humane Interface</a>.</p> http://stackoverflow.com/questions/1014287/is-there-a-way-to-make-printwriter-output-to-unix-format/1014300#1014300 2 Answer by Zarkonnen for Is there a way to make PrintWriter output to UNIX format? Zarkonnen 2009-06-18T18:12:54Z 2009-06-18T18:12:54Z <p>Assuming the formatting issue you refer to is that Windows line breaks are Carriage Return-Line Feed (<code>"\r\n"</code>) while Unix ones are Line Feed (<code>"\n"</code>) only, the easiest way to make sure your file uses LF and not CRLF is to eschew <code>println</code> and instead use <code>print("\n")</code> to terminate lines.</p> <p>So instead of:</p> <pre><code>writer.println("foo,bar,88"); </code></pre> <p>use</p> <pre><code>writer.print("foo,bar,88\n"); </code></pre> <p>You can just search the relevant files for <code>println</code> to make sure you catch them all.</p> http://stackoverflow.com/questions/1005803/how-to-change-this-regex-to-properly-extract-tag-attributes-should-be-simple/1005847#1005847 2 Answer by Zarkonnen for How to change this regex to properly extract tag attributes - should be simple Zarkonnen 2009-06-17T08:42:01Z 2009-06-17T08:42:01Z <p>I don't think you need the <code>(.)?</code>s at the beginning and end of your regex. And you need to put in a capturing group for getting only the content-goes-here bit:</p> <p>This worked for me:</p> <pre><code>String xml = "RANDOM STUFF&lt;!-- &lt;editable name=\"nameValue\"&gt; --&gt; - content goes here - &lt;!-- &lt;/editable&gt; --&gt;RANDOM STUFF"; Pattern p = Pattern.compile("&lt;!-- &lt;editable name=(\".*\")?&gt; --&gt;(.*)&lt;!-- &lt;/editable&gt; --&gt;"); Matcher m = p.matcher(xml); if (m.find()) { System.out.println(m.group(2)); } else { System.out.println("no match found"); } </code></pre> <p>This prints:</p> <pre><code> - content goes here - </code></pre> http://stackoverflow.com/questions/986543/replicating-string-split-with-stringtokenizer/986624#986624 3 Answer by Zarkonnen for Replicating String.split with StringTokenizer Zarkonnen 2009-06-12T13:24:38Z 2009-06-12T13:48:43Z <p><strong>Note: Having done some quick benchmarks, Scanner turns out to be about four times slower than String.split. Hence, do not use Scanner.</strong></p> <p>(I'm leaving the post up to record the fact that Scanner is a bad idea in this case. (Read as: do not downvote me for suggesting Scanner, please...))</p> <p>Assuming you are using Java 1.5 or higher, try <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Scanner.html" rel="nofollow">Scanner</a>, which implements <code>Iterator&lt;String&gt;</code>, as it happens:</p> <pre><code>Scanner sc = new Scanner("dog,,cat"); sc.useDelimiter(","); while (sc.hasNext()) { System.out.println(sc.next()); } </code></pre> <p>gives:</p> <pre><code>dog cat </code></pre> http://stackoverflow.com/questions/244375/playing-small-sounds-in-java-game 6 Playing small sounds in Java game Zarkonnen 2008-10-28T18:46:08Z 2009-06-12T12:59:35Z <p>For the computer game I'm making, I obviously want to play sound. So far, I've been using AudioClip to play WAV files. While this approach works fine, the WAV files tend to be gigantic. A few seconds of sound end up being hundreds of kB. I'm faced with having a game download that's 95% audio!</p> <p>The obvious option here would be to use MP3 or Ogg Vorbis. But I've had limited success with this - I can play MP3 using JLayer (but it plays in the same thread). As for Ogg, I've had no luck at all. Worse, JLayer's legal status is a bit on the dubious side.</p> <p>So my question is to both Java developers and generally people who actually know something about sound: What do I do? Can I somehow "trim the fat" off my WAVs? Is there some way of playing Ogg in Java? Is there some other sound format I should use instead?</p> http://stackoverflow.com/questions/955248/is-it-possible-to-end-a-process-nicely-in-a-java-application/955306#955306 1 Answer by Zarkonnen for Is it possible to end a process nicely in a Java application? Zarkonnen 2009-06-05T10:55:52Z 2009-06-05T13:33:25Z <p>You could use <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Process.html#getOutputStream()" rel="nofollow">Process.getOutputStream</a> to send a message to the stdin of your app, eg:</p> <pre><code>PrintStream ps = new PrintStream(currentProcess.getOutputStream()); ps.println("please_shutdown"); ps.close(); </code></pre> <p>Of course this means you have to contrive to listen on stdin in the Windows app.</p> http://stackoverflow.com/questions/954164/choosing-between-java-and-python/954868#954868 2 Answer by Zarkonnen for Choosing between Java and Python Zarkonnen 2009-06-05T08:44:18Z 2009-06-05T08:44:18Z <p>IMO, the thing to know about programming in Java is that while you <em>can</em> do it in a very low-level-C-like fashion, and while there is also a lot of needlessly "enterprisey" code out there, you can equally write clean, sensible code. Unit tests are definitely well-supported through JUnit, and there are massive libraries available that make your life easier.</p> <p>This is not to say that you should absolutely choose Java over Python, as both have their merits. But Python is more fashionable than Java at the moment - and it's worth investigating what well-written Java is like rather than to take the fashions at face value.</p> <p>The book to read here is <a href="http://java.sun.com/docs/books/effective/" rel="nofollow">Joshua Bloch's Effective Java</a>, the de facto bible on writing sane Java code.</p> http://stackoverflow.com/questions/928563/code-golf-evaluating-mathematical-expressions/934659#934659 1 Answer by Zarkonnen for Code Golf: Evaluating Mathematical Expressions Zarkonnen 2009-06-01T12:40:37Z 2009-06-03T13:50:12Z <h1>Java</h1> <p><strong>Number of Characters: 376</strong></p> <p><em>Updated version, now with more ? operator abuse!</em></p> <p>Fully obfuscated solution:</p> <pre><code>static double e(String t){t="("+t+")";for(String s:new String[]{"+","-","*","/","(",")"})t=t.replace(s," "+s+" ");return f(new Scanner(t));}static double f(Scanner s){s.next();double a,v=s.hasNextDouble()?s.nextDouble():f(s);while(s.hasNext("[^)]")){char o=s.next().charAt(0);a=s.hasNextDouble()?s.nextDouble():f(s);v=o=='+'?v+a:o=='-'?v-a:o=='*'?v*a:v/a;}s.next();return v;} </code></pre> <p>Clear/semi-obfuscated function:</p> <pre><code>static double evaluate(String text) { text = "(" + text + ")"; for (String s : new String[] {"+", "-", "*", "/", "(", ")" }) { text = text.replace(s, " " + s + " "); } return innerEval(new Scanner(text)); } static double innerEval(Scanner s) { s.next(); double arg, val = s.hasNextDouble() ? s.nextDouble() : innerEval(s); while (s.hasNext("[^)]")) { char op = s.next().charAt(0); arg = s.hasNextDouble() ? s.nextDouble() : innerEval(s); val = op == '+' ? val + arg : op == '-' ? val - arg : op == '*' ? val * arg : val / arg; } s.next(); return val; } </code></pre> http://stackoverflow.com/questions/925147/incorrect-missing-font-metrics-in-java/938313#938313 0 Answer by Zarkonnen for Incorrect / missing font metrics in Java? Zarkonnen 2009-06-02T07:26:22Z 2009-06-02T07:26:22Z <p>Are Word and OO including the white space between lines, while Java isn't?</p> <p>So in Word / OO, your number is Ascent + Descent + Whitespace, while in Java you just have Ascent + Descent?</p> http://stackoverflow.com/questions/914931/rsa-decrypt-in-android/915005#915005 0 Answer by Zarkonnen for RSA decrypt in ANdroid Zarkonnen 2009-05-27T10:28:00Z 2009-05-27T10:28:00Z <p>You can probably use the <a href="http://www.bouncycastle.org/latest_releases.html" rel="nofollow">Bouncy Castle</a> lightweight cryptography API to do your decryption.</p> <p>Note that RSA cryptography may be illegal to import into some countries.</p> http://stackoverflow.com/questions/1800974/window-beforeunload-called-twice-in-firefox-how-to-get-around-this/1801816#1801816 Comment by Zarkonnen on window.beforeunload called twice in Firefox - how to get around this? Zarkonnen 2009-11-27T09:29:54Z 2009-11-27T09:29:54Z The second call will come whenever the user has pressed the &quot;OK&quot; button on the first dialog box, though. http://stackoverflow.com/questions/1800974/window-beforeunload-called-twice-in-firefox-how-to-get-around-this/1801816#1801816 Comment by Zarkonnen on window.beforeunload called twice in Firefox - how to get around this? Zarkonnen 2009-11-26T11:11:39Z 2009-11-26T11:11:39Z What's a sensible timeout value, though? Set it too short and slow users will end up seeing the dialog twice after all. Set it too long and fast users won't see a dialog at all - which is something that really shouldn't happen, as it could cause them to lose data. http://stackoverflow.com/questions/1800974/window-beforeunload-called-twice-in-firefox-how-to-get-around-this/1801118#1801118 Comment by Zarkonnen on window.beforeunload called twice in Firefox - how to get around this? Zarkonnen 2009-11-26T03:14:59Z 2009-11-26T03:14:59Z Background: if you return anything from the beforeunload handler, a dialog saying &quot;Are you sure you want to close&quot; is then displayed by the browser, incorporating the return value in the text. I'm not aware of any way of getting at whether the user clicked OK or cancel. http://stackoverflow.com/questions/1800974/window-beforeunload-called-twice-in-firefox-how-to-get-around-this/1801118#1801118 Comment by Zarkonnen on window.beforeunload called twice in Firefox - how to get around this? Zarkonnen 2009-11-26T03:13:37Z 2009-11-26T03:13:37Z But how would I abort the closing process at that point? http://stackoverflow.com/questions/1800974/window-beforeunload-called-twice-in-firefox-how-to-get-around-this/1801118#1801118 Comment by Zarkonnen on window.beforeunload called twice in Firefox - how to get around this? Zarkonnen 2009-11-26T02:27:30Z 2009-11-26T02:27:30Z But what if the user cancels the close? Then, the next time they try to close the window, the dialog won't pop up at all. http://stackoverflow.com/questions/312625/opening-a-url-in-current-tab-window-from-a-firefox-extension/930820#930820 Comment by Zarkonnen on Opening a URL in current tab/window from a Firefox Extension Zarkonnen 2009-10-27T18:54:26Z 2009-10-27T18:54:26Z Where did you get the information this method from? I've been searching in vain for some actual documentation on what you can do with Javascript in a FF extension. http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/314589#314589 Comment by Zarkonnen on What are five things you hate about your favorite language? Zarkonnen 2009-10-24T10:09:46Z 2009-10-24T10:09:46Z @Oscar Reyes - Er, we know that. But there may be multiple variables on that line, and the exception message doesn't tell me which one is null. http://stackoverflow.com/questions/1582359/code-golf-reversi Comment by Zarkonnen on Code Golf: Reversi Zarkonnen 2009-10-17T20:18:55Z 2009-10-17T20:18:55Z This is me being defensive - but, people do seem to be enjoying themselves and providing answers, so what's the issue? If people want, I can specify a much more rigorous spec about behaviour, input and output. http://stackoverflow.com/questions/1582359/code-golf-reversi/1583097#1583097 Comment by Zarkonnen on Code Golf: Reversi Zarkonnen 2009-10-17T20:16:31Z 2009-10-17T20:16:31Z Which language is this? http://stackoverflow.com/questions/1582359/code-golf-reversi Comment by Zarkonnen on Code Golf: Reversi Zarkonnen 2009-10-17T19:11:19Z 2009-10-17T19:11:19Z Homework?? But... I provided a solution, so how would this possibly be homework. http://stackoverflow.com/questions/1582359/code-golf-reversi/1582467#1582467 Comment by Zarkonnen on Code Golf: Reversi Zarkonnen 2009-10-17T15:53:42Z 2009-10-17T15:53:42Z Yep, seems to work when compiled and run. http://stackoverflow.com/questions/1582359/code-golf-reversi Comment by Zarkonnen on Code Golf: Reversi Zarkonnen 2009-10-17T15:14:26Z 2009-10-17T15:14:26Z As it says on the tin - in as few characters of code as possible. http://stackoverflow.com/questions/1582359/code-golf-reversi Comment by Zarkonnen on Code Golf: Reversi Zarkonnen 2009-10-17T14:55:40Z 2009-10-17T14:55:40Z I'm sure you can, but I want to see... http://stackoverflow.com/questions/1453574/programming-libraries/1453578#1453578 Comment by Zarkonnen on Programming libraries! Zarkonnen 2009-09-21T09:36:45Z 2009-09-21T09:36:45Z +1 for Cats who code, who have a cat-related name and appear to have some genuinely useful stuff. http://stackoverflow.com/questions/1433908/startproject-option-disappeared-from-django-admin-py/1434163#1434163 Comment by Zarkonnen on "startproject" option disappeared from django-admin.py Zarkonnen 2009-09-16T16:46:18Z 2009-09-16T16:46:18Z Sorry for the ugly formatting. The underscores in DJANGO_SETTINGS_MODULE don't get rendered otherwise.