User Adam K. Johnson - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T03:19:42Zhttp://stackoverflow.com/feeds/user/4081http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1684682/c-calling-conventions-and-passed-arguments2C calling conventions and passed argumentsAdam K. Johnson2009-11-06T00:45:30Z2009-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#3004105Answer by Adam K. Johnson for Underused features of Windows batch filesAdam K. Johnson2008-11-18T22:40:14Z2009-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-680001Where can I find assembler instruction specification info for the Motorola 68000?Adam K. Johnson2009-09-30T03:02:40Z2009-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#13903613Answer by Adam K. Johnson for OpenGL in Python with Snow Leopard?Adam K. Johnson2009-09-07T17:47:23Z2009-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#7264971Answer by Adam K. Johnson for If monkey patching is permitted in both Ruby and Python, why is it more controversial in Ruby?Adam K. Johnson2009-04-07T16:08:35Z2009-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#6223772Answer by Adam K. Johnson for Xcode code completition - which keys?Adam K. Johnson2009-03-07T19:55:00Z2009-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#6223700Answer by Adam K. Johnson for Semicolons in C#Adam K. Johnson2009-03-07T19:53:00Z2009-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#5937311Answer by Adam K. Johnson for What screen size is better for end userAdam K. Johnson2009-02-27T06:28:23Z2009-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#3721880Answer by Adam K. Johnson for difference between abstract class and interface in PythonAdam K. Johnson2008-12-16T18:19:55Z2008-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#3655731Answer by Adam K. Johnson for What is the best way to add two numbers without using the + operator?Adam K. Johnson2008-12-13T19:01:05Z2008-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) && current_bit_position < BIT_LEN) {
a_bit = a & 1;
b_bit = b & 1;
result_bit = (a_bit ^ b_bit ^ carry_in);
result |= result_bit << current_bit_position++;
carry_in = (a_bit & b_bit) | (a_bit & carry_in) | (b_bit & carry_in);
a >>= 1;
b >>= 1;
}
if (current_bit_position < BIT_LEN) {
*flags = ADD_OK;
}
else if (a_bit & b_bit & ~result_bit) {
*flags = ADD_UNDERFLOW;
}
else if (~a_bit & ~b_bit & result_bit) {
*flags = ADD_OVERFLOW;
}
else {
*flags = ADD_OK;
}
return result;
}
</code></pre>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/290462#2904629Answer by Adam K. Johnson for Coding in Other (Spoken) LanguagesAdam K. Johnson2008-11-14T15:39:54Z2008-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 < size)か {
(l[i])は {
1だ:
「もしもし。」を書く;
省略時値:
「いいえ、いいですよ。」を書く;
}
} ない {
「はい、ありがとうございます。」を書く;
}
</code></pre>
http://stackoverflow.com/questions/291853/why-is-orm-considered-good-but-select-considered-bad/291880#2918801Answer by Adam K. Johnson for Why is ORM considered good but "select *" considered bad? Adam K. Johnson2008-11-15T00:37:56Z2008-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#2893642Answer by Adam K. Johnson for What are five things you hate about your favorite language?Adam K. Johnson2008-11-14T06:27:52Z2008-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#2244941Answer by Adam K. Johnson for Why is my SQL Server cursor very slow?Adam K. Johnson2008-10-22T04:29:54Z2008-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#2034860Answer by Adam K. Johnson for Best name for array indexed by id with boolean valueAdam K. Johnson2008-10-15T02:00:11Z2008-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#383329Answer by Adam K. Johnson for VMware or Hyper-V for DevelopersAdam K. Johnson2008-09-01T19:41:48Z2008-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#382331Answer by Adam K. Johnson for Why are professors or schools picking Java over C++ to teach to students?Adam K. Johnson2008-09-01T18:10:38Z2008-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#375990Comment by Adam K. Johnson on What can I use to profile C++ code in Linux?Adam K. Johnson2009-11-11T07:21:03Z2009-11-11T07:21:03ZOprofile 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#1713087Comment by Adam K. Johnson on Python 3 Function ListAdam K. Johnson2009-11-11T04:52:54Z2009-11-11T04:52:54ZThe 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-argumentsComment by Adam K. Johnson on C calling conventions and passed argumentsAdam K. Johnson2009-11-06T21:22:45Z2009-11-06T21:22:45ZHow 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/…</a>http://stackoverflow.com/questions/1684682/c-calling-conventions-and-passed-arguments/1684718#1684718Comment by Adam K. Johnson on C calling conventions and passed argumentsAdam K. Johnson2009-11-06T21:19:29Z2009-11-06T21:19:29ZA 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#306353Comment by Adam K. Johnson on Python "is" operator behaves unexpectedly with integersAdam K. Johnson2009-11-06T02:46:49Z2009-11-06T02:46:49ZThe id function is the hash function that is used for dictionaries and such and doesn't have any relation to the "is" operator. The "is" 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#1684708Comment by Adam K. Johnson on C calling conventions and passed argumentsAdam K. Johnson2009-11-06T02:25:26Z2009-11-06T02:25:26ZActually, 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#1684874Comment by Adam K. Johnson on C calling conventions and passed argumentsAdam K. Johnson2009-11-06T02:15:06Z2009-11-06T02:15:06ZI 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#832624Comment by Adam K. Johnson on Why does the Mac ABI require 16-byte stack alignment for x86-32?Adam K. Johnson2009-11-06T02:08:35Z2009-11-06T02:08:35ZIt 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#1684718Comment by Adam K. Johnson on C calling conventions and passed argumentsAdam K. Johnson2009-11-06T01:21:10Z2009-11-06T01:21:10ZI'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#300410Comment by Adam K. Johnson on Underused features of Windows batch filesAdam K. Johnson2009-10-23T12:17:45Z2009-10-23T12:17:45ZTrue, 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#1495926Comment by Adam K. Johnson on Where can I find assembler instruction specification info for the Motorola 68000?Adam K. Johnson2009-09-30T03:47:32Z2009-09-30T03:47:32ZJust what I was looking for. Thanks!http://stackoverflow.com/questions/118243/open-multiple-eclipse-workspaces-on-the-mac/118286#118286Comment by Adam K. Johnson on Open multiple Eclipse workspaces on the MacAdam K. Johnson2009-09-07T18:27:50Z2009-09-07T18:27:50ZThe answer is missing some parts of the path. For example, mine is: /Developer/Eclipse/Eclipse.app/Contents/MacOS/eclipse &http://stackoverflow.com/questions/717506/if-monkey-patching-is-permitted-in-both-ruby-and-python-why-is-it-more-controver/717527#717527Comment by Adam K. Johnson on If monkey patching is permitted in both Ruby and Python, why is it more controversial in Ruby?Adam K. Johnson2009-04-07T15:21:50Z2009-04-07T15:21:50ZYou can easily get the same effect in Python. Remove the second "class MyClass" line and put "MyClass.bar = bar" 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#621939Comment by Adam K. Johnson on Semicolons in C#Adam K. Johnson2009-03-07T19:47:49Z2009-03-07T19:47:49ZPython 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#542409Comment by Adam K. Johnson on Recommended OS for Visual Studio 2008Adam K. Johnson2009-02-12T17:38:26Z2009-02-12T17:38:26ZWindows 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.