User gimel - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T07:36:03Z http://stackoverflow.com/feeds/user/6491 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1818046/what-does-m-d-mean-in-decimalm-d-exactly/1818063#1818063 1 Answer by gimel for What does M,D mean in decimal(M,D) exactly? gimel 2009-11-30T06:00:41Z 2009-11-30T06:00:41Z <p>The <a href="http://dev.mysql.com/doc/refman/5.0/en/precision-math-decimal-changes.html" rel="nofollow">doc</a> says:</p> <blockquote> <p>The declaration syntax for a DECIMAL column remains DECIMAL(M,D), although the range of values for the arguments has changed somewhat:</p> <ul> <li><p>M is the maximum number of digits (the precision). It has a range of 1 to 65. This introduces a possible incompatibility for older applications, because previous versions of MySQL allow a range of 1 to 254. (The precision of 65 digits actually applies as of MySQL 5.0.6. From 5.0.3 to 5.0.5, the precision is 64 digits.)</p></li> <li><p>D is the number of digits to the right of the decimal point (the scale). It has a range of 0 to 30 and must be no larger than M.</p></li> </ul> </blockquote> http://stackoverflow.com/questions/1802480/how-to-identify-whether-a-variable-is-a-class-or-an-object/1802533#1802533 8 Answer by gimel for How to identify whether a variable is a class or an object gimel 2009-11-26T09:19:56Z 2009-11-26T10:06:41Z <p>Use the <a href="http://docs.python.org/library/inspect.html#module-inspect" rel="nofollow">inspect module</a>.</p> <blockquote> <p>The inspect module provides several useful functions to help get information about live objects such as modules, classes, methods, functions, tracebacks, frame objects, and code objects. For example, it can help you examine the contents of a class, retrieve the source code of a method, extract and format the argument list for a function, or get all the information you need to display a detailed traceback.</p> </blockquote> <p>For example, the <a href="http://docs.python.org/library/inspect.html#inspect.isclass" rel="nofollow"><code>inspect.isclass()</code></a> function returns true if the object is a class:</p> <pre><code>&gt;&gt;&gt; import inspect &gt;&gt;&gt; inspect.isclass(inspect) False &gt;&gt;&gt; inspect.isclass(inspect.ArgInfo) True &gt;&gt;&gt; </code></pre> http://stackoverflow.com/questions/1781715/my-software-is-consuming-lot-of-memory-any-tools-thatll-help-me-in-knowing-what/1781768#1781768 0 Answer by gimel for My software is consuming lot of memory. Any tools that'll help me in knowing whats causing it? gimel 2009-11-23T08:22:32Z 2009-11-23T08:22:32Z <p>Try <a href="http://technet.microsoft.com/en-us/sysinternals/dd535533.aspx" rel="nofollow">VMMAP</a>:</p> <blockquote> <p>VMMap is a process virtual and physical memory analysis utility. It shows a breakdown of a process's committed virtual memory types as well as the amount of physical memory (working set) assigned by the operating system to those types. Besides graphical representations of memory usage, VMMap also shows summary information and a detailed process memory map. Powerful filtering and refresh capabilities allow you to identify the sources of process memory usage and the memory cost of application features.</p> <p>VMMap is the ideal tool for developers wanting to understand and optimize their application's memory resource usage.</p> </blockquote> http://stackoverflow.com/questions/1779553/is-jet-database-engine-included-in-windows-xp-vista-and-windows7/1779574#1779574 1 Answer by gimel for Is Jet database engine included in Windows xp, vista and Windows7? gimel 2009-11-22T18:47:47Z 2009-11-22T18:47:47Z <p>See <a href="http://stackoverflow.com/questions/506136/why-should-i-use-sqlite-over-a-jet-database">why-should-i-use-sqlite-over-a-jet-database</a>, and try both.</p> http://stackoverflow.com/questions/1765394/troubles-with-python-list-and-file-saving/1765585#1765585 1 Answer by gimel for Troubles with python list and file saving gimel 2009-11-19T18:38:55Z 2009-11-20T09:39:49Z <p>If your modem connection is a <a href="http://docs.python.org/library/socket.html#module-socket" rel="nofollow">socket</a>, make sure your socket is functioning by calling <code>getADC()</code> and <code>AcquiredPosition()</code> directly from the interactive interpreter. Just drop the <code>while(1)</code> loop in a function (<code>main()</code> is the common practice), then import the module from the interactive prompt.</p> <p>Your example is missing the initialization of the <a href="http://docs.python.org/library/socket.html#module-socket" rel="nofollow"><code>socket</code></a> object, <code>MDM</code>. Make sure it is correctly set up to the appropriate address, with code like:</p> <pre><code>import socket MDM = socket.socket(socket.AF_INET, socket.SOCK_STREAM) MDM.connect((HOST, PORT)) </code></pre> <p>If <code>MDM</code> doesn't refer to a TCP socket, you can still try calling the mentioned methods interactively.</p> http://stackoverflow.com/questions/1728266/seeking-a-high-level-library-for-socket-programming-java-or-python/1728348#1728348 0 Answer by gimel for Seeking a High-Level Library for Socket Programming (Java or Python) gimel 2009-11-13T10:18:18Z 2009-11-13T10:18:18Z <p>See <a href="http://csciun1.mala.bc.ca:8080/~wesselsd/guides/ActionScript.html" rel="nofollow">"A Quick Guide to ActionScript 3 and Flash Programming"</a>. It has a detailed example of an ActionScript client code using sockets to communicate with a Python server (code included). Not what anyone will call <em>high-level</em>, it makes use of the basic Python socket module for communication. </p> <p>(Note: the Python server example is <em>not pythonic</em>. After getting the general idea of using sockets in Python, write something simpler and NO <code>from socket import *</code> )</p> http://stackoverflow.com/questions/1724473/how-could-i-print-out-the-nth-letter-of-the-alphabet-in-python/1724536#1724536 11 Answer by gimel for How could I print out the nth letter of the alphabet in Python? gimel 2009-11-12T18:57:28Z 2009-11-12T18:57:28Z <p>ASCII math aside, you don't have to type your letters table by hand. The <a href="http://docs.python.org/library/string.html#string-constants" rel="nofollow">string constants</a> in the <code>string module</code> provide what you were looking for.</p> <pre><code>&gt;&gt;&gt; import string &gt;&gt;&gt; string.ascii_uppercase[5] 'F' &gt;&gt;&gt; </code></pre> http://stackoverflow.com/questions/1699856/c-or-other-net-equivalents-of-core-python-modules-for-ironpython/1700001#1700001 1 Answer by gimel for C# or other .net equivalents of core python modules for IronPython? gimel 2009-11-09T09:37:13Z 2009-11-09T09:56:23Z <p>The <code>os</code> (and <code>shutil</code> ) replacements in .NET are in the <a href="http://msdn.microsoft.com/en-us/library/system.io.aspx" rel="nofollow"><code>System.IO</code> namespace</a>.</p> <blockquote> <p>The System.IO namespace contains types that allow reading and writing to files and data streams, and types that provide basic file and directory support.</p> </blockquote> <p>For most of your file file operations, try the methods of the <a href="http://msdn.microsoft.com/en-us/library/system.io.file%5Fmembers.aspx" rel="nofollow"><code>System.IO.File</code> class</a>. Directory information is available via the <a href="http://msdn.microsoft.com/en-us/library/system.io.file%5Fmembers.aspx" rel="nofollow"><code>System.IO.Directory</code> class</a>.</p> <p>I'm not aware of a native <code>os.walk</code> alternative, try using the <code>GetDirectories</code> and <code>GetFiles</code> methods to construct your own directory walker. There is an example <em>RecursiveFileProcessor</em> in the <a href="http://msdn.microsoft.com/en-us/library/c1sez4sc.aspx" rel="nofollow"><code>Directory.GetDirectories(String)</code> doc</a>.</p> <p>A simple way to retrieve the user name of the person who is currently logged on, could be the <a href="http://msdn.microsoft.com/en-us/library/system.environment.username.aspx" rel="nofollow"><code>System.Environment.UserName</code></a> property.</p> <p>A simple interactive IronPython example:</p> <pre><code>&gt;&gt;&gt; import clr &gt;&gt;&gt; from System import Environment &gt;&gt;&gt; Environment.UserName 'gimel' &gt;&gt;&gt; from System import IO &gt;&gt;&gt; IO.Directory.GetCreationTimeUtc('c:/') &lt;System.DateTime object at 0x000000000000002B [02/07/2006 12:53:25]&gt; &gt;&gt;&gt; IO.Directory.GetLastWriteTimeUtc('c:/') &lt;System.DateTime object at 0x000000000000002C [09/11/2009 08:15:32]&gt; &gt;&gt;&gt; IO.Directory.GetDirectories('C:/').Count 24 &gt;&gt;&gt; help(IO.File.Copy) Help on built-in function Copy: Copy(...) Copy(str sourceFileName, str destFileName, bool overwrite) Copies an existing file to a new file. Overwriting a file of the same name is allowed. ... </code></pre> http://stackoverflow.com/questions/1686280/convert-html-having-javascript-to-pdf-using-java-javascript/1686360#1686360 0 Answer by gimel for convert HTML ( having Javascript ) to PDF using java / javascript gimel 2009-11-06T09:07:22Z 2009-11-06T09:07:22Z <p>Using the browser's <code>Print...</code> <em>menu item</em>, you can utilize a <em>PDF Printer Driver</em>, like <a href="http://en.pdfforge.org/pdfcreator" rel="nofollow">PDFCreator</a>. This way any JavaScript included in the page is processed by the browser when the page is rendered.</p> <blockquote> <p><a href="http://en.pdfforge.org/pdfcreator" rel="nofollow"><strong>PDFCreator</strong></a> is a free tool to create PDF files from nearly any Windows application.</p> <ul> <li>Create PDFs from any program that is able to print</li> </ul> </blockquote> http://stackoverflow.com/questions/1553748/reversing-strings-in-right-to-left-bidirectional-languages-in-c/1667766#1667766 0 Answer by gimel for Reversing Strings in Right To Left (BiDirectional) Languages in C# gimel 2009-11-03T14:42:43Z 2009-11-03T14:42:43Z <p><a href="http://en.pdfforge.org/pdfcreator" rel="nofollow">PDFCreator</a> is a free tool to create PDF files from nearly any Windows application. It installs as a Windows printer driver, such that it can be used by any Windows program that has a print functionality.</p> <p>You can treat your input as simple text strings to be printed, and maybe using the <code>print</code> menu option of <code>Notepad</code> will create the correct PDF.</p> <p>If you want to dive a little deeper into right to left <code>C#</code> printing, use <a href="http://msdn.microsoft.com/en-us/library/system.drawing.stringformatflags.aspx" rel="nofollow"><code>StringFormatFlags.DirectionRightToLeft</code></a> string format with <a href="http://msdn.microsoft.com/en-us/library/system.drawing.graphics.drawstring.aspx" rel="nofollow"><code>Graphics.DrawString()</code></a> calls.</p> <p>A snippet from a <code>PrintPage Event Handler</code>:</p> <pre><code>lineFmt = new StringFormat(StringFormatFlags.DirectionRightToLeft); e.Graphics.DrawString(textToPrint, font, Brushes.Black, startX, ypos, lineFmt); </code></pre> http://stackoverflow.com/questions/1650160/convert-to-amp-in-python/1650176#1650176 4 Answer by gimel for Convert & to &amp; in Python gimel 2009-10-30T14:36:11Z 2009-10-30T14:36:11Z <p><a href="http://docs.python.org/library/cgi.html#cgi.escape" rel="nofollow"><code>cgi.escape</code></a> to the rescue:</p> <blockquote> <p><code>cgi.escape(s[, quote])</code></p> <p>Convert the characters '&amp;', '&lt;' and '>' in string s to HTML-safe sequences. Use this if you need to display text that might contain such characters in HTML. If the optional flag quote is true, the quotation mark character ('"') is also translated; this helps for inclusion in an HTML attribute value, as in . If the value to be quoted might include single- or double-quote characters, or both, consider using the quoteattr() function in the xml.sax.saxutils module instead.</p> </blockquote> <p>Quick interactive check:</p> <pre><code>&gt;&gt;&gt; import cgi &gt;&gt;&gt; cgi.escape('&lt;&amp;&gt;') '&amp;lt;&amp;amp;&amp;gt;' &gt;&gt;&gt; </code></pre> http://stackoverflow.com/questions/1649576/is-there-a-subversion-appliance-toolset-for-the-enterprise/1649715#1649715 2 Answer by gimel for Is there a subversion appliance / toolset for the enterprise gimel 2009-10-30T13:02:28Z 2009-10-30T13:02:28Z <p><a href="http://visualsvn.com/server/" rel="nofollow">VisualSVN Server</a> answers most of your requirements.</p> <p>From the web promo page (my emphasis):</p> <blockquote> <p>Zero Friction Setup and Maintenance</p> <ul> <li>One package with the latest versions of all required components</li> <li><strong>Next-Next-Finish installation</strong></li> <li>Smooth upgrade to new version</li> </ul> <p>Enterprise-ready Server for Windows Platform</p> <ul> <li>Stable and secure Apache-based Windows service</li> <li>Support for SSL connections</li> <li>SSL certificate management</li> <li><strong>Active Directory authentication and authorization with groups support</strong></li> <li>Logging to the Windows Event Log</li> <li>Access and operational logging (Enterprise edition only)</li> <li>Based on open protocols and standards</li> <li>Configured by Subversion committer to work correctly out-of-the-box</li> </ul> </blockquote> http://stackoverflow.com/questions/1649464/writing-to-a-com-port-with-net/1649517#1649517 0 Answer by gimel for Writing to a COM port with .Net gimel 2009-10-30T12:27:19Z 2009-10-30T12:27:19Z <p>See the <a href="http://msdn.microsoft.com/en-us/library/system.io.ports.aspx" rel="nofollow"><code>System.IO.Ports</code></a> namespace docs:</p> <blockquote> <p>The System.IO.Ports namespace contains classes for controlling serial ports. The most important class, SerialPort, provides a framework for synchronous and event-driven I/O, access to pin and break states, and access to serial driver properties. It can be used to wrap a Stream objects, allowing the serial port to be accessed by classes that use streams.</p> <p>The namespace includes enumerations that simplify the control of serial ports, such as Handshake, Parity, SerialPinChange, and StopBits.</p> </blockquote> <p>The <a href="http://msdn.microsoft.com/en-us/library/system.io.ports.serialport.aspx" rel="nofollow"><code>SerialPort</code> class</a> documentation contains a detailed usage exmaple.</p> http://stackoverflow.com/questions/1626403/python-email-lib-how-to-remove-attachment-from-existing-message/1626677#1626677 0 Answer by gimel for Python email lib - How to remove attachment from existing message? gimel 2009-10-26T18:56:37Z 2009-10-26T18:56:37Z <p><a href="http://docs.python.org/library/email.message.html#email.message.Message.set%5Fpayload" rel="nofollow"><code>set_payload()</code></a> may help.</p> <blockquote> <p><code>set_payload(payload[, charset])</code></p> <p>Set the entire message object’s payload to payload. It is the client’s responsibility to ensure the payload invariants.</p> </blockquote> <p>A quick interactive example:</p> <pre><code>&gt;&gt;&gt; from email import mime,message &gt;&gt;&gt; m1 = message.Message() &gt;&gt;&gt; t1=email.MIMEText.MIMEText('t1\r\n') &gt;&gt;&gt; print t1.as_string() Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit t1 &gt;&gt;&gt; m1.attach(t1) &gt;&gt;&gt; m1.is_multipart() True &gt;&gt;&gt; m1.get_payload() [&lt;email.mime.text.MIMEText instance at 0x00F585A8&gt;] &gt;&gt;&gt; t2=email.MIMEText.MIMEText('t2\r\n') &gt;&gt;&gt; m1.set_payload([t2]) &gt;&gt;&gt; print m1.get_payload()[0].as_string() Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit t2 &gt;&gt;&gt; </code></pre> http://stackoverflow.com/questions/1618050/c-as-first-language-for-windows-game-programming/1618115#1618115 3 Answer by gimel for C++ as first language for Windows game programming? gimel 2009-10-24T14:12:51Z 2009-10-24T14:12:51Z <p>Python is good at game programming. See <a href="http://stackoverflow.com/questions/1544903/i-want-to-learn-game-development-which-language-should-i-use">i-want-to-learn-game-development-which-language-should-i-use</a>. Consider learning <a href="http://pygame.org/wiki/about" rel="nofollow">Pygame</a>.</p> <blockquote> <p>Pygame is a set of Python modules designed for writing games. Pygame adds functionality on top of the excellent SDL library. This allows you to create fully featured games and multimedia programs in the python language. Pygame is highly portable and runs on nearly every platform and operating system. Pygame itself has been downloaded millions of times, and has had millions of visits to its website. </p> </blockquote> http://stackoverflow.com/questions/1590477/python-deprecation-warnings-with-monostate-new-can-someone-explain-why/1590586#1590586 0 Answer by gimel for Python Deprecation Warnings with Monostate __new__ -- Can someone explain why? gimel 2009-10-19T19:22:52Z 2009-10-19T19:34:46Z <p>See <a href="http://stackoverflow.com/questions/1363839/python-singleton-object-instantiation">python-singleton-object-instantiation</a>, and note <a href="http://stackoverflow.com/users/95810/alex-martelli">Alex Martelli's</a> singleton example:</p> <pre><code>class Singleton(object): __instance = None def __new__(cls): if cls.__instance == None: __instance = type.__new__(cls) __instance.name = "The one" return __instance </code></pre> <p>The <code>__new__ deprecation</code> question was <a href="http://mail.python.org/pipermail/python-dev/2008-February/076854.html" rel="nofollow">answered by Guido</a>:</p> <blockquote> <p>The message means just what it says. :-) There's no point in calling object.<strong>new</strong>() with more than a class parameter, and any code that did so was just dumping those args into a black hole.</p> <p>The only time when it makes sense for object.<strong>new</strong>() to ignore extra arguments is when it's not being overridden, but <strong>init</strong> <em>is</em> being overridden -- then you have a completely default <strong>new</strong> and the checking of constructor arguments is relegated to <strong>init</strong>.</p> <p>The purpose of all this is to catch the error in a call like object(42) which (again) passes an argument that is not used. This is often a symptom of a bug in your program.</p> <p>--Guido</p> </blockquote> http://stackoverflow.com/questions/1587674/how-to-identify-black-or-dark-images-in-c/1587921#1587921 1 Answer by gimel for How to identify black or dark images in C#? gimel 2009-10-19T10:19:30Z 2009-10-19T10:19:30Z <p>You can use the <a href="http://www.aforgenet.com/framework/" rel="nofollow">AForge.NJET</a> framework which includes Image Processing support. For example, see the <a href="http://www.aforgenet.com/framework/docs/html/16ee3168-882c-a0e9-eb00-e881cc81992a.htm" rel="nofollow"><code>ImageStatisticsHSL</code> Class</a>. Choose a proper <code>Saturation</code> value, or use the <code>Luminance</code> histogram.</p> <blockquote> <p>The class is used to accumulate statistical values about images, like histogram, mean, standard deviation, etc. for each HSL color channel.</p> <p>The class accepts 24 and 32 bpp color images for processing.</p> <p>Sample usage C#:</p> </blockquote> <pre><code>// gather statistics ImageStatisticsHSL stat = new ImageStatisticsHSL( image ); // get saturation channel's histogram ContinuousHistogram saturation = stat.Saturation; // check mean value of saturation channel if ( saturation.Mean &gt; 0.5 ) { // do further processing } </code></pre> http://stackoverflow.com/questions/868568/cpu-bound-and-i-o-bound/868662#868662 0 Answer by gimel for CPU bound and I/O bound? gimel 2009-05-15T13:26:11Z 2009-10-17T12:54:13Z <p>Another way to phrase the same idea:</p> <ul> <li><p>If speeding up the CPU doesn't speed up your program, it may be <a href="http://en.wikipedia.org/wiki/Input/output" rel="nofollow">I/O</a> bound.</p></li> <li><p>If speeding up the I/O (e.g. using a faster disk) doesn't help, your program may be CPU bound.</p></li> </ul> <p>(I used "may be" because you need to take other resources into account. Memory is one example.)</p> http://stackoverflow.com/questions/1556158/socket-programming-for-windows-c-c/1556286#1556286 4 Answer by gimel for Socket Programming for Windows C/C++ gimel 2009-10-12T18:55:24Z 2009-10-12T18:55:24Z <p><a href="http://beej.us/guide/bgnet/" rel="nofollow">Beej's Guide to Network Programming</a> is recommended in a number of SO replies, for example <a href="http://stackoverflow.com/questions/169121/binding-a-socket-to-port-80-in-ansi-c">binding-a-socket-to-port-80-in-ansi-c</a>. Try going over the examples, and maybe you'll find that it's not "too complicated". Windows <code>winsock</code> is highly compatible with the standard socket library. The tutorial contains instructions for <a href="http://beej.us/guide/bgnet/output/html/multipage/intro.html#windows" rel="nofollow">programming sockets under Windows</a>.</p> http://stackoverflow.com/questions/1555731/how-to-take-whitespace-in-input-in-c/1555764#1555764 0 Answer by gimel for How to Take whitespace in Input in C gimel 2009-10-12T17:06:23Z 2009-10-12T17:59:18Z <p>See <a href="http://linux.die.net/man/3/gets" rel="nofollow"><code>fgets()</code></a></p> <blockquote> <p><code>fgets()</code> reads in at most one less than size characters from stream and stores them into the buffer pointed to by s. Reading stops after an EOF or a newline. If a newline is read, it is stored into the buffer. A '\0' is stored after the last character in the buffer.</p> </blockquote> <pre><code>char *fgets(char *s, int size, FILE *stream); </code></pre> <p>Further detail available in many SO questions, for example <a href="http://stackoverflow.com/questions/782136/input-string-through-scanf">input-string-through-scanf</a>.</p> <p>(Due to popular demand, refrence to <code>gets()</code> was removed)</p> http://stackoverflow.com/questions/1534070/python-how-to-show-results-on-a-web-page/1536548#1536548 0 Answer by gimel for python: how to show results on a web page? gimel 2009-10-08T08:57:43Z 2009-10-08T08:57:43Z <p>A <em>current</em> method of creating simple (one-of )<code>Python</code> web page server is the <a href="http://docs.python.org/library/wsgiref.html#module-wsgiref" rel="nofollow"><code>wsgiref</code> module</a>.</p> <blockquote> <p>wsgiref is a reference implementation of the WSGI specification that can be used to add WSGI support to a web server or framework.</p> </blockquote> <p>See some <a href="http://stackoverflow.com/search?q=%5Bpython%5D+wsgiref">SO qusetions</a> (<a href="http://stackoverflow.com/search?q=%5Bpython%5D+wsgiref">http://stackoverflow.com/search?q=%5Bpython%5D+wsgiref</a>) for some code examples and more suggestions.</p> <p>The <a href="http://docs.python.org/library/wsgiref.html#examples" rel="nofollow"><code>wsgiref</code> example</a> is a good place to start:</p> <pre><code>from wsgiref.simple_server import make_server def hello_world_app(environ, start_response): status = '200 OK' # HTTP Status headers = [('Content-type', 'text/plain')] # HTTP Headers start_response(status, headers) # The returned object is going to be printed return ["Hello World"] httpd = make_server('', 8000, hello_world_app) print "Serving on port 8000..." # Serve until process is killed httpd.serve_forever() </code></pre> http://stackoverflow.com/questions/1524126/how-to-print-a-list-more-nicely/1524333#1524333 1 Answer by gimel for How to print a list more nicely? gimel 2009-10-06T08:40:54Z 2009-10-06T08:40:54Z <p>See <a href="http://stackoverflow.com/questions/171662/formatting-a-list-of-text-into-columns">formatting-a-list-of-text-into-columns</a>, </p> <p>A general solution, handles any number of columns and odd lists. Tab characters separate columns, using generator expressions to save space.</p> <pre><code>def fmtcols(mylist, cols): lines = ("\t".join(mylist[i:i+cols]) for i in xrange(0,len(mylist),cols)) return '\n'.join(lines) </code></pre> http://stackoverflow.com/questions/1519490/is-git-written-in-c-or-c/1519528#1519528 2 Answer by gimel for Is git written in C or C++? gimel 2009-10-05T11:28:10Z 2009-10-05T11:28:10Z <p>In keeping with Open Source tradition, the <a href="http://github.com/git/git" rel="nofollow">GIT source</a> is easily accessible online. You can read the source from your browser and verify that it's in <code>C</code>.</p> http://stackoverflow.com/questions/1518659/python-and-indentation-having-touble-getting-started/1518670#1518670 3 Answer by gimel for Python and indentation, having touble getting started. gimel 2009-10-05T07:27:16Z 2009-10-05T09:32:18Z <p>Learn about the <a href="http://docs.python.org/reference/simple%5Fstmts.html#the-pass-statement" rel="nofollow"><code>pass</code> statement</a>, <code>main</code> is usually not part of the class.</p> <p>A global (module level) <code>main()</code> function is simpler than an <code>Alarm.main()</code> class method. Usually, <code>main()</code> functions come at module level.</p> <pre><code>class Alarm: def timer(): pass def main(): print ("Timer has Started") main() </code></pre> http://stackoverflow.com/questions/1515850/how-to-run-both-python-2-6-and-3-0-on-the-same-windows-xp-box/1515859#1515859 7 Answer by gimel for how to run both python 2.6 and 3.0 on the same windows XP box? gimel 2009-10-04T07:51:59Z 2009-10-05T05:58:17Z <p>No problem, each version is installed in its own directory. On my Windows box, I have <code>C:\Python26\</code> and <code>C:\Python31\</code>. The <em>Start Menu</em> items are also distinct. Just use the standard installers from the Python Programming Language <a href="http://www.python.org/download/" rel="nofollow">Official Website</a>, or the ready-to-install distributions from <a href="http://www.activestate.com/activepython/" rel="nofollow">ActiveState</a>.</p> <p>A direct way to select the wanted version is to name it explicitly on the command line.</p> <pre><code>C:\&gt; C:\Python25\python ver.py 2.5.4 (r254:67916, Dec 23 2008, 15:10:54) [MSC v.1310 32 bit (Intel)] C:\&gt; C:\Python31\python ver.py 3.1.1 (r311:74483, Aug 17 2009, 17:02:12) [MSC v.1500 32 bit (Intel)] </code></pre> <p>Where <code>ver.py</code> is:</p> <pre><code>import sys print (sys.version) </code></pre> http://stackoverflow.com/questions/1514104/whats-the-best-book-to-learn-python-basics/1514117#1514117 1 Answer by gimel for What's the best book to learn python basics? gimel 2009-10-03T15:52:16Z 2009-10-03T15:52:16Z <p>See <a href="http://stackoverflow.com/questions/686301/python-book-to-buy">python-book-to-buy</a> and many similar questions.</p> http://stackoverflow.com/questions/1510134/need-help-with-a-regular-expression-parser-c/1510342#1510342 0 Answer by gimel for Need help with a regular expression parser - C# gimel 2009-10-02T15:42:08Z 2009-10-02T15:42:08Z <p>A <a href="http://msdn.microsoft.com/en-us/library/system.text.regularexpressions.regex.aspx" rel="nofollow"><code>Regex</code></a> in <code>.NET</code> handles <em>Unicode</em> character strings. When dealing with binary data bytes, a <code>Regex</code> will need some form of decoding into <em>Unicode</em>. Data kept as byte arrays is not fitting for <code>Regex</code> use. Either find a meaningful (for your data) <a href="http://msdn.microsoft.com/en-us/library/system.text.encoding.aspx" rel="nofollow"><code>Encoding</code></a>, or forget the regexp engine.</p> http://stackoverflow.com/questions/1483108/regex-for-character-appearing-at-most-once/1483156#1483156 5 Answer by gimel for regex for character appearing at most once gimel 2009-09-27T09:03:58Z 2009-09-27T09:03:58Z <p>No regexp is needed, see <a href="http://docs.python.org/library/stdtypes.html#str.count" rel="nofollow"><code>str.count()</code></a>:</p> <blockquote> <p><code>str.count(sub[, start[, end]])</code></p> <p>Return the number of non-overlapping occurrences of substring sub in the range [start, end]. Optional arguments start and end are interpreted as in slice notation.</p> </blockquote> <pre><code>&gt;&gt;&gt; "A.B.C.D".count(".") 3 &gt;&gt;&gt; "A/B.C/D".count(".") 1 &gt;&gt;&gt; "A/B.C/D".count(".") == 1 True &gt;&gt;&gt; </code></pre> http://stackoverflow.com/questions/1477740/c-file-create-cant-delete-file-afterwards/1477851#1477851 0 Answer by gimel for C# File.Create , can't delete file afterwards... gimel 2009-09-25T15:05:15Z 2009-09-25T15:11:34Z <p>See <a href="http://msdn.microsoft.com/en-us/library/d62kzs03.aspx" rel="nofollow"><code>System.IO.File.Create(String)</code> Method</a> paramter and return value description </p> <blockquote> <p>Parameters</p> <p>path Type: <code>System.String</code> The path and name of the file to create.</p> <p>Return Value</p> <p>Type: <code>System.IO.FileStream</code></p> <p>A <code>FileStream</code> that provides read/write access to the file specified in path.</p> </blockquote> <p>The <code>FileStream</code> return value is there for IO access to the created file. If you are not interested in writing (or reading) the newly created file, <a href="http://msdn.microsoft.com/en-us/library/system.io.filestream.close.aspx" rel="nofollow">close the stream</a>. That is what the <code>using</code> block is ensuring.</p> http://stackoverflow.com/questions/1466917/can-sap-work-with-python/1467136#1467136 8 Answer by gimel for Can SAP work with Python? gimel 2009-09-23T16:24:26Z 2009-09-23T16:32:32Z <p><a href="http://pysaprfc.sourceforge.net/" rel="nofollow">Python SAP RFC module</a> seems inactive - <a href="http://pysaprfc.cvs.sourceforge.net/viewvc/pysaprfc/pysaprfc/" rel="nofollow">last (insignificant ) commit</a> 2 years ago - but may serve you:</p> <blockquote> <p>Pysaprfc is a wrapper around SAP librfc (librfc32.dll on Windows, librfccm.so or librfc.so on Linux). It uses the excellent ctypes extension package by Thomas Heller to access librfc and to define SAP compatible datatypes. </p> </blockquote> <p>Modern SAP versions go the <a href="http://www.sdn.sap.com/irj/sdn/webservices" rel="nofollow"><code>Web Service</code> way</a> - you could build a <code>SAP Web Service</code> and consume it from <code>Python</code>.</p> <blockquote> <p>With SAP NetWeaver, developers can connect applications and data sources to integrate processes using Web services.</p> <p>In particular, developers can use one infrastructure to define, implement, and use Web services in an industry standards based way. SAP NetWeaver supports synchronous, asynchronous, stateful and stateless web service models - enabling developers to support different integration scenarios.</p> </blockquote> <p><a href="http://www.piersharding.com/download/python/sapnwrfc/" rel="nofollow"><code>sapnwrfc</code></a> supports this <code>SAP NetWeaver</code> functionality, <a href="http://pypi.python.org/pypi/sapnwrfc/" rel="nofollow">supersedes</a> the older RFC SDK, and is actively maintained.</p> http://stackoverflow.com/questions/1782033/convert-perl-script-to-python-dedupe-2-files-based-on-hash-keys/1782076#1782076 Comment by gimel on Convert Perl script to Python: dedupe 2 files based on hash keys gimel 2009-11-23T10:01:16Z 2009-11-23T10:01:16Z Better to use readlines() instead of read().split(). Unique lines in file2 are file2-file1 (set difference). Using | yields set combination, all lines in both files as a set. http://stackoverflow.com/questions/1765394/troubles-with-python-list-and-file-saving/1765585#1765585 Comment by gimel on Troubles with python list and file saving gimel 2009-11-20T09:35:35Z 2009-11-20T09:35:35Z Thanks. Of course no sockets are implied in the question. Just a duck. http://stackoverflow.com/questions/1728266/seeking-a-high-level-library-for-socket-programming-java-or-python/1728348#1728348 Comment by gimel on Seeking a High-Level Library for Socket Programming (Java or Python) gimel 2009-11-13T10:25:14Z 2009-11-13T10:25:14Z You're welcome. See <a href="http://stackoverflow.com/questions/1157245/creating-a-board-game-simulator-python-pygame" rel="nofollow" title="creating a board game simulator python pygame">stackoverflow.com/questions/1157245/&hellip;</a> for a discussion of communication strategy. Keep it simple. http://stackoverflow.com/questions/1642159/whats-the-most-elegant-way-to-concatenate-a-list-of-values-with-delimiter-in-jav Comment by gimel on What's the most elegant way to concatenate a list of values with delimiter in Java? gimel 2009-10-29T08:08:05Z 2009-10-29T08:08:05Z See <a href="http://stackoverflow.com/questions/205555/the-most-sophisticated-way-for-creating-comma-separated-strings-from-a-collection/205712#205712" rel="nofollow" title="the most sophisticated way for creating comma separated strings from a collection">stackoverflow.com/questions/205555/&hellip;</a> http://stackoverflow.com/questions/1620363/what-is-a-light-python-library-that-can-eliminate-html-tags-and-only-text/1620417#1620417 Comment by gimel on What is a light python library that can eliminate HTML tags? (and only text) gimel 2009-10-25T10:37:40Z 2009-10-25T10:37:40Z Many SO discussions touch this parser, <a href="http://stackoverflow.com/questions/tagged/beautifulsoup" rel="nofollow">stackoverflow.com/questions/tagged/&hellip;</a> http://stackoverflow.com/questions/1590477/python-deprecation-warnings-with-monostate-new-can-someone-explain-why/1590586#1590586 Comment by gimel on Python Deprecation Warnings with Monostate __new__ -- Can someone explain why? gimel 2009-10-20T06:13:01Z 2009-10-20T06:13:01Z Guido explicitly says that only <b>init</b> is required to check constructor arguments. http://stackoverflow.com/questions/1555731/how-to-take-whitespace-in-input-in-c/1555764#1555764 Comment by gimel on How to Take whitespace in Input in C gimel 2009-10-12T18:00:10Z 2009-10-12T18:00:10Z Agree. gets() reference withdrawn. http://stackoverflow.com/questions/1518659/python-and-indentation-having-touble-getting-started/1518670#1518670 Comment by gimel on Python and indentation, having touble getting started. gimel 2009-10-05T09:29:22Z 2009-10-05T09:29:22Z Well, the question was obviously a beginner's, and a global (module level) main() function is simpler than an Alarm.main() class method. Usually, main() functions come at module level. http://stackoverflow.com/questions/1515850/how-to-run-both-python-2-6-and-3-0-on-the-same-windows-xp-box/1515859#1515859 Comment by gimel on how to run both python 2.6 and 3.0 on the same windows XP box? gimel 2009-10-04T08:50:36Z 2009-10-04T08:50:36Z Look into using a modified %PATH% env variable for the different environments. Maybe just c:\python26\python myprog.py http://stackoverflow.com/questions/1508406/modpython-produces-no-output Comment by gimel on Mod_python produces no output gimel 2009-10-02T09:58:38Z 2009-10-02T09:58:38Z Try modifying the Apache &lt;Directory&gt; config section to point to the source directory, &lt;Directory /var/www/vhosts/localhost/httpdocs&gt; http://stackoverflow.com/questions/1473103/install-python-for-windows/1473122#1473122 Comment by gimel on Install Python for Windows gimel 2009-09-24T17:39:17Z 2009-09-24T17:39:17Z Active Python is a CPython package http://stackoverflow.com/questions/1466917/can-sap-work-with-python/1468422#1468422 Comment by gimel on Can SAP work with Python? gimel 2009-09-24T04:54:14Z 2009-09-24T04:54:14Z The original question is not very clear and your interpretation is highly appropriate. SAP installations in the field do not use SAP MaxDB, so I guessed at a somewhat different meaning. http://stackoverflow.com/questions/1426241/problem-configparser-in-python/1426477#1426477 Comment by gimel on Problem configparser in python gimel 2009-09-22T18:28:43Z 2009-09-22T18:28:43Z You mean the ConfigParser bit? post input and error message or results. http://stackoverflow.com/questions/1450874/setting-a-colour-scale-in-ipython/1450966#1450966 Comment by gimel on Setting a colour scale in ipython gimel 2009-09-20T15:38:58Z 2009-09-20T15:38:58Z See added links to a python library that can generate color tables. http://stackoverflow.com/questions/1372349/c-ienumerableobject-to-string/1372394#1372394 Comment by gimel on C# IEnumerable<Object> to string gimel 2009-09-03T10:44:42Z 2009-09-03T10:44:42Z No need to check sb.Length on each iteration. You can discard the 1st delimiter by returning sb.ToString(1, sb.Length-1) .