User Adam K. Johnson - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T03:19:42Z http://stackoverflow.com/feeds/user/4081 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1684682/c-calling-conventions-and-passed-arguments 2 C calling conventions and passed arguments Adam K. Johnson 2009-11-06T00:45:30Z 2009-11-06T02:06:44Z <p>When making a function call in Linux (or OS X for that matter), can the callee modify the values of the arguments on the stack? I was under the assumption that since the caller is the one that cleans them up, that they should contain the same values after the function call. However I found that GCC with -O2 was modifying parameters that were passed to it on the stack. I have also looked for documentation including the System V i386 calling conventions, but was unable to find a <em>definitive</em> answer to this.</p> <p>Here is some sample code I was debugging.</p> <pre><code>pushl %eax # %eax = 0x28 call _print_any popl %eax # %eax is now 0x0a </code></pre> <p>I would assume that GCC modifying that parameter on the stack is fine, but I want to know where it is specified that it <em>can</em> do so.</p> http://stackoverflow.com/questions/245395/underused-features-of-windows-batch-files/300410#300410 5 Answer by Adam K. Johnson for Underused features of Windows batch files Adam K. Johnson 2008-11-18T22:40:14Z 2009-10-23T12:38:11Z <p>You can use call to evaluate names later, leading to some useful properties.</p> <pre><code>call set SomeEnvVariable_%extension%=%%%somevalue%%% </code></pre> <p>Using call to set variables whose names depend on other variables. If used with some variable naming rules, you can emulate data collections like arrays or dictionaries by using careful naming rules. The triple %'s around somevalue are so it will evaluate to one variable name surrounded by single %'s after the call and before set is invoked. This means two %'s in a row escape down to a single % character, and then it will expand it again, so somevalue is effectively a name pointer.</p> <pre><code>call set TempVar=%%SomeEnvVariable_%extension%%% </code></pre> <p>Using it with a temp variable to retrieve the value, which you can then use in logic. This most useful when used in conjunction with delayed variable expansion.</p> <p>To use this method properly, delayed variable expansion needs to be enabled. Because it is off by default, it is best to enable it within the script by putting this as one of the first instructions:</p> <pre><code>setlocal EnableDelayedExpansion </code></pre> http://stackoverflow.com/questions/1495916/where-can-i-find-assembler-instruction-specification-info-for-the-motorola-68000 1 Where can I find assembler instruction specification info for the Motorola 68000? Adam K. Johnson 2009-09-30T03:02:40Z 2009-09-30T03:20:10Z <p>I'm looking for information for machine language instruction encoding formats for the Motorola 68000 processor. I have used the <a href="http://rads.stackoverflow.com/amzn/click/0131587420" rel="nofollow">The Motorola Mc68000 Microprocessor Family: Assembly Language, Interface Design, and System Design</a> book for this before, but I no longer own a copy of the book.</p> <p>Does anyone know where I can find this information elsewhere?</p> http://stackoverflow.com/questions/1389928/opengl-in-python-with-snow-leopard/1390361#1390361 3 Answer by Adam K. Johnson for OpenGL in Python with Snow Leopard? Adam K. Johnson 2009-09-07T17:47:23Z 2009-09-07T17:47:23Z <p>I've used <a href="http://pyopengl.sourceforge.net/index.html" rel="nofollow">PyOpenGL</a> 3.0.0 quite successfully on Snow Leopard. It uses ctypes, so it should be making 64-bit calls if those libraries are available (and Snow Leopard's Python includes a 64-bit version). I haven't used the wxPython stuff with PyOpenGL so that's where you might be running into problems, but PyOpenGL also includes GLUT, which both run fine.</p> http://stackoverflow.com/questions/717506/if-monkey-patching-is-permitted-in-both-ruby-and-python-why-is-it-more-controver/726497#726497 1 Answer by Adam K. Johnson for If monkey patching is permitted in both Ruby and Python, why is it more controversial in Ruby? Adam K. Johnson 2009-04-07T16:08:35Z 2009-04-07T16:08:35Z <p>If you want to do some monkey patching in Python, it is relatively easy, as long as you are not modifying a built-in type (int, float, str).</p> <pre><code>class SomeClass: def foo(self): print "foo" def tempfunc(self): print "bar" SomeClass.bar = tempfunc del tempfunc </code></pre> <p>This will add the bar method to SomeClass and even existing instances of that class can use that injected method.</p> http://stackoverflow.com/questions/622371/xcode-code-completition-which-keys/622377#622377 2 Answer by Adam K. Johnson for Xcode code completition - which keys? Adam K. Johnson 2009-03-07T19:55:00Z 2009-03-07T19:55:00Z <p>Do you mean the circle with the arrow coming out of it and pointing to the upper-left? That symbol would mean the escape key. They key combo is option+esc.</p> <p>EDIT: More generally, here is a list for all of the key symbols in OS X: <a href="http://docs.info.apple.com/article.html?path=Mac/10.5/en/cdb_symbs.html" rel="nofollow">http://docs.info.apple.com/article.html?path=Mac/10.5/en/cdb_symbs.html</a></p> http://stackoverflow.com/questions/621933/semicolons-in-c/622370#622370 0 Answer by Adam K. Johnson for Semicolons in C# Adam K. Johnson 2009-03-07T19:53:00Z 2009-03-07T19:53:00Z <p>I would say that the biggest reason that semicolons are necessary after each statement is familiarity for programmers already familiar with C, C++, and/or Java. C# inherits many syntactical choices from those languages and is not simply named similarly to them. Semicolon-terminated statements is just one of the many syntax choices borrowed from those languages.</p> http://stackoverflow.com/questions/593579/what-screen-size-is-better-for-end-user/593731#593731 1 Answer by Adam K. Johnson for What screen size is better for end user Adam K. Johnson 2009-02-27T06:28:23Z 2009-02-27T15:46:24Z <p>I am surprised that nobody has mentioned netbooks. If your application could conceivably run on a netbook, you may want to consider resolutions lower than 1024x768. For instance, the 7" Asus EeePC has a resolution of 800x480 and the 9" to 10" models typically have a resolution of 1024x600.</p> <p>EDIT: Agreed that a flowing layout should be used regardless, but I was talking about the minimum size that should work.</p> http://stackoverflow.com/questions/372042/difference-between-abstract-class-and-interface-in-python/372188#372188 0 Answer by Adam K. Johnson for difference between abstract class and interface in Python Adam K. Johnson 2008-12-16T18:19:55Z 2008-12-16T18:19:55Z <p>In general, interfaces are used only in languages that use the single-inheritance class model. In these single-inheritance languages, interfaces are typically used if any class could use a particular method or set of methods. Also in these single-inheritance languages, abstract classes are used to either have defined class variables in addition to none or more methods, or to exploit the single-inheritance model to limit the range of classes that could use a set of methods. </p> <p>Languages that support the multiple-inheritance model tend to use only classes or abstract base classes and not interfaces. Since Python supports multiple inheritance, it does not use interfaces and you would want to use base classes or abstract base classes.</p> <p><a href="http://docs.python.org/library/abc.html" rel="nofollow">http://docs.python.org/library/abc.html</a></p> http://stackoverflow.com/questions/365522/what-is-the-best-way-to-add-two-numbers-without-using-the-operator/365573#365573 1 Answer by Adam K. Johnson for What is the best way to add two numbers without using the + operator? Adam K. Johnson 2008-12-13T19:01:05Z 2008-12-13T22:32:04Z <p>Note, this would be for an adder known as a ripple-carry adder, which works, but does not perform optimally. Most binary adders built into hardware are a form of fast adder such as a carry-look-ahead adder.</p> <p>My ripple-carry adder works for both unsigned and 2's complement integers if you set carry_in to 0, and 1's complement integers if carry_in is set to 1. I also added flags to show underflow or overflow on the addition.</p> <pre><code>#define BIT_LEN 32 #define ADD_OK 0 #define ADD_UNDERFLOW 1 #define ADD_OVERFLOW 2 int ripple_add(int a, int b, char carry_in, char* flags) { int result = 0; int current_bit_position = 0; char a_bit = 0, b_bit = 0, result_bit = 0; while ((a || b) &amp;&amp; current_bit_position &lt; BIT_LEN) { a_bit = a &amp; 1; b_bit = b &amp; 1; result_bit = (a_bit ^ b_bit ^ carry_in); result |= result_bit &lt;&lt; current_bit_position++; carry_in = (a_bit &amp; b_bit) | (a_bit &amp; carry_in) | (b_bit &amp; carry_in); a &gt;&gt;= 1; b &gt;&gt;= 1; } if (current_bit_position &lt; BIT_LEN) { *flags = ADD_OK; } else if (a_bit &amp; b_bit &amp; ~result_bit) { *flags = ADD_UNDERFLOW; } else if (~a_bit &amp; ~b_bit &amp; result_bit) { *flags = ADD_OVERFLOW; } else { *flags = ADD_OK; } return result; } </code></pre> http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/290462#290462 9 Answer by Adam K. Johnson for Coding in Other (Spoken) Languages Adam K. Johnson 2008-11-14T15:39:54Z 2008-11-18T18:16:34Z <p>I really have not thought too much about programming in Japanese before, but here we go, using the question's code sample.</p> <p>Using only the language statements in Japanese with the variables in English:</p> <pre><code>// In Japanese, it makes more sense to put the keywords/modifiers as // postfix expressions rather than prefix expressions. (i &lt; size)か { (l[i])は { 1だ: 「もしもし。」を書く; 省略時値: 「いいえ、いいですよ。」を書く; } } ない { 「はい、ありがとうございます。」を書く; } </code></pre> http://stackoverflow.com/questions/291853/why-is-orm-considered-good-but-select-considered-bad/291880#291880 1 Answer by Adam K. Johnson for Why is ORM considered good but "select *" considered bad? Adam K. Johnson 2008-11-15T00:37:56Z 2008-11-15T00:44:33Z <p>ORMs in general do not rely on SELECT *, but rely on better methods to find columns like defined data map files (Hibernate, variants of Hibernate, and Apache iBATIS do this). Something a bit more automatic could be set up by querying the database schema to get a list of columns and their data types for a table. How the data gets populated is specific to the particular ORM you are using, and it should be well-documented there.</p> <p>It is never a good idea to select data that you do not use at all, as it can create a needless code dependency that can be obnoxious to maintain later. For dealing with data internal to the class, things are a bit more complicated. </p> <p>A short rule would be to always fetch all the data that the class stores by default. In most cases, a small amount of overhead won't make a huge difference, so your main goal is to reduce maintenance overhead. Later, when you performance profiling of the code, and have reason to believe that it may benefit from adjusting the behavior, that is the time to do it.</p> <p>If I saw an ORM make SELECT * statements, either visibly or under its covers, then I would look elsewhere to fulfill my database integration needs.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/289364#289364 2 Answer by Adam K. Johnson for What are five things you hate about your favorite language? Adam K. Johnson 2008-11-14T06:27:52Z 2008-11-14T06:27:52Z <p>Python:</p> <ol> <li>Global Interpreter Lock - Dealing with this complicates parallel processing.</li> <li>Lambdas functions are a bit clunky.</li> <li>No built-in ordered-dictionary type.</li> <li>Depending on how Python is compiled, it can use either UCS-2 vs UCS-4 for the internal Unicode encoding, many string operators and iterators may have unexpected results for multi-byte characters that exceed the default width. String slicing and iteration depend on the bit width rather than checking and counting characters. (Most other programming languages do similar things as well and have similarly odd behavior with these characters.)</li> <li>There are inconsistencies surrounding GUI frameworks for Python.</li> </ol> http://stackoverflow.com/questions/224485/why-is-my-sql-server-cursor-very-slow/224494#224494 1 Answer by Adam K. Johnson for Why is my SQL Server cursor very slow? Adam K. Johnson 2008-10-22T04:29:54Z 2008-10-22T04:29:54Z <p>I would avoid using a cursor, and work with views or materialized views if possible. Cursors is something that Microsoft doesn't optimize much in SQL Server, because most of the time, you should be using a more general SQL statement (SELECT, INSERT, UPDATE, DELETE) than with a cursor.</p> <p>If you cannot perform the same end result even with using views or subqueries, you may want to use a temp table or look at improving the data model.</p> <p>You don't provide much specific information, so all that I can do is give some general tips.</p> http://stackoverflow.com/questions/203383/best-name-for-array-indexed-by-id-with-boolean-value/203486#203486 0 Answer by Adam K. Johnson for Best name for array indexed by id with boolean value Adam K. Johnson 2008-10-15T02:00:11Z 2008-10-15T02:00:11Z <p>I would agree with other commenters that the question seems to lack proper context for proper concise naming, but something generic like able['foo'], enabled['bar'] or ready['ack'] may work.</p> http://stackoverflow.com/questions/38323/vmware-or-hyper-v-for-developers/38332#38332 9 Answer by Adam K. Johnson for VMware or Hyper-V for Developers Adam K. Johnson 2008-09-01T19:41:48Z 2008-09-01T19:41:48Z <p>VMware did recently release a free version of ESXi recently.</p> <p>VMware has a few advantages:<br /> 1. VMware virtual machines are portable across different types of hardware. IIRC, Hyper-V uses the drivers from the Host OS.<br /> 2. VMware virtual machines are portable across different VMware products (although you may need to use their converter tool to go from some hosted virtual machines to ESX or ESXi).<br /> 3. The VMware platforms have been in use much longer, and are quite mature products and generally better-known for troubleshooting.</p> <p>With VMware, you could develop and test a virtual machine on your local system using VMware Workstation, Fusion, Server, or Player, and then deploy it to a production server later. With Hyper-V, I believe you would have to build the virtual machine on the target box for best results. If performance isn't really that big of an issue, then VMware Server may be the best option, for it can run most .vmx machines directly and is generally a bit easier to manage; if performance becomes critical, you still have the ESX or ESXi upgrade option that you can use those same virtual machines with.</p> <p>This entry talks about how Virtual Server machines will not run on Hyper-V:<br /> <a href="http://blogs.technet.com/jhoward/archive/2008/02/28/are-vhds-compatible-between-hyper-v-and-virtual-server-and-virtual-pc.aspx" rel="nofollow">http://blogs.technet.com/jhoward/archive/2008/02/28/are-vhds-compatible-between-hyper-v-and-virtual-server-and-virtual-pc.aspx</a></p> http://stackoverflow.com/questions/5651/why-are-professors-or-schools-picking-java-over-c-to-teach-to-students/38233#38233 1 Answer by Adam K. Johnson for Why are professors or schools picking Java over C++ to teach to students? Adam K. Johnson 2008-09-01T18:10:38Z 2008-09-01T18:10:38Z <p>Here at the University of Colorado at Boulder, we use Python in the first half of the first CS course and C++ for most of the rest. I am glad that I am expected to deal with a systems-level language for the core courses like data structures and algorithms, having programmed in Basic, C, Java, C#, and others. Some more specialized classes like Operating Systems also deal a bit with x86 assembly.</p> <p>I asked one of the professors about the language choices, and he talked about the following (paraphrased):</p> <ol> <li><p>Python is very useful in the beginning class because it has an interactive interpreter, so students can see what happens with short lines or snippets of code, which helps them quickly learn the basics of programming, while avoiding complexities like compilation. As soon as they start getting comfortable with Python, they start using C++ for the second half of the first CS course, so that they are ready for the later courses.</p></li> <li><p>Using a systems-level programming language teaches data structures and algorithms better because you can better understand how the code interacts with the actual computational hardware, and more so with using a bit of assembler code for students focusing on systems programming.</p></li> <li><p>Dealing with pointers, memory addresses, and manually managing memory is viewed as a vital part of the CS curriculum to produce students who know the finer details of computing theory and practice.</p></li> <li><p>The belief that it is easier to move from C++ to Java, C#, and so on than it is to go the other way around. Even though C++ is not the best language for many tasks, knowing C++ is similar enough to most other languages to pick them up quite easily.</p></li> </ol> http://stackoverflow.com/questions/375913/what-can-i-use-to-profile-c-code-in-linux/375990#375990 Comment by Adam K. Johnson on What can I use to profile C++ code in Linux? Adam K. Johnson 2009-11-11T07:21:03Z 2009-11-11T07:21:03Z Oprofile also seems to work better than gprof for functions coded in assembly than many other tools. http://stackoverflow.com/questions/1713077/python-3-function-list/1713087#1713087 Comment by Adam K. Johnson on Python 3 Function List Adam K. Johnson 2009-11-11T04:52:54Z 2009-11-11T04:52:54Z The official documentation for Python has been good for a while now, and I refer to it frequently. http://stackoverflow.com/questions/1684682/c-calling-conventions-and-passed-arguments Comment by Adam K. Johnson on C calling conventions and passed arguments Adam K. Johnson 2009-11-06T21:22:45Z 2009-11-06T21:22:45Z How C code behaves and how the calling conventions work can be quite different. Here's the System V C calling conventions for i386 if you are curious. It tends to be somewhat vague about certain things, however... <a href="http://www.sco.com/developers/devspecs/abi386-4.pdf" rel="nofollow">sco.com/developers/devspecs/&hellip;</a> http://stackoverflow.com/questions/1684682/c-calling-conventions-and-passed-arguments/1684718#1684718 Comment by Adam K. Johnson on C calling conventions and passed arguments Adam K. Johnson 2009-11-06T21:19:29Z 2009-11-06T21:19:29Z A compiler implements a set of calling conventions for other code and languages to operate with it in compiled code that is the essence of a calling convention and it is distinct from the C language itself, as it is a specific architecture implementation. An implementation can do many things as long as it acts the same for C code, but it could be doing any number of things in machine code to get it done. That is where the calling convention comes in. For i386, Linux uses the System V C calling convention, and OS X uses a modified version of it (mostly alignment restrictions). http://stackoverflow.com/questions/306313/python-is-operator-behaves-unexpectedly-with-integers/306353#306353 Comment by Adam K. Johnson on Python "is" operator behaves unexpectedly with integers Adam K. Johnson 2009-11-06T02:46:49Z 2009-11-06T02:46:49Z The id function is the hash function that is used for dictionaries and such and doesn't have any relation to the &quot;is&quot; operator. The &quot;is&quot; operator is to detect multiple references (aliases) to the same object, not equality or hash equality. For instance for a = b = 20007, a is b <i>should</i> be true. The fact that it works on separate assignments to small integers is just an implementation detail. http://stackoverflow.com/questions/1684682/c-calling-conventions-and-passed-arguments/1684708#1684708 Comment by Adam K. Johnson on C calling conventions and passed arguments Adam K. Johnson 2009-11-06T02:25:26Z 2009-11-06T02:25:26Z Actually, this was from the compiler I was working on, but I was stashing a value that is live later on in the program. I assumed that it was safe and wanted to avoid putting its value on the stack twice (once to save and once for argument passing). http://stackoverflow.com/questions/1684682/c-calling-conventions-and-passed-arguments/1684874#1684874 Comment by Adam K. Johnson on C calling conventions and passed arguments Adam K. Johnson 2009-11-06T02:15:06Z 2009-11-06T02:15:06Z I am not talking about within a language like C or C++ (nor passing by reference/value). I am talking about the actual, runtime stack parameters at the machine level and whether or not those stack locations can be modified be the callee. http://stackoverflow.com/questions/612443/why-does-the-mac-abi-require-16-byte-stack-alignment-for-x86-32/832624#832624 Comment by Adam K. Johnson on Why does the Mac ABI require 16-byte stack alignment for x86-32? Adam K. Johnson 2009-11-06T02:08:35Z 2009-11-06T02:08:35Z It doesn't matter so much that the stack pointer is not aligned at that point because you want the arguments to be aligned in memory. So with your typical stack frame, you are guaranteed that you are 16-byte aligned at 8(%ebp), which is your arguments begin. http://stackoverflow.com/questions/1684682/c-calling-conventions-and-passed-arguments/1684718#1684718 Comment by Adam K. Johnson on C calling conventions and passed arguments Adam K. Johnson 2009-11-06T01:21:10Z 2009-11-06T01:21:10Z I'm not talking about the arguments in C, I am talking about calling C functions from assembly and at the machine level. http://stackoverflow.com/questions/245395/underused-features-of-windows-batch-files/300410#300410 Comment by Adam K. Johnson on Underused features of Windows batch files Adam K. Johnson 2009-10-23T12:17:45Z 2009-10-23T12:17:45Z True, this does need delayed expansion, but you can enable it within your script. I am updating my answer now to include that. http://stackoverflow.com/questions/1495916/where-can-i-find-assembler-instruction-specification-info-for-the-motorola-68000/1495926#1495926 Comment by Adam K. Johnson on Where can I find assembler instruction specification info for the Motorola 68000? Adam K. Johnson 2009-09-30T03:47:32Z 2009-09-30T03:47:32Z Just what I was looking for. Thanks! http://stackoverflow.com/questions/118243/open-multiple-eclipse-workspaces-on-the-mac/118286#118286 Comment by Adam K. Johnson on Open multiple Eclipse workspaces on the Mac Adam K. Johnson 2009-09-07T18:27:50Z 2009-09-07T18:27:50Z The answer is missing some parts of the path. For example, mine is: /Developer/Eclipse/Eclipse.app/Contents/MacOS/eclipse &amp; http://stackoverflow.com/questions/717506/if-monkey-patching-is-permitted-in-both-ruby-and-python-why-is-it-more-controver/717527#717527 Comment by Adam K. Johnson on If monkey patching is permitted in both Ruby and Python, why is it more controversial in Ruby? Adam K. Johnson 2009-04-07T15:21:50Z 2009-04-07T15:21:50Z You can easily get the same effect in Python. Remove the second &quot;class MyClass&quot; line and put &quot;MyClass.bar = bar&quot; at the end after bar is defined. Also, you forgot the self argument for your class functions. http://stackoverflow.com/questions/621933/semicolons-in-c/621939#621939 Comment by Adam K. Johnson on Semicolons in C# Adam K. Johnson 2009-03-07T19:47:49Z 2009-03-07T19:47:49Z Python allows all of your examples without forcing a semicolon, and does use it for multi-statement lines. For strings, multiple lines are done with triple-quotes. Anything with unclosed matching characters like (, [, or {, will combine lines until they are closed, including method calls. http://stackoverflow.com/questions/542382/recommended-os-for-visual-studio-2008/542409#542409 Comment by Adam K. Johnson on Recommended OS for Visual Studio 2008 Adam K. Johnson 2009-02-12T17:38:26Z 2009-02-12T17:38:26Z Windows XP 32-bit and Windows 2003 have different IIS versions. XP has 5.1 and 2003 has 6.0, which adds application pools. However, XP x64 does have IIS 6.0, since it is a Server 2003 spinoff.