User Russell Bryant - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T14:00:09Z http://stackoverflow.com/feeds/user/23224 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/477096/python-import-coding-style/477116#477116 1 Answer by Russell Bryant for python import coding style Russell Bryant 2009-01-25T03:32:28Z 2009-01-25T03:32:28Z <p>Another useful thing to note is that parts of using "import" inside of a function have been completely removed in Python 3.0.</p> <p>There is a brief mention of it under "Removed Syntax" here:</p> <p><a href="http://docs.python.org/3.0/whatsnew/3.0.html" rel="nofollow">http://docs.python.org/3.0/whatsnew/3.0.html</a></p> http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/215166#215166 34 Answer by Russell Bryant for What is the best comment in source code you have ever encountered? Russell Bryant 2008-10-18T15:28:31Z 2008-10-18T15:28:31Z <pre><code> /* Mark: If there's one thing you learn from this code, it is this... Never, ever fly Air France. Their customer service is absolutely the worst. I've never heard the words "That's not my problem" as many times as I have from their staff -- It should, without doubt be their corporate motto if it isn't already. Don't bother giving them business because you're just a pain in their side and they will be sure to let you know the first time you speak to them. If you ever want to make me happy just tell me that you, too, will never fly Air France again either (in spite of their excellent cuisine). Update by oej: The merger with KLM has transferred this behaviour to KLM as well. Don't bother giving them business either... Only if you want to travel randomly without luggage, you might pick either of them. */ </code></pre> http://stackoverflow.com/questions/215076/whats-the-best-way-to-become-familiar-with-a-large-codebase/215149#215149 3 Answer by Russell Bryant for What's the best way to become familiar with a large codebase? Russell Bryant 2008-10-18T15:12:29Z 2008-10-18T15:12:29Z <p>One thing that I usually suggest to people that has not yet been mentioned is that it is important to become a competent user of the existing code base before you can be a developer. When new developers come into our large software project, I suggest that they spend time becoming expert users before diving in trying to work on the code.</p> <p>Maybe that's obvious, but I have seen a lot of people try to jump into the code too quickly because they are eager to start making progress.</p> http://stackoverflow.com/questions/142789/what-is-a-callback-in-c-and-how-are-they-implemented/147241#147241 2 Answer by Russell Bryant for What is a "callback" in C and how are they implemented? Russell Bryant 2008-09-29T01:47:54Z 2008-09-29T01:47:54Z <p>Here is an example of callbacks in C.</p> <p>Let's say you want to write some code that allows registering callbacks to be called when some event occurs.</p> <p>First define the type of function used for the callback:</p> <pre><code>typedef void (*event_cb_t)(const struct event *evt, void *userdata); </code></pre> <p>Now, define a function that is used to register a callback:</p> <pre><code>int event_cb_register(event_cb_t cb, void *userdata); </code></pre> <p>This is what code would look like that registers a callback:</p> <pre><code>static void my_event_cb(const struct event *evt, void *data) { /* do stuff and things with the event */ } ... event_cb_register(my_event_cb, &amp;my_custom_data); ... </code></pre> <p>In the internals of the event dispatcher, the callback may be stored in a struct that looks something like this:</p> <pre><code>struct event_cb { event_cb_t cb; void *data; }; </code></pre> <p>This is what the code looks like that executes a callback.</p> <pre><code>struct event_cb *callback; ... /* Get the event_cb that you want to execute */ callback-&gt;cb(event, callback-&gt;data); </code></pre> http://stackoverflow.com/questions/136946/difference-between-enum-and-define-statements/147203#147203 0 Answer by Russell Bryant for Difference between Enum and Define Statements Russell Bryant 2008-09-29T01:32:22Z 2008-09-29T01:32:22Z <p>Another advantage of an enum over a list of defines is that compilers (gcc at least) can generate a warning when not all values are checked in a switch statement. For example:</p> <pre><code>enum { STATE_ONE, STATE_TWO, STATE_THREE }; ... switch (state) { case STATE_ONE: handle_state_one(); break; case STATE_TWO: handle_state_two(); break; }; </code></pre> <p>In the previous code, the compiler is able to generate a warning that not all values of the enum are handled in the switch. If the states were done as #define's, this would not be the case.</p> http://stackoverflow.com/questions/132241/hidden-features-of-c/147075#147075 14 Answer by Russell Bryant for Hidden features of C Russell Bryant 2008-09-29T00:27:06Z 2008-09-29T00:27:06Z <p>gcc has a number of extensions to the C language that I enjoy, which can be found <a href="http://gcc.gnu.org/onlinedocs/gcc-4.3.2/gcc/index.html#toc_C-Extensions" rel="nofollow">here</a>. Some of my favorites are <a href="http://gcc.gnu.org/onlinedocs/gcc-4.3.2/gcc/Function-Attributes.html#Function-Attributes" rel="nofollow">function attributes</a>. One extremely useful example is the format attribute. This can be used if you define a custom function that takes a printf format string. If you enable this function attribute, gcc will do checks on your arguments to ensure that your format string and arguments match up and will generate warnings or errors as appropriate.</p> <pre><code>int my_printf (void *my_object, const char *my_format, ...) __attribute__ ((format (printf, 2, 3))); </code></pre> http://stackoverflow.com/questions/144568/learn-c-from-open-source-code/147048#147048 0 Answer by Russell Bryant for Learn C from Open Source code Russell Bryant 2008-09-29T00:11:55Z 2008-09-29T00:11:55Z <p>I do not think that anyone can provide a perfect answer to your question. If you want to learn by working on an open source project, then one of the most important things is that it is a project that truly interests you. Otherwise, you're going to become disinterested just as quick as you do with books that you have tried reading.</p> <p>Once you find an application that you really like, you will find yourself much more motivated to learn how it works and to make contributions.</p> http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/146553#146553 3 Answer by Russell Bryant for What is the single most effective thing you did to improve your programming skills? Russell Bryant 2008-09-28T19:36:03Z 2008-09-28T19:36:03Z <p>Getting involved in an open source project with a lot of developers that are smarter than me. For me, it was getting involved in the Asterisk project (www.asterisk.org). However, the key thing is finding a project that you can be passionate about.</p>