User Suraj Barkale - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T15:37:52Zhttp://stackoverflow.com/feeds/user/39446http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/478458/python-regular-expressions-with-more-than-100-groups/481508#4815081Answer by Suraj Barkale for Python regular expressions with more than 100 groups?Suraj Barkale2009-01-26T21:45:49Z2009-01-26T21:45:49Z<p>Can you explain why you need more than 100 groups? Perhaps we can help you find an alternate solution.</p>
http://stackoverflow.com/questions/472000/python-slots/472899#4728991Answer by Suraj Barkale for Python __slots__ Suraj Barkale2009-01-23T13:38:21Z2009-01-23T13:38:21Z<p>Each python object has a <code>__dict__</code> atttribute which is a dictionary containing all other attributes. e.g. when you type <code>self.attr</code> python is actually doing <code>self.__dict__['attr']</code>. As you can imagine using a dictionary to store attribute takes some extra space & time for accessing it.</p>
<p>However, when you use '<strong>slots</strong>', any object created for that class won't have a '<strong>dict</strong>' attribute. Instead, all attribute access is done directly via pointers.</p>
<p>So if want a C style structure rather than a full fledged class you can use <code>__slots__</code> for compacting size of the objects & reducing attribute access time. A good example is a Point class containing attributes x & y. If you are going to have a lot of points, you can try using <code>__slots__</code> in order to conserve some memory.</p>
http://stackoverflow.com/questions/414111/how-do-i-push-a-file-from-a-linux-box-to-a-windows-box/414134#4141345Answer by Suraj Barkale for How do I push a file from a Linux box to a Windows Box?Suraj Barkale2009-01-05T19:04:49Z2009-01-05T19:04:49Z<p>I don't think any version of windows has built in SSH server. You can take a look at <a href="http://filezilla-project.org/" rel="nofollow">FileZilla</a> for easily setting up a SFTP server.</p>
http://stackoverflow.com/questions/396856/how-to-instantiate-a-class-in-python/396875#3968751Answer by Suraj Barkale for How to instantiate a class in pythonSuraj Barkale2008-12-28T23:50:42Z2008-12-28T23:50:42Z<p>In python member function of a class need explicit <code>self</code> argument. Same as implicit <code>this</code> pointer in C++. For more details please check out <a href="http://diveintopython.org/object_oriented_framework/defining_classes.html" rel="nofollow">this</a> page.</p>
http://stackoverflow.com/questions/379442/how-much-slower-is-a-wxwidget-written-in-python-versus-c/379589#3795891Answer by Suraj Barkale for How much slower is a wxWidget written in Python versus C++?Suraj Barkale2008-12-18T22:41:00Z2008-12-18T22:41:00Z<p>IMHO, main bottleneck will be the data structures you are going to use for representing the network graph. I have coded a similar application for tracing dependencies between various component versions in a system and graphics was the last thing I had to worry about and I was certainly drawing more than 500 objects with gradient fills for some of them!</p>
<p>If you are getting bogged down, you should checkout using <a href="http://wiki.wxpython.org/IntegratingPyGame" rel="nofollow">PyGame</a> for drawing things.</p>
http://stackoverflow.com/questions/377017/test-if-executable-exists-in-python/379535#3795351Answer by Suraj Barkale for Test if executable exists in Python?Suraj Barkale2008-12-18T22:25:15Z2008-12-18T22:25:15Z<p>Just remember to specify the file extension on windows. Otherwise, you have to write a much complicated <code>is_exe</code> for windows using <code>PATHEXT</code> environment variable. You may just want to use <a href="http://www.raboof.com/projects/findpath/" rel="nofollow">FindPath</a>.</p>
<p>OTOH, why are you even bothering to search for the executable? The operating system will do it for you as part of <code>popen</code> call & will raise an exception if the executable is not found. All you need to do is catch the correct exception for given OS. Note that on Windows, <code>subprocess.Popen(exe, shell=True)</code> will fail silently if <code>exe</code> is not found.</p>
http://stackoverflow.com/questions/378927/what-is-the-best-idiomatic-way-to-check-the-type-of-a-python-variable/379447#37944713Answer by Suraj Barkale for What is the best (idiomatic) way to check the type of a Python variable?Suraj Barkale2008-12-18T21:54:26Z2008-12-18T21:54:26Z<p>What happens if somebody passes a unicode string to your function? Or a class derived from dict? Or a class implementing a dict-like interface? Following code covers first two cases. If you are using Python 2.6 you might want to use <code>collections.Mapping</code> instead of <code>dict</code> as per the <a href="http://www.python.org/dev/peps/pep-3119/" rel="nofollow">ABC PEP</a>.</p>
<pre><code>def value_list(x):
if isinstance(x, dict):
return list(set(x.values()))
elif isinstance(x, basestring):
return [x]
else:
return None
</code></pre>
http://stackoverflow.com/questions/378678/pivotal-suboptimal-decisions-in-the-history-of-software/379373#37937310Answer by Suraj Barkale for Pivotal Suboptimal Decisions in the History of SoftwareSuraj Barkale2008-12-18T21:35:46Z2008-12-18T21:35:46Z<p>Actually the 8088 & 8086 have same memory model and same number of address bits (20). Only difference is width of external data bus which is 8 bit for 8088 & 16 bit for 8086.</p>
<p>I would say that use of inconsistent line endings by different operating systems (\n - UNIX, \r\n - DOS, \r - Mac) was a bad decision. Eventually Apple relented by making \n default for OS-X but Microsoft is stubbornly sticking to \r\n. Even in Vista, Notepad can not properly display a text file using \n as line ending.</p>
<p>Best example of this problem is the <em>ASCII</em> mode of FTP which just adds /r to each /n in a file transferred from a UNIX server to Windows client even though the file originally contained /r/n.</p>
http://stackoverflow.com/questions/368545/how-can-i-stop-a-while-loop/372313#3723130Answer by Suraj Barkale for How can i stop a While loop?Suraj Barkale2008-12-16T19:03:27Z2008-12-16T19:03:27Z<p>I would do it using a for loop as shown below :</p>
<pre><code>def determine_period(universe_array):
tmp = universe_array
for period in xrange(1, 13):
tmp = apply_rules(tmp)
if numpy.array_equal(tmp, universe_array):
return period
return 0
</code></pre>
http://stackoverflow.com/questions/213524/dynamic-splitter-panes/363686#3636861Answer by Suraj Barkale for Dynamic Splitter PanesSuraj Barkale2008-12-12T18:22:52Z2008-12-12T18:22:52Z<p><a href="http://sourceforge.net/projects/dockpanelsuite" rel="nofollow">DockPanel</a> is one painless & open source way to do it.</p>
http://stackoverflow.com/questions/350264/how-can-i-perform-a-reverse-string-search-in-excel-without-using-vba/350336#3503360Answer by Suraj Barkale for How can I perform a reverse string search in Excel without using VBA?Suraj Barkale2008-12-08T18:10:44Z2008-12-08T18:10:44Z<p>There are 3 approaches I can think of:</p>
<ol>
<li>Use a reverse lookup function to get location of the first space from right, use RIGHT to get the answer.</li>
<li>Use a for loop to get location of the last space in text, use RIGHT to get the answer.</li>
<li>Reverse the string, get location of the first space, use LEFT to get the answer and reverse it.</li>
</ol>
<p>Sadly, all these approaches requires a bit of VBA to work.</p>
http://stackoverflow.com/questions/338102/is-there-a-compiler-or-ide-for-c-on-windows-thats-regarded-as-an-industry-standa/338256#3382563Answer by Suraj Barkale for Is there a compiler or IDE for C on Windows that's regarded as an industry standard?Suraj Barkale2008-12-03T18:37:36Z2008-12-03T18:37:36Z<p>I recommend <a href="http://www.codecutter.net/tools/quincy/" rel="nofollow">Quincy</a> when you are just learning to program in C/C++. Simple to use and created for easily trying out small C/C++ programs.</p>
http://stackoverflow.com/questions/58711/how-would-you-design-a-very-pythonic-ui-framework/335443#3354431Answer by Suraj Barkale for How would you design a very "Pythonic" UI framework?Suraj Barkale2008-12-02T21:03:49Z2008-12-02T21:03:49Z<p>Personally, I would try to implement <a href="http://docs.jquery.com/Main_Page" rel="nofollow">JQuery</a> like API in a GUI framework.</p>
<pre><code>class MyWindow(Window):
contents = (
para('Hello World!'),
button('Click Me', id='ok'),
para('Epilog'),
)
def __init__(self):
self['#ok'].click(self.message)
self['para'].hover(self.blend_in, self.blend_out)
def message(self):
print 'You clicked!'
def blend_in(self, object):
object.background = '#333333'
def blend_out(self, object):
object.background = 'WindowBackground'
</code></pre>
http://stackoverflow.com/questions/428774/file-watcher-get-the-process-name-that-created-a-file-in-windows/428788#428788Comment by Suraj Barkale on File Watcher - get the process name that created a file in Windows?Suraj Barkale2009-01-09T16:48:25Z2009-01-09T16:48:25ZActually [Process Monitor][1] is more useful for this.
[1]: <a href="http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx" rel="nofollow">technet.microsoft.com/en-us/sysinternals/…</a>