User iny - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T08:38:25Z http://stackoverflow.com/feeds/user/27067 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1606201/how-can-i-make-html-safe-for-web-browser-with-python 1 How can I make HTML safe for web browser with python? iny 2009-10-22T10:00:21Z 2009-10-23T07:10:04Z <p>How can I make HTML from email safe to display in web browser with python?</p> <p>Any external references shouldn't be followed when displayed. In other words, all displayed content should come from the email and nothing from internet.</p> <p>Other than spam emails should be displayed as closely as possible like intended by the writer.</p> <p>I would like to avoid coding this myself.</p> <p>Solutions requiring latest browser (firefox) version are also acceptable.</p> http://stackoverflow.com/questions/1606201/how-can-i-make-html-safe-for-web-browser-with-python/1611676#1611676 0 Answer by iny for How can I make HTML safe for web browser with python? iny 2009-10-23T06:26:45Z 2009-10-23T07:01:30Z <p><a href="http://code.google.com/p/html5lib/" rel="nofollow">html5lib</a> contains an HTML+CSS sanitizer. It allows too much currently, but it shouldn't be too hard to modify it to match the use case.</p> <p>Found it from <a href="http://jacobian.org/writing/untrusted-users-and-html/" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1599885/how-can-i-wrap-a-java-enum-and-still-iterate-over-it/1599986#1599986 0 Answer by iny for How can I wrap a Java enum and still iterate over it? iny 2009-10-21T10:34:06Z 2009-10-21T10:49:46Z <p>Get the class and dig the values with <a href="http://java.sun.com/javase/6/docs/api/java/lang/Class.html#getEnumConstants%28%29" rel="nofollow">Class.getEnumConstants()</a> from it.</p> http://stackoverflow.com/questions/1584631/why-joptionpane-prevents-actionlistener-on-jbutton/1584676#1584676 0 Answer by iny for Why JOptionPane prevents ActionListener on JButton??? iny 2009-10-18T11:44:28Z 2009-10-18T11:44:28Z <p>JOptionPane methods won't return until the dialog is closed so the action code can be written after the call.</p> http://stackoverflow.com/questions/1533136/how-would-one-implement-bash-like-tab-completion/1533178#1533178 1 Answer by iny for How would one implement bash-like tab completion? iny 2009-10-07T17:51:29Z 2009-10-07T17:59:03Z <p>It uses readline library to handle the input and readline provides the history and the completion.</p> <p>To actually implement completion, access to the keyboard input handling is needed. The completion must be able to modify the buffer used by it. After that it is just about looking at the current input and checking what completions is found. The actual completion logic can work in many ways.</p> http://stackoverflow.com/questions/1518528/what-is-the-reverse-of-arraylist-tostring-for-a-java-arraylist/1518543#1518543 0 Answer by iny for What is the reverse of (ArrayList).toString for a Java ArrayList? iny 2009-10-05T06:47:00Z 2009-10-05T06:47:00Z <p>I would recommend using some standard format with a library for it instead.</p> <p><a href="http://json.org/java/" rel="nofollow">JSON</a> is probably the closest syntactically.</p> <p>Alternatively some XML or serialization based solution could work too. It all depends on your needs of course.</p> http://stackoverflow.com/questions/1417957/show-just-the-current-branch-in-git/1417960#1417960 1 Answer by iny for Show just the current branch in Git iny 2009-09-13T15:13:28Z 2009-09-13T15:13:28Z <p>I'm using </p> <pre><code>/etc/bash_completion.d/git </code></pre> <p>It came with git and provides a prompt with branch name and argument completion.</p> http://stackoverflow.com/questions/1417930/extending-generic-abstract-class-correct-use-of-super/1417944#1417944 4 Answer by iny for Extending Generic Abstract Class & Correct Use of Super iny 2009-09-13T15:03:25Z 2009-09-13T15:03:25Z <pre><code>public class Tool&lt;AT extends AbstractThing&gt; extends AbstractTool&lt;AT&gt; { </code></pre> <p>In other words, if you extend or implement something with generics, remember to define the generics arguments for them.</p> http://stackoverflow.com/questions/971812/synchronizing-jtable-and-jtree/971841#971841 0 Answer by iny for Synchronizing JTable and JTree iny 2009-06-09T18:55:38Z 2009-06-09T18:55:38Z <p>The interfaces are different, but it should be totally doable to implement them using the same data structure below.</p> http://stackoverflow.com/questions/927552/parsing-http-user-agent-string/927596#927596 3 Answer by iny for Parsing HTTP User-Agent string iny 2009-05-29T19:02:51Z 2009-05-29T19:02:51Z <p>You can't. Best you can get is having someone collect a database of them. You can do that yourself or there are some in Internet.</p> http://stackoverflow.com/questions/927272/what-is-the-best-functional-programming-language-for-experienced-oo-developers/927343#927343 10 Answer by iny for What is the best Functional Programming Language for Experienced OO Developers? iny 2009-05-29T18:06:02Z 2009-05-29T18:15:11Z <p>Scheme, start by reading <a href="http://mitpress.mit.edu/sicp/" rel="nofollow">SICP</a>. After that you can use any language you want.</p> http://stackoverflow.com/questions/926938/how-to-load-a-image-from-web-in-java/927010#927010 1 Answer by iny for how to load a image from web in java iny 2009-05-29T16:49:09Z 2009-05-29T16:49:09Z <p>See <a href="http://java.sun.com/javase/6/docs/api/javax/imageio/ImageIO.html#read(java.net.URL)" rel="nofollow">ImageIO.read(URL)</a>.</p> http://stackoverflow.com/questions/903557/pythons-with-statement-versus-with-as/903594#903594 1 Answer by iny for Python's 'with' statement versus 'with .. as' iny 2009-05-24T11:36:54Z 2009-05-24T11:45:12Z <p>The with statement is there to allow for example making sure that transaction is started and stopped correctly.</p> <p>In case of database connections in python, I think the natural thing to do is to create a cursor at the beginning of the with statement and then commit or rollback the transaction at the end of it.</p> <p>The two blocks you gave are same from the with statement point of view. You can add the as to the first one just as well and get the cursor.</p> <p>You need to check how the with support is implemented in the object you use it with.</p> <p>See <a href="http://docs.python.org/whatsnew/2.5.html#pep-343-the-with-statement" rel="nofollow">http://docs.python.org/whatsnew/2.5.html#pep-343-the-with-statement</a></p> http://stackoverflow.com/questions/869169/type-safety-java-generics-and-querying/871759#871759 0 Answer by iny for Type safety, Java generics and querying iny 2009-05-16T05:23:09Z 2009-05-16T05:23:09Z <p>I think that is nice and clean way of doing it and I would probably do it in the same way.</p> http://stackoverflow.com/questions/816619/managing-many-git-repositories 5 Managing many git repositories iny 2009-05-03T09:01:14Z 2009-05-07T19:51:48Z <p>Setting up a project is easy in git and so I can have separate repository even for small script. Now the problem is how to manage them.</p> <p>I work in multiple places with these repositories. When I have done changes to some repository, I want to be able to update the repositories in other places.</p> <p>So I have a directory with many repositories in it.</p> <ol> <li>How can I fetch all of them?</li> <li>How can I check whether any of them have uncommitted changes?</li> <li>How can I check whether any of them have changes to merge?</li> </ol> <p>And it would be nice to be able to do these with one command.</p> <p>The output needs to be silent enough to actually notice the things to do.</p> http://stackoverflow.com/questions/527833/how-to-configure-git-to-avoid-accidental-git-push/817345#817345 6 Answer by iny for How to configure git to avoid accidental git push iny 2009-05-03T15:46:18Z 2009-05-03T15:46:18Z <p>Looks like</p> <pre><code>git config remote.origin.receivepack /bin/false </code></pre> <p>Makes push to remote origin fail.</p> http://stackoverflow.com/questions/816619/managing-many-git-repositories/817168#817168 0 Answer by iny for Managing many git repositories iny 2009-05-03T14:13:28Z 2009-05-03T14:13:28Z <p>Looks like writing a script to do it is quite easy. Essentially it needs to iterate over the repositories and then use commands like git ls-files, git diff and git log.</p> http://stackoverflow.com/questions/787015/is-site-packages-appropriate-for-applications-or-just-libraries/788253#788253 0 Answer by iny for Is site-packages appropriate for applications or just libraries? iny 2009-04-25T04:54:16Z 2009-04-25T04:54:16Z <p>If you can turn part of the application to a library and provide an API, then site-packages is a good place for it. This is actually how many python applications do it.</p> <p>But from user or administrator point of view that isn't actually the problem. The problem is how we can manage the installed stuff. After I have installed it, how can I upgrade and uninstall it?</p> <p>I use Fedora. If I use the python that came with it, I don't like installing things to site-packages outside the RPM system. In some cases I have built rpm myself to install it.</p> <p>If I build my own python outside RPM, then I naturally want to use python's mechanisms to manage it.</p> <p>Third way is to use something like easy_install to install such thing for example as a user to home directory.</p> <p>So</p> <ul> <li>Allow packaging to distributions.</li> <li>Allow selecting the python to use.</li> <li>Allow using python installed by distribution where you don't have permissions to site-packages.</li> <li>Allow using python installed outside distribution where you can use site-packages.</li> </ul> http://stackoverflow.com/questions/235025/why-should-unit-tests-test-only-one-thing 21 Why should unit tests test only one thing? iny 2008-10-24T19:48:02Z 2009-04-21T15:34:56Z <p>What Makes a Good Unit Test? says that a test should test only one thing. What is the benefit from that?</p> <p>Wouldn't it be better to write a bit bigger tests that test bigger block of code? Investigating a test failure is anyway hard and I don't see help to it from smaller tests. </p> <p>Edit: The word unit is not that important. Let's say I consider the unit a bit bigger. That is not the issue here. The real question is why make a test or more for all methods as few tests that cover many methods is simpler.</p> <p>An example: A list class. Why should I make separate tests for addition and removal? A one test that first adds then removes sounds simpler.</p> http://stackoverflow.com/questions/739870/extract-cursor-image-in-java/750322#750322 0 Answer by iny for Extract cursor image in Java iny 2009-04-15T04:36:35Z 2009-04-15T04:36:35Z <p>It might be possible to find the system cursor images from JRE. Looking at the source code might be interesting too.</p> http://stackoverflow.com/questions/740418/how-do-i-catch-this-exception-in-swing/740439#740439 2 Answer by iny for How do I catch this exception in Swing? iny 2009-04-11T17:08:20Z 2009-04-11T17:20:23Z <p>Swing runs things in the event dispatching thread. You are trying to catch it in the main thread.</p> <p>And note that swing is not thread safe, you too should be doing things in event dispatching thread.</p> <p>To catch the exception, you can override some method from that stack trace, like the paint method from your component.</p> <p>And for me that exception does look like a bug you should fix, not something you should hide by catching.</p> http://stackoverflow.com/questions/663658/what-is-the-correct-target-for-the-javahome-envrionment-variable-for-a-linux-ope/663675#663675 0 Answer by iny for What is the correct target for the JAVA_HOME envrionment variable for a Linux OpenJDK debian-based distribution? iny 2009-03-19T19:28:10Z 2009-03-19T19:28:10Z <p>I usually don't have any JAVA_HOME environment variable. Java can set it up itself. Inside java java.home system property should be available.</p> http://stackoverflow.com/questions/663544/when-and-why-are-you-planning-to-upgrade-to-python-3-0/663665#663665 2 Answer by iny for When and why are you planning to upgrade to Python 3.0? iny 2009-03-19T19:25:15Z 2009-03-19T19:25:15Z <p>At least not before Python 2.6 is available on the Linux distribution I am using. After that I need to think how to proceed.</p> <p>Having also 3.0 available from the Linux distribution would help.</p> http://stackoverflow.com/questions/592032/imageio-write-not-saving-out-as-gif-but-works-for-jpgs-and-pngs/592049#592049 2 Answer by iny for ImageIO.write not saving out as gif, but works for jpgs and pngs? iny 2009-02-26T19:28:58Z 2009-02-26T19:43:07Z <p><a href="http://java.sun.com/javase/6/docs/api/javax/imageio/package-summary.html#gif_plugin_notes" rel="nofollow">http://java.sun.com/javase/6/docs/api/javax/imageio/package-summary.html#gif_plugin_notes</a></p> <p>Note that GIF can only store 256 colors.</p> http://stackoverflow.com/questions/574240/synchronized-block-vs-synchronized-method/574525#574525 3 Answer by iny for synchronized block vs synchronized method? iny 2009-02-22T07:31:18Z 2009-02-22T07:31:18Z <h2>Synchronized Mehtod</h2> <p>Pros:</p> <ul> <li>Your IDE can indicate the synchronized methods.</li> <li>The syntax is more compact.</li> <li>Forces to split the synchronized blocks to separate methods.</li> </ul> <p>Cons:</p> <ul> <li>Synchronizes to this and so makes it possible to outsiders to synchronize to it too.</li> <li>It is harder to move code outside the synchronized block.</li> </ul> <h2>Synchronized block</h2> <p>Pros:</p> <ul> <li>Allows using a private variable for the lock and so forcing the lock to stay inside the class.</li> <li>Synchronized blocks can be found by searching references to the variable.</li> </ul> <p>Cons:</p> <ul> <li>The syntax is more complicated and so makes the code harder to read.</li> </ul> <p><hr /></p> <p>Personally I prefer using synchronized methods with classes focused only to the thing needing synchronization. Such class should be as small as possible and so it should be easy to review the synchronization. Others shouldn't need to care about synchronization.</p> http://stackoverflow.com/questions/529593/2-input-fields-displaying-the-same-thing/529603#529603 8 Answer by iny for 2 input fields displaying the same thing iny 2009-02-09T19:47:43Z 2009-02-10T05:39:16Z <p>You might be able to give the fields the same document instance. For the document you could use one of the classes that swing provides or you could extend your own. The document is the model of the text field.</p> <p>Alternatively you could use listeners to do the updating. There are many things you can listen and it depends on your needs what suits best. You can listen the document, you can listen keyboard and mouse events, you can listen for action events. (Action events happen in this kind of fields when pressing enter or focus is lost.)</p> http://stackoverflow.com/questions/500484/bufferedimages-getsubimage-performance/517339#517339 0 Answer by iny for BufferedImage's getSubimage performance iny 2009-02-05T18:50:24Z 2009-02-05T18:50:24Z <p>As far as I know, <code>getSubimage(...)</code> shouldn't have any significant effect to the rendering.</p> <p>Converting image data is slow and usually it is better to try to avoid doing it on the fly.</p> <p><hr /></p> <p>With images slowness can be divided to two categories:</p> <ul> <li>Disk I/O</li> <li>Data processing</li> </ul> <p>And disk I/O can easily be the slowest part.</p> <p>If you are going to use only part of the image, it would be best to be able to load only part of the image from disk.</p> <p>My experience is that <a href="http://java.sun.com/javase/technologies/desktop/media/jai/" rel="nofollow">JAI</a> is better at doing only what is really needed than the standard library stuff.</p> http://stackoverflow.com/questions/517020/find-the-classname-of-a-ui-control/517051#517051 0 Answer by iny for Find the classname of a UI control iny 2009-02-05T17:57:51Z 2009-02-05T17:57:51Z <p>It should be possible to write a mouse listener doing such thing.</p> http://stackoverflow.com/questions/191652/any-generic-utilities-or-libraries-for-converting-hex-dumps-into-human-readable-f/517032#517032 2 Answer by iny for Any Generic Utilities or Libraries for Converting Hex Dumps into Human-readable Form? iny 2009-02-05T17:54:41Z 2009-02-05T17:54:41Z <p><a href="http://www.wireshark.org/" rel="nofollow">Wireshark</a> is quite good at opening network protocols.</p> http://stackoverflow.com/questions/508665/difference-between-parseint-and-valueof-in-java/508786#508786 0 Answer by iny for Difference between parseInt and valueOf in java? iny 2009-02-03T20:28:28Z 2009-02-03T20:28:28Z <p>Integer.parseInt can just return int as native type.</p> <p>Integer.valueOf may actually need to allocate an Integer object, unless that integer happens to be one of the preallocated ones. This costs more.</p> <p>If you need just native type, use parseInt. If you need an object, use valueOf.</p> <p>Also, because of this potential allocation, autoboxing isn't actually good thing in every way. It can slow down things.</p> http://stackoverflow.com/questions/1715840/adding-a-keyword-argument-to-an-overriden-method-and-using-kwarg/1715904#1715904 Comment by iny on adding a keyword argument to an overriden method and using **kwarg iny 2009-11-11T15:27:05Z 2009-11-11T15:27:05Z You can use pop instead of get + del. http://stackoverflow.com/questions/816619/managing-many-git-repositories/817168#817168 Comment by iny on Managing many git repositories iny 2009-11-11T15:13:46Z 2009-11-11T15:13:46Z There is no &quot;the script&quot;. I'm using a script that I have written for my own needs, but it is not generic. http://stackoverflow.com/questions/1606201/how-can-i-make-html-safe-for-web-browser-with-python/1606315#1606315 Comment by iny on How can I make HTML safe for web browser with python? iny 2009-10-22T17:04:01Z 2009-10-22T17:04:01Z That is why I would prefer an existing solution instead of doing it myself. http://stackoverflow.com/questions/1606201/how-can-i-make-html-safe-for-web-browser-with-python/1606315#1606315 Comment by iny on How can I make HTML safe for web browser with python? iny 2009-10-22T10:27:56Z 2009-10-22T10:27:56Z Clickable links are not a problem. Images and other references normally fetched automatically are. http://stackoverflow.com/questions/1606201/how-can-i-make-html-safe-for-web-browser-with-python Comment by iny on How can I make HTML safe for web browser with python? iny 2009-10-22T10:05:39Z 2009-10-22T10:05:39Z What would you expect from web based email reader? I'm interested in both more and less safe solutions. http://stackoverflow.com/questions/1518528/what-is-the-reverse-of-arraylist-tostring-for-a-java-arraylist/1518543#1518543 Comment by iny on What is the reverse of (ArrayList).toString for a Java ArrayList? iny 2009-10-05T17:24:23Z 2009-10-05T17:24:23Z Implementing own buggy parser is just wrong. Using tested library is much better, always. http://stackoverflow.com/questions/1418007/using-an-actionlistener-in-one-class-to-start-a-timer-in-another-class Comment by iny on Using an ActionListener in one class to start a timer in another class. iny 2009-09-13T15:41:22Z 2009-09-13T15:41:22Z How the actionPerformed gets sim? http://stackoverflow.com/questions/1146581/how-can-i-convert-the-decimal-representation-of-an-ip-address-into-binary/1146590#1146590 Comment by iny on How can I convert the decimal representation of an IP address into binary? iny 2009-07-18T03:25:57Z 2009-07-18T03:25:57Z <a href="http://en.wikipedia.org/wiki/IPv4#Addresses_ending_in_0_or_255" rel="nofollow">en.wikipedia.org/wiki/&hellip;</a> http://stackoverflow.com/questions/400235/changing-jtable-reference-at-runtime-not-appearing-in-gui/400709#400709 Comment by iny on Changing JTable reference at runtime - not appearing in GUI iny 2009-06-12T15:15:32Z 2009-06-12T15:15:32Z Because new components need to be added somewhere to show up. http://stackoverflow.com/questions/986924/best-way-to-use-contains-in-an-arraylist-in-java Comment by iny on Best way to use contains in an ArrayList in Java? iny 2009-06-12T14:37:26Z 2009-06-12T14:37:26Z Look at the source code for ArrayList and you'll see that the implementation is quite simple already. http://stackoverflow.com/questions/926404/java-is-clone-really-ever-used-what-about-defensive-copying-in-getters-setter/926600#926600 Comment by iny on Java: Is clone() really ever used? What about defensive copying in getters/setters? iny 2009-05-29T17:17:54Z 2009-05-29T17:17:54Z Yes, while some defenses are needed, copying something twice should not happen. Unnecessary copying can really hurt the performance. http://stackoverflow.com/questions/927091/how-to-check-in-a-bash-script-if-something-is-running-and-exit-if-it-is/927094#927094 Comment by iny on How to check in a bash script if something is running and exit if it is. iny 2009-05-29T17:10:24Z 2009-05-29T17:10:24Z pkill -0 yourscript would probably be better http://stackoverflow.com/questions/833937/how-to-handle-code-for-network-failure-and-resume-back/833984#833984 Comment by iny on How to handle code for network failure and resume back? iny 2009-05-08T19:05:26Z 2009-05-08T19:05:26Z Avoid busy loop. http://stackoverflow.com/questions/816619/managing-many-git-repositories/817083#817083 Comment by iny on Managing many git repositories iny 2009-05-03T14:08:30Z 2009-05-03T14:08:30Z I'm not searching for file sync, I already have that. I'm searching for something that tells me what I need to merge, commit or push in set of repositories. http://stackoverflow.com/questions/816619/managing-many-git-repositories/816674#816674 Comment by iny on Managing many git repositories iny 2009-05-03T11:02:09Z 2009-05-03T11:02:09Z Documentation for repo is quite minimal and looks like it is intended for different kind of work flow I want to use.