User Samat Jain - Stack Overflowmost recent 30 from stackoverflow.com2009-11-08T18:54:26Zhttp://stackoverflow.com/feeds/user/14878http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/206154/whats-the-best-soap-client-library-for-python-and-where-is-the-documentation-fo/206964#20696436Answer by Samat Jain for What's the best soap client library for Python, and where is the documentation for it?Samat Jain2008-10-16T00:05:22Z2009-10-01T16:18:38Z<p>Unfortunately, at the moment, I don't think there is a "best" Python SOAP library. Each of the mainstream ones available has its own pros and cons.</p>
<p>Older libraries:</p>
<ul>
<li><a href="http://soapy.sourceforge.net" rel="nofollow">SOAPy</a>: Was the "best," but no longer maintained. Does not work on Python 2.5+</li>
<li><a href="http://pywebsvcs.sourceforge.net" rel="nofollow">ZSI</a>: Very painful to use, and development is slow. Has a module called "SOAPpy", which is different than SOAPy (above).</li>
</ul>
<p>"Newer" libraries:</p>
<ul>
<li><a href="https://fedorahosted.org/suds" rel="nofollow">SUDS</a>: Very Pythonic, and easy to create WSDL-consuming SOAP clients. Creating SOAP servers is a little bit more difficult.</li>
<li><a href="http://github.com/jkp/soaplib" rel="nofollow">soaplib</a>: Creating servers is easy, creating clients a little bit more challenging.</li>
</ul>
<p>Of the above, I've only used SUDS personally, and I liked it a lot.</p>
http://stackoverflow.com/questions/1107940/sizet-can-not-be-found-by-g-4-1-or-others-on-ubuntu-8-1/1108078#1108078-2Answer by Samat Jain for size_t can not be found by g++-4.1 or others on Ubuntu 8.1Samat Jain2009-07-10T06:57:27Z2009-07-10T16:52:30Z<p>Generally, you shouldn't be using C .h files for C++. While you may find an easy way to get away with it, and while a lot of this was allowed in previous versions of g++ and in other compilers, the C++ standard defines size_t to be in cstddef (see section 18.2/table 17). g++ has been only getting more strict.</p>
<p>Remove all the includes paths you've added to your command (they are redundant), and add to the top of your source code if not included:</p>
<pre><code>#include <cstddef>
using namespace std;
</code></pre>
http://stackoverflow.com/questions/1107870/is-gij-gnu-interpreter-for-java-stable-enough-for-commercial-use/1108127#11081274Answer by Samat Jain for Is GIJ (GNU Interpreter for Java) stable enough for commercial use?Samat Jain2009-07-10T07:11:45Z2009-07-10T07:11:45Z<p>gij is very ancient, and while I don't have references I doubt it's reliable enough to support commercial applications. That, and Java 1.4 is a chore to program in.</p>
<p>If your systems administrator is willing to install and support a newer version of Java, it'd probably be best to have them do it.</p>
<p>If the proprietary nature of the Sun JRE concerns you, you should look at <a href="http://openjdk.java.net/" rel="nofollow">OpenJDK</a>. Released under the GPL, it supplants the FSF's efforts with GCJ/GIJ . It's the default version of Java that comes with many open-source Linuxes, such as Debian, Ubuntu, and Fedora. Besides being free, it's also modern---OpenJRE 6 is fully compatible with Sun's JRE6.</p>
http://stackoverflow.com/questions/902056/what-are-the-differences-between-t-mobile-g1-branded-htc-dream-and-googles-adp/903292#9032921Answer by Samat Jain for What are the differences between T-Mobile G1 (branded HTC Dream) and Google's ADP1 (device for developers)?Samat Jain2009-05-24T07:48:32Z2009-05-24T07:48:32Z<p>The <a href="http://android-dls.com/wiki/index.php?title=Android%5FFAQ" rel="nofollow">Unofficial Android FAQ</a> mentions many of the differences between the retail G1 and Android Developer Phone.</p>
http://stackoverflow.com/questions/319279/how-to-validate-ip-address-in-python/330107#3301075Answer by Samat Jain for How to validate IP address in Python?Samat Jain2008-12-01T05:36:54Z2008-12-01T05:36:54Z<p>The <a href="http://pypi.python.org/pypi/IPy/" rel="nofollow">IPy module</a> (a module designed for dealing with IP addresses) will throw a ValueError exception for invalid addresses.</p>
<pre><code>>>> from IPy import IP
>>> IP('127.0.0.1')
IP('127.0.0.1')
>>> IP('277.0.0.1')
Traceback (most recent call last):
...
ValueError: '277.0.0.1': single byte must be 0 <= byte < 256
>>> IP('foobar')
Traceback (most recent call last):
...
ValueError: invalid literal for long() with base 10: 'foobar'
</code></pre>
<p>However, like Dustin's answer, it will accept things like "4" and "192.168" since, as mentioned, these are valid representations of IP addresses.</p>
http://stackoverflow.com/questions/287871/print-in-terminal-with-colors-using-python/293633#2936333Answer by Samat Jain for Print in terminal with colors using python ?Samat Jain2008-11-16T07:31:39Z2008-11-16T07:31:39Z<p>I'm surprised no one has mentioned the <a href="http://pypi.python.org/pypi/termcolor" rel="nofollow">Python termcolor module</a>. Usage is pretty simple:</p>
<pre><code>from termcolor import colored
print colored('hello', 'red'), colored('world', 'green')
</code></pre>
<p>It may not be sophisticated enough, however, for game programming and the "colored blocks" that you want to do...</p>
http://stackoverflow.com/questions/283263/why-download-only-for-apt-get-cron-job/283282#2832826Answer by Samat Jain for why download only for apt-get cron jobSamat Jain2008-11-12T08:03:19Z2008-11-12T08:14:52Z<p>You're operating on a faulty assumption--neither apt-get (nor aptitude) are meant to be run automatically, nor is the Debian packaging system really designed for it. That's why the tools make it difficult.</p>
<p>What happens when a software upgrade breaks because you forgot to update a configuration file? This has happened to me in the past (apache2), and some with severe consequences that prevented the machine from booting (mdadm). What happens when the software brings in dependencies you don't want (i.e. bringing in the entire X11 windowing system, on a server)? Etc, etc...</p>
<p>If you're worried about installing security upgrades automatically, you want to look at the <a href="http://packages.debian.org/lenny/unattended-upgrades" rel="nofollow">unattended-upgrades</a> package. It will download and install packages from the security archive for you.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185877#18587795Answer by Samat Jain for What is the best comment in source code you have ever encountered?Samat Jain2008-10-09T03:49:51Z2008-10-09T04:49:15Z<pre><code>/* Halley's comment */
</code></pre>
http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/99306#993062Answer by Samat Jain for What is the single most effective thing you did to improve your programming skills?Samat Jain2008-09-19T03:30:40Z2008-09-19T03:30:40Z<p>I felt like my turning point from "okay" programmer to "good" programmer occurred during college. Two things, which happened to coincide:</p>
<ol>
<li>Take a compiler construction class (Compilers Construction and Finite Automata), where I built a C compiler</li>
<li>Learn a decent UNIX text editor: I picked vim.</li>
</ol>
http://stackoverflow.com/questions/1107940/sizet-can-not-be-found-by-g-4-1-or-others-on-ubuntu-8-1/1108078#1108078Comment by Samat Jain on size_t can not be found by g++-4.1 or others on Ubuntu 8.1Samat Jain2009-07-10T16:28:38Z2009-07-10T16:28:38ZPlease cite a reference on why you think the C++ equivalents are unnecessary. Are all these C++ compiler developers really just wasting their time?http://stackoverflow.com/questions/206154/whats-the-best-soap-client-library-for-python-and-where-is-the-documentation-fo/206964#206964Comment by Samat Jain on What's the best soap client library for Python, and where is the documentation for it?Samat Jain2009-05-21T20:16:41Z2009-05-21T20:16:41ZSOAPy and SOAPpy are actually different. I've edited to clarify, and turned the post into a community wiki.http://stackoverflow.com/questions/687/keyboard-for-programmers/14635#14635Comment by Samat Jain on Keyboard for programmersSamat Jain2008-11-12T04:13:16Z2008-11-12T04:13:16ZI love how this keyboard is advertised as being "tactical"...