abyx

3,730
Reputation
248 views

Registered User

Name abyx
Member for 1 year
Seen 5 hours ago
Website
Location Israel
Age 22
Happy hacker. Craftsman.

I'm Aviv Ben-Yosef.
You can read my rants and ideas at my site and on twitter.
8h
comment java.util.ConcurrentModificationException in Non Multithreaded Program,
@Kaleb - in which case one shouldn't remove things during iteration at all.
8h
revised java.util.ConcurrentModificationException in Non Multithreaded Program,
added 46 characters in body
8h
answered java.util.ConcurrentModificationException in Non Multithreaded Program,
12h
comment generic programming in java
Isn't this the other way around than the state he's showing?
12h
answered generic programming in java
1d
accepted Get stacktrace from stuck python process
2d
comment python: conditionally execute code in a “with” block
You stated it fails if the arguments doesn't have a b attribute, but even if it does, it will fail, if c.b != 1
2d
comment python: conditionally execute code in a “with” block
@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) ?
2d
revised python: conditionally execute code in a “with” block
added 412 characters in body
2d
comment python: conditionally execute code in a “with” block
Goddamit, I just copied what he said his condition should be.
2d
comment python: conditionally execute code in a “with” block
This doesn't work for any value other than 1 that's passed to A: 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 pass in b doesn't return a valid context manager.
2d
accepted python: conditionally execute code in a “with” block
2d
answered python: conditionally execute code in a “with” block
2d
revised Eclipse: Most useful refactorings
added 294 characters in body
2d
revised Java Code Review: Generate a subgraph
added 218 characters in body
Nov
26
comment How would you represent a MineSweeper grid in Python?
I think that's one of the biggest cases of NIH I've ever seen...
Nov
26
answered Replacing all non-alphanumeric characters with empty strings
Nov
26
comment How would you represent a MineSweeper grid in Python?
You're kidding... you'd rather index yourself ? Nested lists is an overkill? It's not like someone suggested using a numpy matrix, it's just nested lists...
Nov
26
revised How to write the grammar for this in pyparsing: match a set of words but not containing a given pattern
edited tags
Nov
26
awarded  Disciplined
Nov
26
revised Java Code Review: Generate a subgraph
added 351 characters in body
Nov
26
comment Java Code Review: Generate a subgraph
+1 for the idea of doing a code review for a small snippet on SO
Nov
26
answered Java Code Review: Generate a subgraph
Nov
26
comment Eclipse: Most useful refactorings
+1 for the <kbd thing!
Nov
26
awarded  Strunk & White
Nov
26
revised Drag & drop with JLabel
added 2 characters in body
Nov
26
revised Drag & drop with JLabel
added 4 characters in body
Nov
26
answered Eclipse: Most useful refactorings
Nov
26
revised Java - updating textFields from JList
added 19 characters in body
Nov
26
answered Good ethical hacking book
Nov
26
comment Shell scripting book
He asked for a recommendation, not an amazon search :P
Nov
26
answered Instantiation of objects
Nov
26
answered How to save double to file in python?
Nov
26
comment How to tell difference between python class and object?
This question is a duplicate of this question from **today**: stackoverflow.com/questions/1802480/…
Nov
26
comment Pythonic way to select first variable that is defined
If you've decided to use next, you might as well use its default argument
Nov
26
revised NameError: name ‘self’ is not defined
edited tags
Nov
26
revised NameError: name ‘self’ is not defined
edited body
Nov
26
comment Java - Create a new String instance with specified length and filled with specific character. Best solution?
+1 nice solution, though I wouldn't add a jar to my project just for that.
Nov
26
comment Java - Create a new String instance with specified length and filled with specific character. Best solution?
Maybe, but 1) it's likely to be faster and 2) that's code you don't need to write.
Nov
26
comment Remove first line in text file without allocating memory for entire text file
What's the difference between awk and sed in this respect?
Nov
26
accepted Is the linux kernel’s list.h thread safe?
Nov
26
comment How to identify whether a variable is a class or an object
+1 Didn't know about this one, much better than the isinstance alternatives
Nov
26
answered Remove first line in text file without allocating memory for entire text file
Nov
26
revised Java: RegEx Problem (using the ‘.’ all character symbol)
added 2 characters in body
Nov
26
comment Java: RegEx Problem (using the ‘.’ all character symbol)
Dear god, why aren't you using some kind of XML parser? That regex is pure evil.
Nov
26
revised Counting keys in a hash_multimap
added 4 characters in body
Nov
26
comment python for in control structure
Indeed, a typo. fixed
Nov
26
revised python for in control structure
edited body
Nov
26
revised How to identify whether a variable is a class or an object
added 34 characters in body
Nov
26
answered How to identify whether a variable is a class or an object