User abyx - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T12:55:15Zhttp://stackoverflow.com/feeds/user/573http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1808675/python-conditionally-execute-code-in-a-with-block/1808750#18087506Answer by abyx for python: conditionally execute code in a "with" blockabyx2009-11-27T13:22:39Z2009-11-27T15:50:01Z<p>There's no real reason to do that, since conditionals are already supplied using the <code>if</code> statement:</p>
<pre><code>if a == True:
print 1
</code></pre>
<p>But, if you're just asking for <strong>fun</strong>, the answer is <strong>you can't</strong> really. To stop the <code>with</code> content from executing, <code>conditional</code> will need to somehow stop execution, in its <code>__enter__</code> method. But the only way it can do that is raising an exception, which means no other code will run, unless you wrap the <code>with</code> with a <code>try</code> statement for handling cases <code>a != True</code></p>
<p><strong>Edit:</strong> seeing I was prosecuted in the comments and votes for using the OP's condition (<code>a == True</code>) I considered changing it to <code>if a</code>, which is of course the idiom in Python for testing conditionals. But, we <strong>do not know</strong> what the OP had in mind, and whether he really does want <code>a</code> to be a boolean, and doesn't want block to execute if <code>a = [1]</code> (which will pass <code>if a</code>) I <strong>decided to leave it as is.</strong></p>
http://stackoverflow.com/questions/1804839/eclipse-most-useful-refactorings/1804898#18048986Answer by abyx for Eclipse: Most useful refactoringsabyx2009-11-26T17:29:52Z2009-11-27T08:33:46Z<p><strong>Rename</strong> - because giving things meaningful names is the best way to write self-documenting code. <kbd>Shift</kbd>+<kbd>Alt</kbd>+<kbd>R</kbd></p>
<p><strong>Extract method</strong> - whenever a method gets too long. <kbd>Shift</kbd>+<kbd>Alt</kbd>+<kbd>M</kbd></p>
<p><strong>Extract constant</strong> - because magic numbers are bad. <kbd>Shift</kbd>+<kbd>Alt</kbd>+<kbd>T</kbd> (refactoring menu, there's no direct shortcut).</p>
<p><strong>Inline/introduce variable</strong> - to remove clutter from methods. <kbd>Shift</kbd>+<kbd>Alt</kbd>+<kbd>I</kbd> (inline), <kbd>Shift</kbd>+<kbd>Alt</kbd>+<kbd>L</kbd> (introduce)</p>
http://stackoverflow.com/questions/1804998/java-code-review-generate-a-subgraph/1805076#18050761Answer by abyx for Java Code Review: Generate a subgraphabyx2009-11-26T18:22:45Z2009-11-27T07:46:03Z<p>First of all, your javadoc is wrong - either remove the attributes you haven't written anything in, or fill in the details.</p>
<p>Second, I would have broken it down to 2 separate methods, one for handling the edges, and the other for handling the vertices, which will make the code easier to understand and tidier.</p>
<p>Another small thing, the name <code>removedE</code> is a bit ugly (IMHO), and I'd use something longer than just <code>E</code>, like <code>Edges</code>.</p>
<p>Other than that, nothing else pops to mind, and the code looks good to me.</p>
<p>Regarding the <code>ConcurrentModificationException</code>: I'm not familiar with the library, and so don't know off the top of my head if that's the expected result, but usually removing elements during iteration causes problems, unless there's a special method for removing items during iteration to update the <code>Iterator</code> (for example, <code>Iterator.remove</code>). </p>
<p><strong>Edit:</strong> After the changes you've made, the code is easier to understand. This might just be me, but I'd extract a method for the long conditional in the first method to something like <code>isVertexConnectedToEdge()</code>.</p>
http://stackoverflow.com/questions/1805518/replacing-all-non-alphanumeric-characters-with-empty-strings/1805557#18055570Answer by abyx for Replacing all non-alphanumeric characters with empty stringsabyx2009-11-26T20:39:19Z2009-11-26T20:39:19Z<p>Java's regular expressions don't require you to put a forward-slash (<code>/</code>) or any other delimiter around the regex, as opposed to other languages like Perl, for example. </p>
http://stackoverflow.com/questions/1804560/good-ethical-hacking-book/1804611#18046112Answer by abyx for Good ethical hacking bookabyx2009-11-26T16:24:23Z2009-11-26T16:24:23Z<p>The book <a href="http://rads.stackoverflow.com/amzn/click/0071495681" rel="nofollow">Gray Hat Hacking</a> is a nice read. If you're a real starter, <a href="http://rads.stackoverflow.com/amzn/click/0929408349" rel="nofollow">Happy Hacker</a> is also nice (though a bit old).</p>
<p>Furthermore, the <a href="http://phrack.org" rel="nofollow">phrack</a> online magazine is awesome for more specific and advanced stuff.</p>
http://stackoverflow.com/questions/1804075/instantiation-of-objects/1804099#18040991Answer by abyx for Instantiation of objectsabyx2009-11-26T14:47:43Z2009-11-26T14:47:43Z<p>You didn't specify what language you're talking about. But, in general, the separate instance methods will not take up more memory.</p>
<p>To tell you the truth, you probably shouldn't even think about these details, as modern language designers have thought about this for you, and they have probably chosen the best thing. So, if there's no real reason to keep another copy (because all of the methods are actually the same), they won't save another copy.</p>
http://stackoverflow.com/questions/1804049/how-to-save-double-to-file-in-python/1804085#18040852Answer by abyx for How to save double to file in python?abyx2009-11-26T14:45:28Z2009-11-26T14:45:28Z<p>I don't know fortran, so it's hard to tell what is easy for you to perform on that side for parsing.</p>
<p>It sounds like your options are either saving the doubles in plaintext (meaning, 'converting' them to string), or in binary (using <code>struct</code> and the likes). The decision for which one is better depends.</p>
<p>I would go with the plaintext solution, as it means the files will be easily readable, and you won't have to mess with different kinds of details (endianity, default double sizes).<br>
But, there are cases where binary is better (for example, if you have a really big list of doubles and space is of importance, or if it is easier for you to parse it and you need the optimization) - but this is likely not your case.</p>
http://stackoverflow.com/questions/1802757/remove-first-line-in-text-file-without-allocating-memory-for-entire-text-file/1802769#18027690Answer by abyx for Remove first line in text file without allocating memory for entire text fileabyx2009-11-26T10:09:05Z2009-11-26T10:09:05Z<p>I don't know how big is your file, but did you try <code>awk 'NR > 1' {print}</code> ?</p>
http://stackoverflow.com/questions/1802415/python-for-in-control-structure/1802455#18024550Answer by abyx for python for in control structureabyx2009-11-26T09:06:04Z2009-11-26T09:44:06Z<p>It's roughly equivalent to (pseudo code):</p>
<pre><code>For every item i in z:
x = i[0]
y = i[1]
Loop body happens here
</code></pre>
<p>It means that every item in <code>z</code> contains 2 elements (for example, every item is a list with 2 items).</p>
http://stackoverflow.com/questions/1802480/how-to-identify-whether-a-variable-is-a-class-or-an-object/1802507#18025073Answer by abyx for How to identify whether a variable is a class or an objectabyx2009-11-26T09:16:10Z2009-11-26T09:16:10Z<p>Use <code>isinstance</code> and <code>type</code>, <code>types.ClassType</code> (that latter is for old-style classes):</p>
<pre><code>>>> isinstance(int, type)
True
>>> isinstance(1, type)
False
</code></pre>
http://stackoverflow.com/questions/1802309/shell-scripting-book/1802331#18023310Answer by abyx for Shell scripting bookabyx2009-11-26T08:40:39Z2009-11-26T08:40:39Z<p><a href="http://oreilly.com/catalog/9781565923478" rel="nofollow">Learning the Bash Shell</a> is a great introduction. It contains really useful scripting knowledge.</p>
http://stackoverflow.com/questions/1802107/define-ifdef-undef-endif/1802139#18021392Answer by abyx for #define, #ifdef #undef #endifabyx2009-11-26T07:47:43Z2009-11-26T07:47:43Z<p>In just about every programming language or syntax, once execution has entered one branch of a conditional (in this case, the conditional being <code>#ifdef</code>, even if the condition changes during execution of the branch, other branches will never be executed.</p>
<p>I'm sure you wouldn't expect this to print "Hello", would you?</p>
<pre><code>if (i == 1)
i = 0;
else
printf("Hello\n");
</code></pre>
<p>Basically what you're saying is that the code under the <code>else</code> branch should always execute, then just take it out of a branch, and <strong>put it directly in the code</strong>.</p>
<p>Both the compiler and the execution only make one pass through conditionals, once a match has been found they look no further.</p>
http://stackoverflow.com/questions/1801718/outer-java-class-is-able-to-access-inner-class-private-members/1801925#18019253Answer by abyx for Outer Java class is able to access inner class private members?abyx2009-11-26T06:42:18Z2009-11-26T06:42:18Z<p>The logic behind inner classes is that if you create an inner class in an outer class, that's because they will need to share a few things, and thus it makes sense for them to be able to have more flexibility than "regular" classes have.</p>
<p>If, in your case, it makes no sense for the classes to be able to see each other's inner workings - which basically means that the inner class could simply have been made a regular class, you can declare the inner class as <code>static class XYZ</code>. Using <code>static</code> will mean they will not share state (and, for example <code>new ABC().new XYZ()</code> won't work, and you will need to use <code>new ABC.XYZ()</code>.<br>
But, if that's the case, you should think about whether <code>XYZ</code> should really be an inner class and that maybe it deserves its own file. Sometimes it makes sense to create a static inner class (for example, if you need a small class that implements an interface your outer class is using, and that won't be helpful anywhere else). But at about half of the time it should have been made an outer class.</p>
http://stackoverflow.com/questions/1800261/is-the-linux-kernels-list-h-thread-safe/1800458#18004581Answer by abyx for Is the linux kernel's list.h thread safe?abyx2009-11-25T22:45:46Z2009-11-25T22:45:46Z<p>No, the <code>list_head</code> struct doesn't contain any lock, and the operations are by no means atomic.</p>
<p>You can see so for yourself <a href="http://lxr.linux.no/linux+v2.6.31/include/linux/list.h" rel="nofollow">here</a>, there is no mention of locking mechanisms etc.</p>
http://stackoverflow.com/questions/1800396/most-pythonic-way-of-ignoring-output/1800435#18004351Answer by abyx for Most pythonic way of ignoring outputabyx2009-11-25T22:42:52Z2009-11-25T22:42:52Z<p>It's a decision between using things that already exist (<code>os.devnull</code>) but are a bit "messier" (you need to <code>open()</code> it etc'), and creating your own solution, which might be simpler, but it's a new class that you're creating.</p>
<p>Though both are totally fine, I would have gone with the <code>nullWriter</code>, as it's cleaner and depends on pure python knowledge and doesn't mess with os things.</p>
http://stackoverflow.com/questions/1799337/prior-declarations-of-functions/1799343#17993431Answer by abyx for prior declarations of functionsabyx2009-11-25T19:20:26Z2009-11-25T19:20:26Z<p>So that the compiler will be able to detect type errors when you call functions. Of course there are ways around that, but that's the way they chose.</p>
http://stackoverflow.com/questions/1798609/how-to-access-physical-memory-in-linux-from-userspace/1798688#17986883Answer by abyx for How to access physical memory in linux from userspace ?abyx2009-11-25T17:41:55Z2009-11-25T17:41:55Z<p>Usually, to access that in userspace you'd use <code>copy_to_user()</code> to get a valid userspace copy.</p>
http://stackoverflow.com/questions/1798512/why-do-several-java-util-list-methods-not-use-the-type-parameter/1798635#17986350Answer by abyx for Why do several java.util.List methods not use the type parameter?abyx2009-11-25T17:34:53Z2009-11-25T17:34:53Z<p>The intent of the generics is to make sure you always know what type you're handling. Those methods aren't "dangerous", they can't harm the type-ness of the collection, and so there was no need to add generics to them when the move was made in Java 5.</p>
http://stackoverflow.com/questions/1798118/what-do-you-do-to-write-better-code/1798382#17983821Answer by abyx for What do you do to write better code?abyx2009-11-25T17:00:19Z2009-11-25T17:32:35Z<ol>
<li>I <strong>read</strong> a lot. Both blogs and books.</li>
<li>Write <strong>tests</strong>. Preferably TDD.</li>
<li>I've got constant reminders that my work requires <strong>careful thinking</strong> (I've got the <a href="http://pragprog.com/the-pragmatic-programmer/extracts/tips" rel="nofollow"><strong>Pragmatic Programmer tips</strong></a> hung next to my monitor, and a <a href="http://cleancodeproject.org/" rel="nofollow"><strong>Clean Code wristband</strong></a>).</li>
<li>Always <strong>ask</strong> team-mates for their opinion when I think I'm doing things in a way that's too messy.</li>
<li>I sometimes read through code I've produced lately and '<strong>rate</strong>' myself. I find things that bother me and make sure to fix them.</li>
<li><strong>Read</strong> code.</li>
</ol>
http://stackoverflow.com/questions/1798465/python-remove-last-3-characters-of-a-string/1798499#17984990Answer by abyx for Python Remove last 3 characters of a string abyx2009-11-25T17:18:28Z2009-11-25T17:18:28Z<p>What's wrong with this?</p>
<pre><code>foo.replace(" ", "")[:-3].upper()
</code></pre>
http://stackoverflow.com/questions/1797387/what-does-int-mean-in-a-function-call/1797415#17974150Answer by abyx for What does (int (*)()) mean in a function callabyx2009-11-25T14:49:07Z2009-11-25T14:49:07Z<p>It means that the first argument of <code>read</code>, named <code>Blub</code> is a pointer to a function that returns a <code>char *</code> and receives no arguments.</p>
http://stackoverflow.com/questions/1797112/why-are-there-so-many-slightly-different-ways-to-do-the-same-thing-in-ruby/1797152#17971521Answer by abyx for Why are there so many slightly different ways to do the same thing in Ruby?abyx2009-11-25T14:11:11Z2009-11-25T14:11:11Z<p>A lot of ruby's syntax is derived from perl's, like using <code>q</code> to quote a few words into a string. That probably is the main reason for such a big variety. </p>
http://stackoverflow.com/questions/1797122/how-to-pass-more-one-code-block-to-a-function-in-ruby/1797132#17971321Answer by abyx for How to pass more one code block to a function in Ruby?abyx2009-11-25T14:08:22Z2009-11-25T14:08:22Z<p>Syntactically, using the <code>yield</code> statement only supports one code block that's passed to the function.</p>
<p>Of course, you can pass a function multiple other functions or "code block objects" (<code>Proc</code> objects), and use them, but not by simply using <code>yield</code>.</p>
http://stackoverflow.com/questions/1796738/throw-fileloadexception-or-just-ioexception/1796752#17967523Answer by abyx for Throw FileLoadException or just IOExceptionabyx2009-11-25T12:57:35Z2009-11-25T12:57:35Z<p>I wouldn't throw an exception that is documented to be of a very specific use-case and might confuse others.</p>
<p>If you can't define a new exception, stick with <code>IOException</code>.</p>
http://stackoverflow.com/questions/1795874/using-recvfrom-with-raw-sockets-general-doubt/1796004#17960040Answer by abyx for Using recvfrom() with raw sockets : general doubtabyx2009-11-25T10:25:50Z2009-11-25T10:25:50Z<p>IIRC, <code>recvfrom()</code> will only return one packet at a time, even if there are more in the queue.</p>
http://stackoverflow.com/questions/1795808/and-and-or-in-java-if-statements/1795832#17958323Answer by abyx for && (AND) and || (OR) in Java IF statementsabyx2009-11-25T09:53:42Z2009-11-25T09:53:42Z<p>No it won't, Java will short-circuit and stop evaluating once it knows the result.</p>
http://stackoverflow.com/questions/1789989/can-i-use-throws-in-constructor/1790057#17900572Answer by abyx for Can I use throws in constructor?abyx2009-11-24T13:26:42Z2009-11-24T13:26:42Z<p>You sure can (for example, <code>FileOutputStream</code> does).</p>
<p>Throwing an exception from the constructor should be done wisely - make sure you clean up after yourself cleanly. Throwing exceptions in a constructor is sometimes done in order to make sure <a href="http://en.wikipedia.org/wiki/RAII" rel="nofollow">RAII</a> is held.</p>
http://stackoverflow.com/questions/1789679/get-string-value-from-hashmap-depending-on-key-name/1789698#17896980Answer by abyx for get string value from HashMap depending on key nameabyx2009-11-24T12:14:32Z2009-11-24T12:14:32Z<p><code>map.get(myCode)</code></p>
http://stackoverflow.com/questions/1788924/getting-java-source-method-name-list-given-an-antlr-java-grammar/1788962#17889621Answer by abyx for Getting java source method name list given an ANTLR java grammar?abyx2009-11-24T09:34:28Z2009-11-24T10:05:23Z<p>Basically you need to edit the grammar file to add that functionality. Find the rule that detects methods, and add some code there that adds the name of the method to a list the parser is collecting. Then, after you instantiate the parser you can access the method names.</p>
<p>You can see a full example <a href="http://junit-converter.svn.sourceforge.net/viewvc/junit-converter/trunk/src/junitconverter/Java.g?revision=4&view=markup" rel="nofollow">here</a> (edited grammar file for Java used in <a href="http://junit-converter.sourceforge.net/" rel="nofollow">JUnitConverter</a> (shameless plug)), specifically the <code>addMethod</code> method.</p>
http://stackoverflow.com/questions/1787288/how-to-call-ssh-by-subprocess-module-so-that-it-uses-sshaskpass-variable/1788266#17882661Answer by abyx for How to call ssh by subprocess module so that it uses SSH_ASKPASS variableabyx2009-11-24T06:39:26Z2009-11-24T10:02:30Z<p>Your problem is that SSH detects your TTY and talks to it directly (as is clearly stated in the man-page). You can try and run ssh without a terminal - the man page suggests it might be necessary to redirect <code>stdin</code> to <code>/dev/null</code> for ssh to think it has no terminal.</p>
<p>You can also use <a href="http://pexpect.sourceforge.net/" rel="nofollow">pexcept</a> for this, it's known to work with SSH - example <a href="http://linux.byexamples.com/archives/346/python-how-to-access-ssh-with-pexpect/" rel="nofollow">usage</a>.</p>
<p>The <strong>Right Way</strong> (TM) to do what you're trying to do is either:</p>
<ol>
<li>Use a library specifically for using SSH in python (for example <a href="http://twistedmatrix.com/trac/wiki/TwistedConch" rel="nofollow">twisted conch</a> or <a href="http://www.lag.net/paramiko/" rel="nofollow">paramiko</a>)</li>
<li>Use public and private keys so that passwords will not be necessary</li>
</ol>
http://stackoverflow.com/questions/1808675/python-conditionally-execute-code-in-a-with-block/1808907#1808907Comment by abyx on python: conditionally execute code in a "with" blockabyx2009-11-27T18:00:05Z2009-11-27T18:00:05ZYou stated it fails if the arguments doesn't have a <code>b</code> attribute, but even if it does, it will fail, if <code>c.b != 1</code>http://stackoverflow.com/questions/1808675/python-conditionally-execute-code-in-a-with-blockComment by abyx on python: conditionally execute code in a "with" blockabyx2009-11-27T15:52:02Z2009-11-27T15:52:02Z@S.Lott - I do not agree with the down vote. There's a place for everything, and so is for this kind of thing. It helps understand the language better, and is the way good programmers explore. Is this way of thinking unique to Israelis (I assume noam is, too) ?http://stackoverflow.com/questions/1808675/python-conditionally-execute-code-in-a-with-block/1808750#1808750Comment by abyx on python: conditionally execute code in a "with" blockabyx2009-11-27T15:47:08Z2009-11-27T15:47:08ZGoddamit, I just copied what he said his condition should be. http://stackoverflow.com/questions/1808675/python-conditionally-execute-code-in-a-with-block/1808907#1808907Comment by abyx on python: conditionally execute code in a "with" blockabyx2009-11-27T14:20:58Z2009-11-27T14:20:58ZThis doesn't work for any value other than 1 that's passed to <code>A</code>:
Traceback (most recent call last):
File "<pyshell#9>", line 1, in <module>
with b(A(2)):
AttributeError: 'NoneType' object has no attribute '__exit__'
That's because the <code>pass</code> in <code>b</code> doesn't return a valid context manager.http://stackoverflow.com/questions/1805480/how-would-you-represent-a-minesweeper-grid-in-python/1805505#1805505Comment by abyx on How would you represent a MineSweeper grid in Python?abyx2009-11-26T22:21:55Z2009-11-26T22:21:55ZI think that's one of the biggest cases of NIH I've ever seen...http://stackoverflow.com/questions/1805480/how-would-you-represent-a-minesweeper-grid-in-python/1805505#1805505Comment by abyx on How would you represent a MineSweeper grid in Python?abyx2009-11-26T20:32:18Z2009-11-26T20:32:18ZYou're kidding... you'd rather index yourself ? Nested lists is an overkill? It's not like someone suggested using a <code>numpy</code> <code>matrix</code>, it's just nested lists...http://stackoverflow.com/questions/1804998/java-code-review-generate-a-subgraphComment by abyx on Java Code Review: Generate a subgraphabyx2009-11-26T18:24:28Z2009-11-26T18:24:28Z+1 for the idea of doing a code review for a small snippet on SOhttp://stackoverflow.com/questions/1804839/eclipse-most-useful-refactorings/1804871#1804871Comment by abyx on Eclipse: Most useful refactoringsabyx2009-11-26T18:08:02Z2009-11-26T18:08:02Z+1 for the <code><kbd</code> thing!http://stackoverflow.com/questions/1802309/shell-scripting-book/1802397#1802397Comment by abyx on Shell scripting bookabyx2009-11-26T15:04:49Z2009-11-26T15:04:49ZHe asked for a recommendation, not an amazon search :Phttp://stackoverflow.com/questions/1803982/how-to-tell-difference-between-python-class-and-objectComment by abyx on How to tell difference between python class and object?abyx2009-11-26T14:34:35Z2009-11-26T14:34:35ZThis question is a duplicate of this question from **today**: <a href="http://stackoverflow.com/questions/1802480/how-to-identiy-whether-a-variable-is-a-class-or-an-object/" rel="nofollow" title="how to identiy whether a variable is a class or an object">stackoverflow.com/questions/1802480/…</a>http://stackoverflow.com/questions/1803302/pythonic-way-to-select-first-variable-that-is-defined/1803448#1803448Comment by abyx on Pythonic way to select first variable that is definedabyx2009-11-26T12:55:22Z2009-11-26T12:55:22ZIf you've decided to use <code>next</code>, you might as well use its <code>default</code> argumenthttp://stackoverflow.com/questions/1802915/java-create-a-new-string-instance-with-specified-length-and-filled-with-specifi/1802940#1802940Comment by abyx on Java - Create a new String instance with specified length and filled with specific character. Best solution?abyx2009-11-26T10:53:43Z2009-11-26T10:53:43Z+1 nice solution, though I wouldn't add a jar to my project just for that.http://stackoverflow.com/questions/1802915/java-create-a-new-string-instance-with-specified-length-and-filled-with-specifi/1802944#1802944Comment by abyx on Java - Create a new String instance with specified length and filled with specific character. Best solution?abyx2009-11-26T10:52:51Z2009-11-26T10:52:51ZMaybe, but 1) it's likely to be faster and 2) that's code you don't need to write.http://stackoverflow.com/questions/1802757/remove-first-line-in-text-file-without-allocating-memory-for-entire-text-file/1802769#1802769Comment by abyx on Remove first line in text file without allocating memory for entire text fileabyx2009-11-26T10:30:35Z2009-11-26T10:30:35ZWhat's the difference between awk and sed in this respect?http://stackoverflow.com/questions/1802480/how-to-identify-whether-a-variable-is-a-class-or-an-object/1802533#1802533Comment by abyx on How to identify whether a variable is a class or an objectabyx2009-11-26T10:17:35Z2009-11-26T10:17:35Z+1 Didn't know about this one, much better than the <code>isinstance</code> alternatives