1,632 reputation
517
bio website
location
age
visits member for 2 years, 3 months
seen May 10 at 9:30
stats profile views 124

1h
awarded  Popular Question
Apr
24
comment Why are these Javascript for loops significantly slower on Firefox then Chrome / Safari?
@TerryE If you'd have read what I said earlier I said it most likely isn't the case, but I'm 100% certain that there are scenario's where it could happen. Finding those specific ones would be extremely challenging though, and it'd most likely be near arbitrary. My original point was and still is that even though this answer isn't correct, your justification for it being incorrect isn't completely correct either. I know the doc doesn't say that i=i+j doesn't compile down to a subroutine call, but it shows ideas that prevent the need of them in some scenario's so it's not always the case.
Apr
19
comment Why are these Javascript for loops significantly slower on Firefox then Chrome / Safari?
@TerryE Dynamically and weak typed languages can also benefit greatly from JIT compilation. And no, at best it's not just a string of subroutine calls. I recommend that you look at some of the specifics such as the design docs and others of those compilers before jumping to conclusions about what they can and can't do. I recommend you check your 'facts' before just spitting them out, misinformation can be harmful.
Apr
16
comment Lambda to Expression tree conversion
This does not give you the expression tree of the original lamda, it gives you a new expression tree that calls the delegate. Nothing more.
Apr
12
comment GOTO still considered harmful?
@stivlo But most of my code has 3 levels of indentation by default :(. 1 for the namespace, 2 for the class, and 3 for the method.
Apr
11
comment Is there a way to escape a CDATA end token in xml?
This way of saying it gives people the wrong idea. This is not escaping. ]]]]><![CDATA[> isn't some magical sequence for ]]>. ]]]]> has ]] characters as data, and ]]> ends the current CDATA section. <![CDATA[> starts a new CDATA section and puts > in it. They are actually two different elements and will be treated differently when working with a DOM parser. You should be aware of that. This way of doing it is similar to ]]]><![CDATA[]>, except it puts ] in the first and ]> in the second CDATA. The difference remains.
Apr
8
comment Why are these Javascript for loops significantly slower on Firefox then Chrome / Safari?
@TerryE What you're saying is wrong. It does not compile to bytecode, it compiles to native machine code. Other languages such as Lua are compiled to bytecode and then interpret, but that's not usually called JIT compiling. LuaJIT however compiles to byte and then to native machine code, just like the .Net Framework and Java. Back to JS, the V8 engine compiles to native machine code. SpiderMonkey contains several JIT compilers and is currently using IonMonkey which compiles bytecode into native code.
Apr
5
comment Why are these Javascript for loops significantly slower on Firefox then Chrome / Safari?
@TerryE Some minor corrections to that are that. 1. ECMAScript is a language and it doesn't define whether it's being interpreted or compiled, that's done by the engine. 2. Modern engines (V8 and SpiderMonkey) are both Just-In-Time Compilers, they both compile JS to opcodes in a memory region and then execute that memory region. That doesn't change that a single assignment requires more opcodes than an assignment in C, but it's not 1000s of CPU instructions.
Mar
14
comment In Lua, what is the right way to handle varargs which contains nil?
A most useful addition is that you cannot just unpack the table anymore. In order to unpack use: local tbl = { n = select("#", ...), ... }; print(unpack(tbl, 1, tbl.n));
Mar
11
comment LAST_INSERT_ID() MySQL
@RobStarling I totally agree, but in case somebody absolutely needs it; use a transaction with the proper isolation level.
Mar
8
awarded  Popular Question
Feb
11
awarded  Yearling
Jan
21
comment Are C# Strings (and other .NET API's) limited to 2GB in size?
@Ken Yes, that's true. But let me compare the history of total process memory available and how much some high consuming applications used. When you had 64MB memory, you used 60MB of it, when you had 512MB memory, you used 400MB of it, when you had 2GB (32-bit), you used 1.5GB, now you have 8GB you use maybe 3GB. At some point your requirement for memory is going to end. And if you to handle a string larger than 2GB, you'll most likely use buffer with indexes instead of System.String. Or even more likely a lower level language.
Jan
19
comment Strange behavior causing reference to be set to null when calling ReadProcessMemory
I never said that out or ref aren't looked for when the marshaling stuff sees neither OutAttribute and InAttribute. The main reason for the attributes is have support across every language. For example VB.Net doesn't have out. See this article that explains the correct signature of this P/Invoke call.
Jan
19
comment Strange behavior causing reference to be set to null when calling ReadProcessMemory
That resource if you read it carefully only says that marshaling behavior is similar to those keywords, however it does not imply that they're the same, nor that they're even technically related. As to your argument about byte[] being byte* that too isn't true. Since the byte array is a reference types, not a pointer to. Even though at CPU level they may be treated the same, at language level they're fundamentally different. (And reference types are very useful for code security.)
Jan
19
comment Having trouble with moving information
Sorry for the late response. Quote the question "Well I did the same thing we did in class, but the difference is that that was from a text box and there is no text box for the data I need to move this time". So he isn't trying to copy them, he just used code from his class, which used a TextBox (and therefore a string) as input. He just tried to convert decimal to decimal, which is redundant and due to function signatures results in an error.
Jan
19
revised Having trouble with moving information
Minor edit for clarity
Jan
19
comment Having trouble with moving information
Their immutability doesn't have to do with the reason why they're being copied. They're being copied because they are value types. Even a mutable struct (which is strongly recommended against) will be copied when assigned to a different variable. The result differs almost identical as adding a mutable reference type in a value type. But C# primitives are special cases of value types that are treated differently from most. However the information here is irrelevant to the problem in this question.
Jan
19
revised Having trouble with moving information
Improved
Jan
19
answered Having trouble with moving information