Juergen

1,897
Reputation
222 views

Registered User

Name Juergen
Member for 5 months
Seen 5 hours ago
Website
Location
Age
2d
comment How to debug a program that is terminating in an unhandled exception???
right. it should be "throw (long)42;" of course.
2d
revised Set combination question
Deleted wrong comment
2d
revised Set combination question
Permutations is the better Wikipedia-Source in english
2d
answered Set combination question
2d
comment How to debug a program that is terminating in an unhandled exception???
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 ...
2d
answered How to debug a program that is terminating in an unhandled exception???
Nov
23
revised Tuples in Dicts
Do some more explaining
Nov
23
comment Tuples in Dicts
@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.
Nov
23
answered Tuples in Dicts
Nov
23
comment Connecting to a Database
Could anybody explain why the singleton implementation and the part using it, both need "new SQLiteConnection"? I can't read c# so well, but it looks rather strange to me!
Nov
23
revised What is the difference between assembly code and bytecode?
More explaining
Nov
23
comment What is the difference between assembly code and bytecode?
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.
Nov
23
comment What is the difference between assembly code and bytecode?
When you have meant "Assembly Code" this of course is not machine code, since it must be "assembled" by an Assembler first -- the result than is machine code.
Nov
23
comment What is the difference between assembly code and bytecode?
"Assembled code" is also called "machine code" -- just for clarification. See link in my answer.
Nov
23
revised What is the difference between assembly code and bytecode?
More correct wording
Nov
23
revised What is the difference between assembly code and bytecode?
added link
Nov
23
comment What is the difference between assembly code and bytecode?
Once again: Assembly code is not executed by a real CPU. What is executed is "Machine Code". Assembly code is the human readable form of a machine code (or in some cases: byte code).
Nov
23
comment What is the difference between assembly code and bytecode?
Not totally correct. Assembly code is the human readable form of a machine code. Machine code is the native code for a processor.
Nov
23
comment What is the difference between assembly code and bytecode?
assembler is not necessarily a macro language. Assembler in its basic form is just a human readable form of machine code.
Nov
23
answered What is the difference between assembly code and bytecode?
Nov
23
awarded  Nice Answer
Nov
23
accepted Is there any regular expression engine which do Just-In-Time compiling?
Nov
21
revised What is a programming language?
Clarification
Nov
21
comment What is a programming language?
@back2dos: 1. two essential points where described -- meaning, both must hold, one is not enough. This is just logic. 2. your statement about "computation" and "taking action" is just juggling with words. Taking action and computation is essential the same for computers (computing is action for computers!). Also "express computation" 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.
Nov
21
comment What is a programming language?
But what is it, not what does it (in your opinion it seams)?
Nov
21
comment What is a programming language?
I don't see any programming language (yet) that makes my computer understand me (or at least, give a definition of "understand") ...
Nov
21
comment What is a programming language?
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)
Nov
21
answered What is a programming language?
Nov
20
answered Understanding kwargs in Python
Nov
20
answered Is there any regular expression engine which do Just-In-Time compiling?
Nov
20
comment Is there any regular expression engine which do Just-In-Time compiling?
Oh, I see your problem now more clearly.
Nov
20
answered Is there any regular expression engine which do Just-In-Time compiling?
Nov
17
comment Why should exceptions be used conservatively?
Say I. In this thread there where plenty of reasons cited. Just read them. I wanted to describe only one. If it is not the one you needed, don't blame me.
Nov
17
comment Why should exceptions be used conservatively?
I am aware of this behaviour of Python. Python indeed is rather special, since Exceptions are integrated in the runtime in a way that makes their overhead rather low in comparison to other language features -- and Pythons main design goal never was speed. Still I don't believe that you should misuse Exceptions that way -- specially of course not in languages that are not build like Python, since you are always better of, using the tools how they are meant to be used.
Nov
16
comment Why should exceptions be used conservatively?
You are of course right. But still please remember: Every time you use exceptions, the system has to provide the infrastructure to do all this magically. I just wanted to slightly make clear, that it is not only a goto. Also on unwinding, the system has to find the right catching place, what will cost extra time, code and the use of RTTI. So it is much more than a jump -- most people just don't know comprehend this.
Nov
16
comment Why should exceptions be used conservatively?
"it's an implementation detail" I can not remember how often I heard this argument - and it just stinks. Please remember: All Computer stuff is about a sum of implementation details. And also: It is not wise to use a screw driver as replacement of a hammer -- that is what people do, that talk to much about "just implementation details".
Nov
16
answered Why should exceptions be used conservatively?
Nov
16
answered Crash within CString
Nov
16
comment Calling Method from Different Python File
add: Or the local adder would overwrite the imported one of course ... (I would suggest from ... import adder as adder2)
Nov
16
comment Calling Method from Different Python File
This should work, but would overwrite a potential local adder ... _bravado was writing about ...
Nov
16
answered Calling Method from Different Python File
Nov
16
answered Parsing CSV data in python
Nov
5
comment Normalisation in database
@Sachin: Data duplication most of the time tend to become performance relevant, specially of course for updates.
Nov
5
answered Normalisation in database
Nov
3
answered Mount a filesystem using python
Nov
1
awarded  Nice Answer
Oct
30
comment Python and factories
@J.F.Sebastian: You are right. Sometimes you forget it, when in discussion. In some situations (e.g. reading customizing from db) a factory yet might make sense (of course in our simple examples here not).
Oct
30
revised Python and factories
Added more dynamic solution
Oct
30
comment Python and factories
I don't know, if I understand you right. You need more dynamic? This would also work. I will add it to the answer.
Oct
30
revised Python and factories
Corrected silly typo