User cschol - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T02:29:13Zhttp://stackoverflow.com/feeds/user/2386http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/21725/favorite-gvim-plugins-scripts24Favorite (G)Vim plugins/scripts?cschol2008-08-22T03:31:48Z2009-12-11T13:28:12Z
<p>What are your favorite (G)Vim plugins/scripts?</p>
http://stackoverflow.com/questions/1775898/emacs-disable-line-truncation-in-minibuffer-only1Emacs: Disable line truncation in minibuffer onlycschol2009-11-21T16:11:27Z2009-11-21T18:11:20Z
<p>I am using <a href="http://www.emacswiki.org/emacs/InteractivelyDoThings" rel="nofollow">ido mode </a> for file & buffer switching in Emacs 23.</p>
<p>The following options allow the minibuffer to be resized if there is more than one line worth of files in the directory:</p>
<pre><code>(setq resize-mini-windows t) ; grow and shrink as necessary
(setq max-mini-window-height 3) ; grow up to max of 3 lines
</code></pre>
<p>However, this only works if line truncation is not enabled by default (globally):</p>
<pre><code>(setq-default truncate-lines t) ; Truncate, do not wrap lines
</code></pre>
<p>I like this option for my main editing window, but this also overrides the above function to show more than one line in the minibuffer. The line in the minibuffer is truncated, not wrapped, also.</p>
<p>Is there a way to enable line truncation for the main editing window and only disable it in the minibuffer?</p>
http://stackoverflow.com/questions/1768421/how-to-get-info-the-author-his-comments-for-the-last-subversion-revision-via-com/1768428#17684280Answer by cschol for How to get info: The Author/his Comments for the last subversion revision via command line?cschol2009-11-20T05:00:21Z2009-11-20T05:00:21Z<p>I believe <a href="http://svnbook.red-bean.com/en/1.0/re15.html" rel="nofollow">svn log</a> is what you are looking for. Also, <a href="http://svnbook.red-bean.com/en/1.1/re13.html" rel="nofollow">svn info</a> for more information.</p>
http://stackoverflow.com/questions/1736228/python-data-vs-text4Python: data vs. text?cschol2009-11-15T01:13:19Z2009-11-16T16:25:35Z
<p>Guido van Rossum's presentation about <a href="http://www.python.org/doc/essays/ppt/euro2008/Py3kEuro08.pdf" rel="nofollow">Python 3000</a> mentions several things to make a transition from Python 2 to Python 3 easier eventually. He is specifically talking about text handling since the move to Unicode as the only representation of strings in Python 3 is one of the major changes.</p>
<p>As far as text handling goes, one slide (#14) says:</p>
<ul>
<li>In 2.6:
<ul>
<li>Use bytes and b'…' for all data (Knowing these are just aliases for str and '…')</li>
<li>Use unicode and u'...' for all text</li>
</ul></li>
<li>In 2.5:
<ul>
<li>'...' for data, u'...' for text</li>
</ul></li>
</ul>
<p>I am using Python 2.6.4. What exactly does this mean for me?</p>
<p>In Python's world, what is the difference between data and text?</p>
http://stackoverflow.com/questions/1739924/python-reload-component-y-imported-with-from-x-import-y2Python: reload component Y imported with 'from X import Y'?cschol2009-11-16T03:41:28Z2009-11-16T06:21:51Z
<p>In Python, once I have imported a module X in an interpreter session using <code>import X</code>, and the module changes on the outside, I can reload the module with <code>reload(X)</code>. The changes then become available in my interpreter session.</p>
<p>I am wondering if this also possible when I import a component Y from module X using <code>from X import Y</code>.</p>
<p>The statement <code>reload Y</code> does not work, since Y is not a module itself, but only a component (in this case a class) inside of a module.</p>
<p>Is it possible at all to reload individual components of a module without leaving the interpreter session (or importing the entire module)?</p>
<p><strong>EDIT:</strong></p>
<p>For clarification, the question is about importing a <strong>class or function X</strong> from a <strong>module Y</strong> and reloading on a change, not a module X from a package Y.</p>
http://stackoverflow.com/questions/1740116/for-what-reason-do-we-have-the-lowercasewithunderscores-naming-convention/1740153#17401531Answer by cschol for For what reason do we have the lower_case_with_underscores naming convention?cschol2009-11-16T05:02:36Z2009-11-16T05:12:49Z<p>Whatever you do, I think it is important that you are consistent. I have seen a couple of style guides (for example <a href="http://google-styleguide.googlecode.com/svn/trunk/pyguide.html#Naming" rel="nofollow">Google Python Style Guide</a>), that tell you to use underscores.</p>
<p>I personally think, using lowercase letters with underscores makes the code easier to read. </p>
<p>You use camelCasing? I don't mind! There is always <a href="http://www.emacswiki.org/emacs/GlassesMode" rel="nofollow">Glasses Mode</a>. :)</p>
http://stackoverflow.com/questions/1738139/what-does-y-in-the-output-stand-for-in-c/1738150#17381501Answer by cschol for What does 'y' in the output stand for in C?cschol2009-11-15T17:21:09Z2009-11-15T17:49:07Z<p>When you "construct your string in a loop", do you remember to properly terminate it with a <code>'\0'</code>?</p>
<p>If the loop assigns characters to a character array, the last array item should be <code>'\0'</code>.</p>
<p>Ok, after seeing the code, you are terminating the string.</p>
<p><strong>EDIT</strong>:</p>
<p>Looks like you are including the EOF character in your string. This is one case where the string is not terminated properly. You should check for an EOF in your if-else structure and handle it properly.</p>
<p>One other thing I noticed:</p>
<p>You are assigning an <code>int c</code> to a <code>char result</code> when returning from your function. The compiler should have warned you, that you are trying to put a larger data type into a smaller data type. Depending on what the purpose of the return value is, I would think about changing the return data type to <code>int</code>.</p>
http://stackoverflow.com/questions/1734463/concept-of-class-and-object/1734475#17344751Answer by cschol for concept of class and objectcschol2009-11-14T15:04:23Z2009-11-14T15:36:44Z<p>An object is an instantiation of a class. The class comes first.</p>
<p>The class represents a blueprint or template of an object. It is the exact layout, which describes how to build the object. In the classical OO sense, the class is required first in order to build the object.</p>
<p>It is a philosophical question whether, in real-life, the top-down approach (class first, then object) or bottom-up approach (object first, then class abstraction) is better.</p>
<p>Lastly, apparently someone can come up with a language that employs OO concepts without classes, but IMO that is not really what the question was about. </p>
http://stackoverflow.com/questions/1733281/strlen-implementation-in-gcc/1733319#17333192Answer by cschol for strlen() implementation in gcccschol2009-11-14T04:50:13Z2009-11-14T04:50:13Z<p><a href="http://www.google.com/codesearch" rel="nofollow">Google Code Search</a> is a good starting point for questions like that. They usually point to various different sources and implementations of a function.</p>
<p>In your particular case: <a href="http://www.google.com/codesearch?q=strlen&hl=en&btnG=Search+Code" rel="nofollow">GoogleCodeSearch(strlen)</a></p>
http://stackoverflow.com/questions/1707810/clear-code-for-counting-from-0-to-255-using-8-bit-datatype/1707968#17079680Answer by cschol for clear code for counting from 0 to 255 using 8-bit datatypecschol2009-11-10T13:28:21Z2009-11-10T13:41:27Z<p>You seem to want to convey the message of counting from 0 to 255 by the data type you are using, but what's the significance of 255? You should probably #define this magic number with a name explicitly stating the purpose of it. Also, a comment above the statement would be way more helpful than trying to "encode" all that information in somewhat weird looking statements.</p>
<p>For example:</p>
<pre><code>#define MAX_RETRIES 255
unsigned int retries;
for(retries = 0; retries <= MAX_RETRIES; ++retries)
{
do_retry_work();
}
</code></pre>
<p>If needed, add a comment, why the number of retries is limited to 255.</p>
http://stackoverflow.com/questions/1698143/robust-string-reverse/1698283#16982835Answer by cschol for robust string reversecschol2009-11-08T23:18:20Z2009-11-08T23:57:03Z<p>Page 62 of Kernighan & Ritchie's <a href="http://rads.stackoverflow.com/amzn/click/0131103628" rel="nofollow">The C Programming Language</a> shows an algorithm for in-place string reversal with a temporary variable.</p>
<p>Similar to this:</p>
<pre><code>char* rev_string(char* const str)
{
int i, j;
char tmp;
for(i = 0, j = strlen(str)-1; i < j; i++; j--)
{
tmp = str[i];
str[i] = str[j];
str[j] = tmp;
}
return str;
}
</code></pre>
<p>This algorithm is easier to understand than the one without a temporary variable, imho.</p>
<p>As for item #3 in your list of questions:</p>
<p>As an interviewer, I would want to see simple, clear, and well structured code. That's impressive. Trickery will not impress me. Especially when its comes to premature optimization. BTW, my solution reverses the string in place with one additional char instead of an int. Impressive? :)</p>
<p>And item #4:</p>
<p>One other test case would be an unterminated string. Is your function robust enough to handle this case? Your function will only be as robust as the least robust part of it. Passing an unterminated string into my solution causes a Segmentation Fault, due to strlen reporting an incorrect string length. Not very robust.</p>
<p>The important point about robustness is, your code might be robust but you have to make sure all other external functions you use are, too!</p>
http://stackoverflow.com/questions/1695434/viewing-source-of-namespace-resolver-functions-linux-fedora/1695510#16955101Answer by cschol for viewing source of namespace resolver functions linux fedoracschol2009-11-08T05:47:30Z2009-11-08T05:47:30Z<p>I am not sure if you are interested in Fedora specific stuff, but I have had good luck with <a href="http://www.google.com/codesearch" rel="nofollow">Google Code Search</a> for finding source code for certain functions.</p>
http://stackoverflow.com/questions/1694402/why-interpreted-languages-are-slow/1694508#16945081Answer by cschol for Why Interpreted Languages Are Slow?cschol2009-11-07T21:35:00Z2009-11-07T21:35:00Z<p>This is a good question, but should be formulated a little different in my opinion, for example: "Why are interpreted languages slower than compiled languages?"</p>
<p>I think it is a common misconception that interpreted languages are slow per se. Interpreted languages are <strong>not slow</strong>, but, depending on the use case, might be <strong>slower</strong> than the compiled version. In most cases interpreted languages are actually <strong>fast enough</strong>!</p>
<p>"Fast enough", plus the increase in productivity from using a language like Python over, for example, C should be justification enough to consider an interpreted language. Also, you can always replace certain parts of your interpreted program with a fast C implementation, if you really need speed. But then again, measure first and determine if speed is really the problem, then optimize.</p>
http://stackoverflow.com/questions/1692191/tools-that-automate-merging-of-text-files/1692297#16922970Answer by cschol for Tools that automate merging of text files?cschol2009-11-07T07:12:26Z2009-11-07T07:12:26Z<p>I would recommend reading the chapter on <a href="http://svnbook.red-bean.com/en/1.1/ch04.html" rel="nofollow">Branching and Merging</a> in the SVN book.</p>
<p>From the steps you described it seems to me you are merging multiple times from a branch to the trunk, which might not be a good idea or (as in your case) might not work at all. </p>
<p>Before you reintegrate the branch into the trunk, you should merge from the trunk to the branch. This will ensure that the only difference between the trunk and the branch is the changes you made in the branch. Then you reintegrate the changes from the branch into the trunk. Trunk and branch should now be at the same revision level. </p>
<p>In step 3 it sounds like you make changes to the trunk, commit these changes and then merge from the branch to the trunk again. The changes from the branch have already been merged in step 2 so SVN will not merge again.</p>
http://stackoverflow.com/questions/1564032/fonts-for-use-in-embedded-gui3Fonts for use in embedded GUIcschol2009-10-14T02:58:16Z2009-10-14T13:18:37Z
<p>I am looking for fonts for use in an embedded GUI application with a small display and keypad.</p>
<p>Are there any free fonts available that people have used?
What about the licenses for free fonts? Are there any special requirements for an application like an embedded GUI? For example, include the License in the source code.</p>
<p>Take the <a href="http://www.gnu.org/software/freefont/" rel="nofollow">GNU FreeFont</a> family fonts. The website talks about using these fonts in documents or altering them to fit your needs. If I have a way to import those fonts into my application (unaltered) and use them on my display, is that considered the same as using them to create a document with, let's say, AbiWord or OpenOffice?</p>
<p>Also, what are the practical differences between free (open source, e.g. GNU FreeFont), license free (e.g. Fonts from link in Mark Rushakoff's comment below) and royalty free as far as fonts are concerned?</p>
http://stackoverflow.com/questions/1338930/replace-double-backslash-with-single-backslash-in-emacs2Replace double backslash with single backslash in Emacscschol2009-08-27T04:59:47Z2009-08-27T14:19:37Z
<p>I have created a regular expression with re-builder in Emacs. I use C-c C-w to copy it to the kill-ring. </p>
<p>The kill-ring shows:</p>
<pre>"\\(defun\\)"</pre>
<p>First, I modified the copy function to get rid of the "".</p>
<pre>\\(defun\\)</pre>
<p>My other problem is, the regex in the kill-ring contains double backslashes, rendering it unusable for functions like <em>query-replace-regexp</em>, which I want to yank it back into from the kill-ring. </p>
<p>These functions expect single backslashes, like</p>
<pre>\(defun\)</pre>
<p>So I thought I could replace the '\\' with the '\' before copying it to the kill-ring by doing this:</p>
<pre>(replace-regexp-in-string "\\\\" "\\" "\\(defun\\)" nil t)</pre>
<p>When executing the function the minibuffer shows "\\(defun\\)" instead of "\(defun\)" as a result.</p>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/1251503/how-to-create-buffer-similar-to-compilation-in-emacs2How to create buffer similar to *compilation* in Emacs?cschol2009-08-09T14:37:28Z2009-08-10T06:36:00Z
<p>I have an asynchronous process in Emacs, which creates a TAGS file. </p>
<p>This process creates a process buffer called *ctags*. If the process result is "finished\n", I kill the buffer. </p>
<p>If the process result is anything else I want to display the process buffer similar to the *compilation* status output when running <em>M-x compile</em>. </p>
<p>I.e. I want to vertically split the screen and show the *ctags* buffer at the bottom. Pressing <em>q</em> would preferably <em>kill</em> the bottom buffer and just show my original buffer.</p>
<p>I tried using this in my process sentinel callback:</p>
<pre>
(split-window-vertically)
(set-window-buffer (selected-window) (get-buffer "*ctags*"))
</pre>
<p>but aside from the fact that it puts the *ctags* buffer on top, the buffer does not have the same characteristics as the *compilation* output, e.g. pressing <em>q</em> inserts q.</p>
<p>How do I create a buffer like *compilation*?</p>
<p><strong>EDIT:</strong></p>
<p>Inspired by Trey Jackson's answer below, this does exactly what I want:</p>
<pre>
(pop-to-buffer (get-buffer "*ctags*"))
(compilation-mode)
</pre>
<p>It selects the *ctags* buffer, puts it into compilation mode and <em>q</em> will quit the window.</p>
<p><strong>EDIT2:</strong>
Using <pre>(compilation-mode)</pre> (major mode instead of minor mode) since Emacs somehow doesn't like reapplying the minor mode to an exisiting buffer.</p>
<p>The Error message I get is:</p>
<pre>
Toggling compilation-minor-mode off; better pass explicit argument.
</pre>
http://stackoverflow.com/questions/1168914/ironpython-vs-python-net4IronPython vs. Python .NETcschol2009-07-23T00:06:00Z2009-07-23T01:13:16Z
<p>I want to access some .NET assemblies written in C# from Python code. </p>
<p>A little research showed I have two choices:</p>
<ul>
<li><a href="http://www.codeplex.com/IronPython" rel="nofollow">IronPython</a> with .NET interface capability/support built-in</li>
<li>Python with the <a href="http://pythonnet.sourceforge.net/" rel="nofollow">Python .NET</a> package</li>
</ul>
<p>What are the trade-offs between both solutions?</p>
http://stackoverflow.com/questions/1162889/what-methods-are-there-to-modularize-c-code/1163118#11631182Answer by cschol for What methods are there to modularize C code?cschol2009-07-22T04:49:09Z2009-07-22T04:49:09Z<p>A function should do one thing and do this one thing well. </p>
<p>Lots of little function used by bigger wrapper functions help to structure code from small, easy to understand (and test!) building blocks.</p>
<p>Create small modules with a couple of functions each. Only expose what you must, keep anything else static inside of the module. Link small modules together with their .h interface files.</p>
<p>Provide Getter and Setter functions for access to static file scope variables in your module. That way, the variables are only actually written to in one place. This helps also tracing access to these static variables using a breakpoint in the function and the call stack. </p>
<p>One important rule when designing modular code is: Don't try to optimize unless you have to. Lots of small functions usually yield cleaner, well structured code and the additional function call overhead might be worth it.</p>
<p>I always try to keep variables at their narrowest scope, also within functions. For example, indices of for loops usually can be kept at block scope and don't need to be exposed at the entire function level. C is not as flexible as C++ with the "define it where you use it" but it's workable.</p>
http://stackoverflow.com/questions/1116735/i-less-efficient-than-i-how-to-show-this1i++ less efficient than ++i, how to show this?cschol2009-07-12T19:40:28Z2009-07-13T09:09:21Z
<p>I am trying to show by example that the prefix increment is more efficient than the postfix increment.</p>
<p>In theory this makes sense: i++ needs to be able to return the unincremented original value and therefore store it, whereas ++i can return the incremented value without storing the previous value.</p>
<p>But is there a good example to show this in practice?</p>
<p>I tried the following code:</p>
<pre><code>int array[100];
int main()
{
for(int i = 0; i < sizeof(array)/sizeof(*array); i++)
array[i] = 1;
}
</code></pre>
<p>I compiled it using gcc 4.4.0 like this:</p>
<pre><code>gcc -Wa,-adhls -O0 myfile.cpp
</code></pre>
<p>I did this again, with the postfix increment changed to a prefix increment:</p>
<pre><code>for(int i = 0; i < sizeof(array)/sizeof(*array); ++i)
</code></pre>
<p>The result is identical assembly code in both cases. </p>
<p>This was somewhat unexpected. It seemed like that by turning off optimizations (with -O0) I should see a difference to show the concept. What am I missing? Is there a better example to show this?</p>
http://stackoverflow.com/questions/36991/do-you-have-to-register-a-dialog-box0Do you have to register a Dialog Box?cschol2008-08-31T17:45:46Z2009-06-21T22:05:24Z
<p>So, I am a total beginner in any kind of Windows related programming. I have been playing around with the Windows API and came across a couple of examples on how to initialize create windows and such. </p>
<p>One example creates a regular window (I abbreviated some of the code):</p>
<pre>
int WINAPI WinMain( [...] )
{
[...]
// Windows Class setup
wndClass.cbSize = sizeof( wndClass );
wndClass.style = CS_HREDRAW | CS_VREDRAW;
[...]
// Register class
RegisterClassEx( &wndClass );
// Create window
hWnd = CreateWindow( szAppName, "Win32 App",
WS_OVERLAPPEDWINDOW,
0, 0, 512, 384,
NULL, NULL, hInstance, NULL );
[...]
}
</pre>
<p>The second example creates a dialog box (no abbreviations except the WinMain arguments):</p>
<pre>
int WINAPI WinMain( [...] )
{
// Create dialog box
DialogBox(hInstance,
MAKEINTRESOURCE(IDD_MAIN_DLG),
NULL,
(DLGPROC)DialogProc);
}
</pre>
<p>The second example does not contain any call to the register function. It just creates the DialogBox with its DialogProc process attached. </p>
<p>This works fine, but I am wondering if there is a benefit of registering the window class and then creating the dialog box (if this is at all possible). </p>
http://stackoverflow.com/questions/904308/emacs-recompile-file-while-running/904366#9043662Answer by cschol for emacs recompile file while runningcschol2009-05-24T18:22:17Z2009-05-24T18:22:17Z<p><a href="http://www.gnu.org/software/emacs/elisp/html%5Fnode/Repeated-Loading.html#Repeated-Loading" rel="nofollow">This</a> page of the GNU Emacs Reference manual taks about reloading files and/or libraries. </p>
<p>You definitely have to explicitey reload the new file with <code>M-x load-library</code>, unless there is another emacs mechanism that forces it to reload the newly byte-compiled function. </p>
http://stackoverflow.com/questions/874841/the-trick-to-design-a-webpage-very-fast/874895#8748954Answer by cschol for The trick to design a webpage very fastcschol2009-05-17T16:11:21Z2009-05-17T16:11:21Z<p>Use a Content Management System like, fo example, <a href="http://drupal.org/" rel="nofollow">Drupal</a> or <a href="http://www.dotnetnuke.com/" rel="nofollow">DotNetNuke</a> if you dont want to start from scratch. </p>
<p>Those will give you professional looking results in no time and provide all the content management infrastructure out of the box. So you dont have to necessarily be the webadmin yourself. </p>
<p>At the same time these frameworks are flexible enough to allow any kind of stylistic modification to suit your needs.</p>
http://stackoverflow.com/questions/874872/are-the-stack-overflow-dev-days-relevant-to-embedded-software-engineers/874885#8748851Answer by cschol for Are the Stack Overflow Dev Days relevant to embedded software engineers?cschol2009-05-17T16:06:32Z2009-05-17T16:06:32Z<p>I think it they are. I think it is important for every type of software engineer to get an idea what is going on in other parts of the trade. You might not get immediate payback from any of the things listed in the "not relevant" section above but, who knows, maybe a higher-level concept will spark an idea translatable into the embedded world.</p>
http://stackoverflow.com/questions/366278/graphics-library-for-embedded-systems-without-linux/785662#7856620Answer by cschol for Graphics library for embedded systems without Linux?cschol2009-04-24T12:39:48Z2009-04-24T13:04:42Z<p>You should give <a href="http://www.easygui.com/" rel="nofollow">easyGUI</a> a try. </p>
<p>easyGUI is a GUI graphics software/library specifically designed to work on small(er) Embedded Systems.</p>
<p>No operating system needed. A basic cyclic executive is enough. 512kb of Flash should be more than OK. The library easyGUI provides is very flexible in helping to minimize the amount of Flash you need. </p>
<p>Supports fonts, graphics, bitmaps, touch screens and a bunch of video controllers out of the box. </p>
<p>Plus it is really cheap (no licensing fees, just a flat amount per seat) and comes with a PC program to design screens and generate code. The PC program takes a while to get used to but in the end it is very nice to try certain things out on the PC and then just generate and watch it run on your target.</p>
<p>They have a demo app on their website. It is worth checking it out.</p>
http://stackoverflow.com/questions/771100/changing-the-value-of-a-const-pointer1Changing the value of a const pointercschol2009-04-21T04:58:02Z2009-04-21T17:50:02Z
<p>I have the following piece of code:</p>
<pre>
void TestFunc(const void * const Var1, const float Var2)
{
*(float*)Var1 = Var2;
}
</pre>
<p>It looks like I am changing the value of the const object the const pointer points to (thanks sharptooth), which should not be allowed. Fact is, none of the compilers I tried issued a warning. How is this possible?</p>
http://stackoverflow.com/questions/403687/switching-ok-cancel-and-cancel-ok-to-enforce-user-interaction8Switching OK-Cancel and Cancel-OK to enforce user interaction?cschol2008-12-31T18:18:26Z2009-04-19T20:51:08Z
<p>This is inspired by the question <a href="http://stackoverflow.com/questions/50335/ok-cancel-or-cancel-ok">OK-Cancel or Cancel-OK?</a>.</p>
<p>I remember reading somewhere about the concept of switching OK-Cancel/Cancel-OK in certain situations to prevent the user from clicking through information popups or dialog boxes without reading their content. As far as I remember, this also included moving the location of the OK button (horizontally, left to right) to prevent the user from just remembering where to click. </p>
<p>Does this really make sense? Is this a good way to force the user to "think/read first, then click"? Are there any other concepts applicable to this kind of situation?</p>
<p>I am particularly thinking of a safety-related application, where thoughtlessly pressing OK out of habit can result in a potentially dangerous situation whereas Cancel would lead to a safe state. </p>
http://stackoverflow.com/questions/736704/displaying-functions-in-c-using-vi/736760#7367603Answer by cschol for displaying functions in c using vicschol2009-04-10T05:03:01Z2009-04-10T05:03:01Z<p>I think the <a href="http://www.vim.org/scripts/script.php?script%5Fid=273" rel="nofollow">Taglist</a> plugin is what you are looking for. It shows functions, classes etc. in a sidebar and is designed to make source code browsing a lot easier.</p>
http://stackoverflow.com/questions/51212/how-to-write-a-download-progress-indicator-in-python10How to write a download progress indicator in Python?cschol2008-09-09T04:09:15Z2009-04-01T10:04:19Z
<p>I am writing a little application to download files over http (as, for example, described <a href="http://beta.stackoverflow.com/questions/22676/how-do-i-download-a-file-over-http-using-python#22776" rel="nofollow">here</a>).</p>
<p>I also want to include a little download progress indicator showing the percentage of the download progress.</p>
<p>Here is what I came up with:</p>
<pre>
sys.stdout.write(rem_file + "...")
urllib.urlretrieve(rem_file, loc_file, reporthook=dlProgress)
def dlProgress(count, blockSize, totalSize):
percent = int(count*blockSize*100/totalSize)
sys.stdout.write("%2d%%" % percent)
sys.stdout.write("\b\b\b")
sys.stdout.flush()
</pre>
<p>Output: MyFileName... 9%</p>
<p>Any other ideas or recommendations to do this? </p>
<p>One thing that's somewhat annoying is the blinking cursor in the terminal on the first digit of the percentage. Is there a way to prevent this? Is there a way to hide the cursor?</p>
<p><strong>EDIT:</strong></p>
<p>Here a better alternative using a global variable for the filename in dlProgress and the '\r' code:</p>
<pre>
global rem_file # global variable to be used in dlProgress
urllib.urlretrieve(rem_file, loc_file, reporthook=dlProgress)
def dlProgress(count, blockSize, totalSize):
percent = int(count*blockSize*100/totalSize)
sys.stdout.write("\r" + rem_file + "...%d%%" % percent)
sys.stdout.flush()
</pre>
<p>Output: MyFileName...9% </p>
<p>And the cursor shows up at the END of the line. Much better.</p>
http://stackoverflow.com/questions/252780/why-should-we-typedef-a-struct-so-often-in-c/699528#6995280Answer by cschol for Why should we typedef a struct so often in C?cschol2009-03-31T00:00:32Z2009-03-31T00:00:32Z<p>One other good reason to always typedef enums and structs results from this problem I have encountered with the Freescale Codewarrior compiler suite:</p>
<pre>
enum EnumDef
{
FIRST_ITEM,
SECOND_ITEM
};
struct StructDef
{
enum EnuumDef MyEnum;
unsigned int MyVar;
} MyStruct;
</pre>
<p>Notice the typo in EnumDef in the struct (Enu**u**mDef)? This compiles without error (or warning) and is (depending on the literal interpretation of the C Standard) correct. The problem is that I just created an new (empty) enumeration definition within my struct. I am not (as intended) using the previous definition EnumDef.</p>
<p>With a typdef similar kind of typos would have resulted in a compiler errors for using an unknown type:</p>
<pre>
typedef
{
FIRST_ITEM,
SECOND_ITEM
} EnumDef;
typedef struct
{
EnuumDef MyEnum; /* compiler error (unknown type) */
unsigned int MyVar;
} StructDef;
StrructDef MyStruct; /* compiler error (unknown type) */
</pre>
<p>I would advocate ALWAYS typedef'ing structs and enumerations. </p>
<p>Not only to save some typing (no pun intended ;)), but because it is safer.</p>
http://stackoverflow.com/questions/1854441/writing-a-replacement-for-a-function-which-takes-a-variable-number-of-parametersComment by cschol on writing a replacement for a function which takes a variable number of parameters (c programming)cschol2009-12-06T05:30:41Z2009-12-06T05:30:41ZLine 13 should be: int maxof(int n_args, ...) instead of int maxof(int n args, ...). The '_' seems to be missing in some places in the code. That's probably why is doesn't compile. Check all occurrences of 'n args' and make them 'n_args'.http://stackoverflow.com/questions/1804020/reports-in-pythonComment by cschol on reports in python cschol2009-11-26T14:37:01Z2009-11-26T14:37:01ZAnd your question is?http://stackoverflow.com/questions/1775898/emacs-disable-line-truncation-in-minibuffer-only/1776248#1776248Comment by cschol on Emacs: Disable line truncation in minibuffer onlycschol2009-11-21T22:53:45Z2009-11-21T22:53:45ZThat's exactly what I was looking for. Thanks! I kinda thought you would have a solution for this. ;)http://stackoverflow.com/questions/1763184/string-formatting-expressions-python/1763223#1763223Comment by cschol on String formatting expressions (Python)cschol2009-11-19T13:33:07Z2009-11-19T13:33:07Z+1 for dict-based approach. This can also be used with locals() and globals() to define the dict!http://stackoverflow.com/questions/1739924/python-reload-component-y-imported-with-from-x-import-y/1739931#1739931Comment by cschol on Python: reload component Y imported with 'from X import Y'?cschol2009-11-17T01:41:01Z2009-11-17T01:41:01Z+1 for answer, rich, long comment and mentioning your employer's style guide. :)http://stackoverflow.com/questions/1739924/python-reload-component-y-imported-with-from-x-import-y/1739931#1739931Comment by cschol on Python: reload component Y imported with 'from X import Y'?cschol2009-11-16T03:55:34Z2009-11-16T03:55:34ZI see your point. Would you care to elaborate on any of the other good reasons why it is not a good idea?http://stackoverflow.com/questions/1738663/checking-condition-inside-a-loopComment by cschol on Checking condition inside a loopcschol2009-11-15T20:20:54Z2009-11-15T20:20:54ZFrom the information provided. it is not clear what you are trying to do. Can you elaborate?http://stackoverflow.com/questions/1738139/what-does-y-in-the-output-stand-for-in-cComment by cschol on What does 'y' in the output stand for in C?cschol2009-11-15T17:19:56Z2009-11-15T17:19:56ZCan you post your code? http://stackoverflow.com/questions/1736228/python-data-vs-text/1736279#1736279Comment by cschol on Python: data vs. text?cschol2009-11-15T17:05:16Z2009-11-15T17:05:16ZThank you for the detailed update.http://stackoverflow.com/questions/1736655/linux-development-c-c-bash-python-on-windows-7Comment by cschol on Linux Development C/C++/bash/python on windows-7.cschol2009-11-15T05:21:40Z2009-11-15T05:21:40ZFYI, latest python version in Cygwin is 2.5.2.http://stackoverflow.com/questions/1736228/python-data-vs-text/1736279#1736279Comment by cschol on Python: data vs. text?cschol2009-11-15T03:32:19Z2009-11-15T03:32:19ZI understand <i>why</i> it is a good idea to do this, but I am still not clear as to <i>how</i> exactly. Unless a function explicitly expects a string of bytes, when do I use a string of bytes vs a string of characters? my_dict[b'mykey'] or my_dict[u'mykey']? When is it considered data, when is it considered text?http://stackoverflow.com/questions/1734463/concept-of-class-and-object/1734475#1734475Comment by cschol on concept of class and objectcschol2009-11-14T15:31:30Z2009-11-14T15:31:30Z@cartoonfox, @Pete Kirkham: maybe, but do you really think that's what the op was after? http://stackoverflow.com/questions/1734481/emacs-c-and-c/1734508#1734508Comment by cschol on emacs C and C++cschol2009-11-14T15:21:26Z2009-11-14T15:21:26ZEmacs can be anything you want it to be. Even an IDE. What Emacs is really 'meant to be' is probably another more philosophical discussion.http://stackoverflow.com/questions/1729034/one-line-if-or-for/1729131#1729131Comment by cschol on One Line 'If' or 'For'...cschol2009-11-13T13:12:23Z2009-11-13T13:12:23Z+1 for List Comprehensionhttp://stackoverflow.com/questions/1705374/how-to-capture-a-string-into-variable-in-a-recursive-functionComment by cschol on How to capture a string into variable in a recursive function?cschol2009-11-10T03:06:57Z2009-11-10T03:06:57ZWhat exactly is the output of your code?