User Juergen - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T21:19:50Z http://stackoverflow.com/feeds/user/122012 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1789964/set-combination-question/1790023#1790023 0 Answer by Juergen for Set combination question Juergen 2009-11-24T13:22:16Z 2009-11-24T13:37:48Z <p>Try <a href="http://en.wikipedia.org/wiki/Combinatorics" rel="nofollow">Combinatorics</a> or better <a href="http://en.wikipedia.org/wiki/Permutation" rel="nofollow">Permutations</a>.</p> http://stackoverflow.com/questions/1789195/how-to-debug-a-program-that-is-terminating-in-an-unhandled-exception/1789239#1789239 0 Answer by Juergen for How to debug a program that is terminating in an unhandled exception??? Juergen 2009-11-24T10:39:29Z 2009-11-24T10:39:29Z <p>Normally, I would recommend to set a breakpoint in the constructor of the thrown type -- but in this case ... I must admit to never have experienced that somebody has thrown a long like</p> <pre><code>throw 42; </code></pre> <p>That seems to me strange. Some debuggers might be able to catch an exception when it is thrown.</p> <p>Is the called function yours?</p> http://stackoverflow.com/questions/1784973/tuples-in-dicts/1785004#1785004 1 Answer by Juergen for Tuples in Dicts Juergen 2009-11-23T18:18:47Z 2009-11-23T21:01:13Z <p>You can't change a tuple itself. You have to replace it by a different tuple.</p> <p>When you use a list, you could also add values to it (changing the list itself) without need to replace it:</p> <pre><code>&gt;&gt; a = {'list': (23, 32)} &gt;&gt; a {'list': [23, 32]} &gt;&gt; a['list'].append(99) &gt;&gt; a {'list': [23, 32, 99]} </code></pre> <p>In most cases, lists can be used as replacement for tuples (since as much I know they support all tuple functions -- this is duck typing, man!)</p> http://stackoverflow.com/questions/1782415/what-is-the-difference-between-assembly-code-and-bytecode/1783167#1783167 5 Answer by Juergen for What is the difference between assembly code and bytecode? Juergen 2009-11-23T13:36:19Z 2009-11-23T15:24:05Z <p>Assembly code normally does mean the human readable form of a machine's native language (the so called machine language). Byte code on the other hand is normaly a language that can be interpreted by a byte code interpreter -- so it is not the processors native language.</p> <p>Why the confusion then? You can't compare Assembly language versus Byte code this way. Of course a byte code can also have an assembly code -- meaning an human readable form of it, because "Assembly language" does not necessary mean that it is for a real machine -- but it is a human readable form of some native language -- for processors, this native language is the machine code -- but you also can have assembly code of a pseudo-(or interpreted) machine like Bytecode.</p> <p>See also: <a href="http://en.wikipedia.org/wiki/Assembly%5Flanguage" rel="nofollow">Assembly Language</a></p> <p>Further distress comes of course -- like you can see in all the discussion here -- because IT people (also myself) tend to be lax in wording. "Assembly language" is often used when speaking about machine code. This of course is not totally correct, because Assembly Language is only the human readable form of some machines code.</p> http://stackoverflow.com/questions/1775799/what-is-a-programming-language/1775847#1775847 13 Answer by Juergen for What is a programming language? Juergen 2009-11-21T15:54:27Z 2009-11-21T21:44:05Z <p>I think, Wikipedia has got this one very right:</p> <pre><code>A programming language is an artificial language designed to express computations that can be performed by a machine, particularly a computer. </code></pre> <p>The first sentence is enough to describe what it is:</p> <ul> <li>it is an artificial language (that is the root of it)</li> <li>it is designed to express computations that can be performed by a machine (that is the target/purpose of the language)</li> </ul> <p>This is what a programming language is in its most general definition.</p> <p>Your definition lacks this generality (for example your sentences fit rather good for command oriented languages, but not for e.g. logical programming).</p> http://stackoverflow.com/questions/1769403/understanding-kwargs-in-python/1769452#1769452 3 Answer by Juergen for Understanding kwargs in Python Juergen 2009-11-20T09:51:25Z 2009-11-20T09:51:25Z <p>kwargs is just a dictionary that is added to the parameters.</p> <p>A dictionary can contain key, value pairs. And that are the kwargs. Ok, this is how.</p> <p>The whatfor is not so simple.</p> <p>For example (very hypothetical) you have an interface that just calls other routines to do the job:</p> <pre><code>def myDo(what, where, why): if what == 'swim': doSwim(where, why) elif what == 'walk': doWalk(where, why) ... </code></pre> <p>Now you get a new method "drive":</p> <pre><code>elif what == 'drive': doDrive(where, why, vehicle) </code></pre> <p>But wait a minute, there is a new parameter "vehicle" -- you did not know it before. Now you must add it to the signature of the myDo-function.</p> <p>Here you can throw kwargs into play:</p> <pre><code>def myDo(what, where, why, **kwargs): if what == 'drive': doDrive(where, why, **kwargs) elif what == 'swim': doSwim(where, why, **kwargs) </code></pre> <p>This way you don't need to change the signature of your interface function every time some of your called routines might change.</p> <p>This is just one nice example you could find kwargs helpful.</p> http://stackoverflow.com/questions/1769023/is-there-any-regular-expression-engine-which-do-just-in-time-compiling/1769392#1769392 2 Answer by Juergen for Is there any regular expression engine which do Just-In-Time compiling? Juergen 2009-11-20T09:38:52Z 2009-11-20T09:38:52Z <p>Another idea: When you have a library (in C) that is more optimal than the Python regex module or that does just-in-time compilation of Regexes, then you could write your own regex module for python that does just wrap your C-Library.</p> <p>That of course is somewhat more work and only recommended when you really, really need the speed.</p> <p>You could also try <a href="http://www.cython.org/" rel="nofollow">Cython</a> (personally I did not use it yet, but it sounds rather good) to do the job of wrapping.</p> <p>As much as I understand your problem now, the Python surrounding is not your problem (so I doubt whether psyco will help) -- also the preparation of the regex-run is not your problem, but the run itself must be top-speed. That of course depends on the library you use and how good it can handle large strings. I would think, that the standard python regex-lib is not optimized for such long strings and top-of-the-notch speed.</p> http://stackoverflow.com/questions/1769023/is-there-any-regular-expression-engine-which-do-just-in-time-compiling/1769147#1769147 1 Answer by Juergen for Is there any regular expression engine which do Just-In-Time compiling? Juergen 2009-11-20T08:52:40Z 2009-11-20T08:52:40Z <p>I don't see it in your question, so I ask: Did you test with precompiled regular expressions e.g. "re.compile(pattern)" ??</p> <p>Since compiled regexes should be faster. OK, it is not JIT, but most of the time you are fine with simply precompiled ones!</p> <p>See here:</p> <p><a href="http://docs.python.org/library/re.html#re.compile" rel="nofollow">re.compile</a></p> http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1744242#1744242 0 Answer by Juergen for Why should exceptions be used conservatively? Juergen 2009-11-16T19:16:52Z 2009-11-16T19:16:52Z <p>I think, "use it rarely" ist not the right sentence. I would prefer "throw only in exceptional situations".</p> <p>Many have explained, why exceptions should not used in normal situations. Exceptions have their right for error handling and purely for error handling.</p> <p>I will focus on an other point:</p> <p>An other thing is the performance issue. Compilers struggled long to get them fast. I am not sure, how the exact state is now, but when you use exceptions for control flow, than you will get an other trouble: Your program will become slow!</p> <p>The reason is, that exceptions are not only very mighty goto-statements, they also have to unwind the stack for all the frames they leave. Thus implicitely also the objects on stack have to be deconstructed and so on. So without be aware of it, one single throw of an exception will really get a whole bunch of mechanics be involved. The processor will have to do a mighty lot.</p> <p>So you will end up, elegantly burning your processor without knowing.</p> <p>So: use exceptions only in exceptional cases -- Meaning: When real errors occured!</p> http://stackoverflow.com/questions/1742282/crash-within-cstring/1742685#1742685 4 Answer by Juergen for Crash within CString Juergen 2009-11-16T15:00:19Z 2009-11-16T15:00:19Z <p>I have a suggestion that might be a little frustrating for you:</p> <p>CString::AllocBeforeWrite does implicate to me, that the system tries to allocate some memory.</p> <p>Could it be, that some other memory operation (specially freeing or resizing of memory) is corrupted before?</p> <p>A typical problem with C/C++ memory management is, that an error on freeing (or resizing) memory (for example two times freeing the same junk of memory) will not crash the system immediatly but can cause dumps much later -- specially when new memory is to be allocated.</p> <p>Your situation looks to me quite like that.</p> <p>The bad thing is:</p> <p>It can be very difficult to find the place where the real error occurs -- where the heap is corrupted in the first place.</p> <p>This also can be the reason, why your problem only occurs once in a while. It could depend on some complicated situation beforehand.</p> http://stackoverflow.com/questions/1742430/calling-method-from-different-python-file/1742467#1742467 3 Answer by Juergen for Calling Method from Different Python File Juergen 2009-11-16T14:22:18Z 2009-11-16T14:22:18Z <p>Normally you import "modules"</p> <p>I would suggest:</p> <pre><code>from Example2 import views as views2 x = views2.adder(1, 2) </code></pre> <p>I hope, I got this right, since I did not use packages till now ;-)</p> http://stackoverflow.com/questions/1742236/parsing-csv-data-in-python/1742287#1742287 2 Answer by Juergen for Parsing CSV data in python Juergen 2009-11-16T13:45:54Z 2009-11-16T13:45:54Z <p>Are you sure, you got this response.</p> <p>Looks corrupted to me. In this case, no reader will be able to make sense of it.</p> <p>First fix the response, then parsing will be better ....</p> http://stackoverflow.com/questions/1679753/normalisation-in-database/1679820#1679820 1 Answer by Juergen for Normalisation in database Juergen 2009-11-05T11:03:36Z 2009-11-05T11:03:36Z <p>I would recommend that you do not only think about "performance issues".</p> <p>Maintainability of a db is also a very big issue!</p> <p>When you have to change one address in the db and you have to change entries in three or more tables (uniformically) than you have a maintainance problem. Also this can be a performance issue.</p> http://stackoverflow.com/questions/1667257/mount-a-filesystem-using-python/1667328#1667328 2 Answer by Juergen for Mount a filesystem using python Juergen 2009-11-03T13:25:15Z 2009-11-03T13:25:15Z <p>Badly, mounting and unmounting belongs to the things that are highly system dependent and since they are</p> <ul> <li>rarely used and</li> <li>can affect system stability</li> </ul> <p>There is no solution that is portable available. Since that, I agree with Ferdinand Beyer, that it is unlikely, a general Python solution is existing.</p> http://stackoverflow.com/questions/1651593/python-and-factories/1651707#1651707 11 Answer by Juergen for Python and factories Juergen 2009-10-30T18:59:44Z 2009-10-30T19:35:00Z <p>Your code is counter-productive (sorry, I must say it).</p> <p>The sense of a factory is, that you don't have to know the class of your constructed object at the position where you create it.</p> <p>The reason is, that object creation creates a gap in object oriented abstraction. You must be concrete in creating the object. But sometimes you just want to create an object with some behaviour but somebody else should decide (centrally) what concrete class it is.</p> <p>For example you must create one kind of object in 100 places. But later you might find out, that you must change the class -- you would have to change all those places.</p> <p>The factory will eliminate this need by defining one place that you must change.</p> <p>The simplest factory would be:</p> <pre><code>def fabricateAnotherObject(self, **kwargs): return testClass(**kwargs) </code></pre> <p>Of course, this might be of little help in some situations. So some factories might also load the class names from db or some other configuration. But the most simple solution is a hard-coded construction of the object -- only this method must be changed in our example, when you choose to always call this method.</p> <p>A somewhat more dynamic solution (without need for a db):</p> <pre><code>class Factory(object): def __init__(self, theClass): self.theClass = theClass def create(self, **kwargs): self.theClass(**kwargs) myFactory = Factory(testClass) </code></pre> <p>The myFactory instance can be used in different locations for creating the correct instances. The problem is, how to initialize myFactory -- in some special module??</p> http://stackoverflow.com/questions/1651154/why-are-default-arguments-evaluated-at-definition-time-in-python/1651220#1651220 4 Answer by Juergen for Why are default arguments evaluated at definition time in Python? Juergen 2009-10-30T17:26:59Z 2009-10-30T17:26:59Z <p>Of course in your situation it is difficult to understand. But you must see, that evaluating default args every time would lay a heavy runtime burden on the system.</p> <p>Also you should know, that in case of container types this problem may occur -- but you could circumvent it by making the thing explicit:</p> <pre><code>def __init__(self, children = None): if children is None: children = [] self.children = children </code></pre> http://stackoverflow.com/questions/1631051/best-practices-for-using-sqlite-for-a-database-queue/1631093#1631093 1 Answer by Juergen for best practices for using sqlite for a database queue Juergen 2009-10-27T14:12:00Z 2009-10-27T14:12:00Z <p>Normally, with SQLite there are explicit (not implicit!) transactions. So you need something like "START TRANSACTION" of course, it could be that your Java binding has this incorporated -- but good bindings don't.</p> <p>So you might want to add the necessary transaction start (there might be a specialiced method in your binding).</p> http://stackoverflow.com/questions/1548026/should-software-be-designed-with-performance-in-mind/1548067#1548067 2 Answer by Juergen for Should software be designed with performance in mind? Juergen 2009-10-10T14:17:55Z 2009-10-10T14:17:55Z <p>I would say, that this is what makes the difference of a experienced software engineer and a software-newbie.</p> <p>An experienced software engineer should always keep in mind the performance issues of his design.</p> <p>Example: When you have an algorithm with O(n^3) performance behaviour inside your module with possible increasing n, the situation can arise, that your module will become very slow in circumstances.</p> <p>Of course, there are many differences. When you have O(n^3) on an in-memory array, it might be less problematic as an O(n^2) on a disk operation.</p> <p>So, experience is important to think about those things and to decide where the design must be changed or where a later tweaking can make it faster without problems.</p> http://stackoverflow.com/questions/1251392/read-from-socket-is-it-guaranteed-to-at-least-get-x-bytes 2 Read from socket: Is it guaranteed to at least get x bytes? Juergen 2009-08-09T13:35:11Z 2009-09-27T22:15:33Z <p>I have a rare bug that seems to occur reading a socket.</p> <p>It seems, that during reading of data sometimes I get only 1-3 bytes of a data package that is bigger than this.</p> <p>As I learned from pipe-programming, there I always get at least 512 bytes as long as the sender provides enough data.</p> <p>Also my sender does at least transmit >= 4 Bytes anytime it does transmit anything -- so I was thinking that at least 4 bytes will be received at once in the beginning (!!) of the transmission.</p> <p>In 99.9% of all cases, my assumption seems to hold ... but there are really rare cases, when less than 4 bytes are received. It seems to me ridiculous, why the networking system should do this?</p> <p>Does anybody know more?</p> <p>Here is the reading-code I use:</p> <pre><code>mySock, addr = masterSock.accept() mySock.settimeout(10.0) result = mySock.recv(BUFSIZE) # 4 bytes are needed here ... ... # read remainder of datagram ... </code></pre> <p>The sender sends the complete datagram with one call of send.</p> <p>Edit: the whole thing is working on localhost -- so no complicated network applications (routers etc.) are involved. BUFSIZE is at least 512 and the sender sends at least 4 bytes.</p> http://stackoverflow.com/questions/1445686/remove-colon-using-vi/1445703#1445703 3 Answer by Juergen for Remove colon using VI Juergen 2009-09-18T16:51:54Z 2009-09-18T16:51:54Z <p>Normally, vi uses the character that follows the command letter as seperator.</p> <p>Try this:</p> <pre><code>s!24:00:00 CDT!!g </code></pre> http://stackoverflow.com/questions/1438471/is-it-good-to-store-long-strings-in-a-database/1438570#1438570 7 Answer by Juergen for Is it good to store long strings in a database? Juergen 2009-09-17T12:29:49Z 2009-09-17T12:29:49Z <p>The strings you mention are not at all long.</p> <p>When you refered to "long" strings, I was thinking about 32kB and above -- some sentences are &lt;1kb -- that is nothing today.</p> <p>Your trick, storing an Id makes the things slower since you have to make an indirect access.</p> <p>The only thing I would recommend, when maximum performance is needed, you should select only those columns that you need (omit SELECT *) -- so omit the text column, when not needed, since the transport of the string from server to application costs the most time. It is a good praxis, not to touch columns not needed (specially when they might contain much data).</p> http://stackoverflow.com/questions/1435415/python-memory-leaks/1435485#1435485 2 Answer by Juergen for Python memory leaks Juergen 2009-09-16T21:08:54Z 2009-09-16T21:08:54Z <p>You should specially have a look on your global or static data (long living data).</p> <p>When this data grows without restriction, you can also get troubles in Python.</p> <p>The garbage collector can only collect data, that is not referenced any more. But your static data can hookup data elements that should be freed.</p> <p>An other problem can be memory cycles, but at least in theory the Garbage collector should find and eliminate cycles -- at least as long as they are not hooked on some long living data.</p> <p>What kinds of long living data are specially troublesome? Have a good look on any lists and dictionaries -- they can grow without any limit. In dictionaries you might even don't see the trouble coming since when you access dicts, the number of keys in the dictionary might not be of big visibility to you ...</p> http://stackoverflow.com/questions/1321493/sqlite-for-client-server/1321604#1321604 1 Answer by Juergen for SQLite for client-server Juergen 2009-08-24T10:32:43Z 2009-08-24T10:32:43Z <p>I would confirm to S.Lott's answer.</p> <p>I dont know how SQLite performs in comparison to PostgreSQL, since I don't know any newer meassurements, but my own experience with SQLite in a rather similar environment is rather good.</p> <p>The only thing that might cause troubles in my view is that you have rather many writes. But it all depends on the total number per second I would say.</p> <p>Also your setting to have one server process is optimal for SQLite in my opinion -- so you circumvent its weakness in multi-tasking.</p> http://stackoverflow.com/questions/1212434/how-to-create-a-property-with-its-name-in-a-string/1212588#1212588 1 Answer by Juergen for How to create a property with its name in a string? Juergen 2009-07-31T13:38:45Z 2009-08-24T09:02:43Z <p>As much I would say, the difference is, that in the first version, you change the classes attribute blah to the result of property and in the second you set it at the instance (which is different!).</p> <p>How about this version:</p> <pre><code>setattr(MyClass, "blah", property(self.get_blah, self.set_blah, self.del_blah, "bleh blih")) </code></pre> <p>you can also do this:</p> <pre><code>setattr(type(self), "blah", property(self.get_blah, self.set_blah, self.del_blah, "bleh blih")) </code></pre> http://stackoverflow.com/questions/1305004/in-sqlite3-will-this-select-statement-benefit-from-two-indexes/1309040#1309040 0 Answer by Juergen for In SQLite3, will this select statement benefit from two indexes? Juergen 2009-08-20T21:49:37Z 2009-08-20T21:58:20Z <p>As much as I remember the SQLite documentation, SQLite always uses <em>only</em> <strong>one</strong> index.</p> <p>So you are bound to fail here. But you could create one index containing all relevant fields (though this might create additional memory consumption for index size and will slow down inserts and updates).</p> <p>Correction: In the newest documentation, it says that the optimizer tries to use "at least one index" see the <a href="http://www.sqlite.org/optoverview.html" rel="nofollow">optimizer docu</a>. It seams, that it was upgraded a little -- but still it is not clear when it uses multiple indizes. So you have to use "EXPLAIN QUERY PLAN" as statet by wierob.</p> http://stackoverflow.com/questions/1274432/sqlite-parameters-not-allowing-tablename-as-parameter/1274494#1274494 1 Answer by Juergen for SQLite Parameters - Not allowing tablename as parameter Juergen 2009-08-13T20:50:19Z 2009-08-13T20:50:19Z <p>I must admit that I did never try this. But it could totally be, because when the table is not known, the compilation of the statement is much more difficult and the generated code must be much more generic ...</p> <p>Please note: SQLite is a lightweight database ...</p> http://stackoverflow.com/questions/1274405/how-to-create-new-folder/1274436#1274436 5 Answer by Juergen for How to create new folder? Juergen 2009-08-13T20:39:10Z 2009-08-13T20:39:10Z <p>Have you tried os.mkdir?</p> <p>You might also try this little code snipped:</p> <pre><code>mypath = ... if not os.path.isdir(mypath): os.makedirs(mypath) </code></pre> <p>makedirs does create multiple levels of directories, if needed.</p> http://stackoverflow.com/questions/1221796/good-and-small-open-source-database-for-teaching/1222023#1222023 1 Answer by Juergen for Good and small open source database for teaching Juergen 2009-08-03T12:17:08Z 2009-08-03T12:17:08Z <p>I also would recommend SQLite, since you could do "EXPLAIN" on any statement and get the internal Pseudo-Code that implements the functionality.</p> <p>The Pseudo-Code itself is documented and gives great example how a database could work internally. I myself learned a lot by looking at the explained statements.</p> http://stackoverflow.com/questions/1219815/python-prefer-several-small-modules-or-one-larger-module/1219867#1219867 2 Answer by Juergen for Python: prefer several small modules or one larger module? Juergen 2009-08-02T21:11:27Z 2009-08-02T21:11:27Z <p>Off course you can have as many modules as you like.</p> <p>But now let as think a little, what happens when we put every small code snippet into one single file.</p> <p>We will end up in hundreds of import statements in any less trivial module. And off course you could also save a little by having all explicit in seperated files. But guess what: Nobody can remember so many module names and you might end up in searching for the right file anyway ...</p> <p>I try to put things that belong together in one single file (unless it becomes to big!). But when I have small functions or classes that do not belong to other components in my system, I have "util" modules or the like. I also try to group these for example according to my application layering or seperate them by other means. One seperation criteria could be: Utilities that are used for UI and those that are not.</p> http://stackoverflow.com/questions/1197319/is-a-switch-statement-applicable-in-a-factory-method-c/1197348#1197348 2 Answer by Juergen for Is a switch statement applicable in a factory method? c# Juergen 2009-07-28T23:45:28Z 2009-07-28T23:49:13Z <p>I dont know, which possibilities you have in c#, but it is still better to have one switch in a factory method than having switches all over the place. In a factory method, a switch is tolerable -- but better have it well documented.</p> http://stackoverflow.com/questions/1789195/how-to-debug-a-program-that-is-terminating-in-an-unhandled-exception/1789239#1789239 Comment by Juergen on How to debug a program that is terminating in an unhandled exception??? Juergen 2009-11-27T11:07:15Z 2009-11-27T11:07:15Z Right, I did not program in C++ for a long time ;-) http://stackoverflow.com/questions/1789195/how-to-debug-a-program-that-is-terminating-in-an-unhandled-exception/1789239#1789239 Comment by Juergen on How to debug a program that is terminating in an unhandled exception??? Juergen 2009-11-24T17:55:54Z 2009-11-24T17:55:54Z right. it should be &quot;throw (long)42;&quot; of course. http://stackoverflow.com/questions/1789195/how-to-debug-a-program-that-is-terminating-in-an-unhandled-exception/1789239#1789239 Comment by Juergen on How to debug a program that is terminating in an unhandled exception??? Juergen 2009-11-24T11:35:54Z 2009-11-24T11:35:54Z That's the reason, the biggest computer ever build needs 7.5 million years to calculate it ;-) just because some ignorant code reviewers eliminated the line ... http://stackoverflow.com/questions/1784973/tuples-in-dicts/1785004#1785004 Comment by Juergen on Tuples in Dicts Juergen 2009-11-23T20:55:57Z 2009-11-23T20:55:57Z @SilentGhost: don't be shy, tell it to me! BTW: I did not intent to give a full answer, since you already gave some good advice. I only wanted to add information about lists. http://stackoverflow.com/questions/1784252/connecting-to-a-database Comment by Juergen on Connecting to a Database Juergen 2009-11-23T16:38:27Z 2009-11-23T16:38:27Z Could anybody explain why the singleton implementation and the part using it, both need &quot;new SQLiteConnection&quot;? I can't read c# so well, but it looks rather strange to me! http://stackoverflow.com/questions/1782415/what-is-the-difference-between-assembly-code-and-bytecode/1782463#1782463 Comment by Juergen on What is the difference between assembly code and bytecode? Juergen 2009-11-23T15:20:03Z 2009-11-23T15:20:03Z IMHO you mix things up, since IT people are often lax in their wording, things get confusing. Assembly language is a human readable representation of some machine language (can also be a virtual machine -- e.g. bytecode) period. See the wikipedia article I linked in my answer. http://stackoverflow.com/questions/1782415/what-is-the-difference-between-assembly-code-and-bytecode/1783244#1783244 Comment by Juergen on What is the difference between assembly code and bytecode? Juergen 2009-11-23T14:03:11Z 2009-11-23T14:03:11Z When you have meant &quot;Assembly Code&quot; this of course is not machine code, since it must be &quot;assembled&quot; by an Assembler first -- the result than is machine code. http://stackoverflow.com/questions/1782415/what-is-the-difference-between-assembly-code-and-bytecode/1783244#1783244 Comment by Juergen on What is the difference between assembly code and bytecode? Juergen 2009-11-23T14:01:12Z 2009-11-23T14:01:12Z &quot;Assembled code&quot; is also called &quot;machine code&quot; -- just for clarification. See link in my answer. http://stackoverflow.com/questions/1782415/what-is-the-difference-between-assembly-code-and-bytecode/1782459#1782459 Comment by Juergen on What is the difference between assembly code and bytecode? Juergen 2009-11-23T13:40:42Z 2009-11-23T13:40:42Z Once again: Assembly code is not executed by a real CPU. What is executed is &quot;Machine Code&quot;. Assembly code is the human readable form of a machine code (or in some cases: byte code). http://stackoverflow.com/questions/1782415/what-is-the-difference-between-assembly-code-and-bytecode/1782463#1782463 Comment by Juergen on What is the difference between assembly code and bytecode? Juergen 2009-11-23T13:38:46Z 2009-11-23T13:38:46Z Not totally correct. Assembly code is the human readable form of a machine code. Machine code is the native code for a processor. http://stackoverflow.com/questions/1782415/what-is-the-difference-between-assembly-code-and-bytecode/1782470#1782470 Comment by Juergen on What is the difference between assembly code and bytecode? Juergen 2009-11-23T13:37:11Z 2009-11-23T13:37:11Z assembler is not necessarily a macro language. Assembler in its basic form is just a human readable form of machine code. http://stackoverflow.com/questions/1775799/what-is-a-programming-language/1775847#1775847 Comment by Juergen on What is a programming language? Juergen 2009-11-21T19:00:10Z 2009-11-21T19:00:10Z @back2dos: 1. two essential points where described -- meaning, both must hold, one is <i>not</i> enough. This is just logic. 2. your statement about &quot;computation&quot; and &quot;taking action&quot; is just juggling with words. Taking action and computation is essential the same for computers (computing is action for computers!). Also &quot;express computation&quot; does not mean that it actually is translated -- but it is aimed to. And this is rather the same thing you wrote -- juggling with words making the thing less obvious. http://stackoverflow.com/questions/1775799/what-is-a-programming-language/1775852#1775852 Comment by Juergen on What is a programming language? Juergen 2009-11-21T15:59:20Z 2009-11-21T15:59:20Z But what <i>is</i> it, not what does it (in your opinion it seams)? http://stackoverflow.com/questions/1775799/what-is-a-programming-language/1775830#1775830 Comment by Juergen on What is a programming language? Juergen 2009-11-21T15:57:16Z 2009-11-21T15:57:16Z I don't see any programming language (yet) that makes my computer understand me (or at least, give a definition of &quot;understand&quot;) ... http://stackoverflow.com/questions/1775799/what-is-a-programming-language/1775827#1775827 Comment by Juergen on What is a programming language? Juergen 2009-11-21T15:55:57Z 2009-11-21T15:55:57Z A language has always a syntax -- so you don't need to express it specially -- Wikipedias definition is more slim and complete (see my answer on that)