meandmycode
|
Registered User
|
.NET developer working in Manchester England.
|
|
2d |
awarded | ● Nice Answer |
|
2d |
comment |
Interacting with the JavaScript scope chain Yep however it inserts the scope to the head of the scope it is defined in, whereas I'm looking to create a copy of a function with a new scope to the scope it had. |
|
Nov 27 |
comment |
Interacting with the JavaScript scope chain I don't think the with statement lets you infer scope in the way I want, but yea this may be something that is out of scope for javascript.. it just seems frustrating that you can completely blow away the closure scope and provide your own (causing who knows what mayhem), but you can't just add a little bit on top of the existing closure.. legit scenarios like adding your own pseudo variables would be really useful. |
|
Nov 27 |
comment |
Interacting with the JavaScript scope chain Yep this is about closure context vs the call context. |
|
Nov 27 |
revised |
Interacting with the JavaScript scope chain added 621 characters in body |
|
Nov 27 |
comment |
Interacting with the JavaScript scope chain Yep, the second code snip does this trick (just simpler for the purposes of demo), it works in that the closest scope works as expected, but the scope chain is now completely different and doesn't chain on from the original one |
|
Nov 27 |
asked | Interacting with the JavaScript scope chain |
|
Nov 16 |
comment |
Is JavaScript ‘s “new” Keyword Considered Harmful? Sure, I understand the point regarding premature optimizations, it takes a lot of iterations to show the significant expense, '100,000 'function calls just breaks 1ms, when using callee that becomes 304ms.. whilst impresively expensive, its probably completely out of context with the body of the call, and how many times the call actually happens over a given period. |
|
Nov 16 |
comment |
Is JavaScript ‘s “new” Keyword Considered Harmful? The only reason for this is that arguments.callee is an 'expensive' call to make. I wonder if there are better ways to do this check more generically.. also I think initializing on something other than the global object is more intentional than erroneous. |
|
Nov 16 |
comment |
Is JavaScript ‘s “new” Keyword Considered Harmful? Regarding the check, couldn't you assume the global object is window, and do if (this == window) throw .. |
|
Nov 16 |
comment |
Does Javascript’s new operator do anything but make life difficult? I don't see how you could do it yourself, the biggest problem with prototypal inheritance for me is dropping real construction args, it is imo that a class should enforce its creation (as much as reasonable) by its rules.. being able to create an object that is 'uninitialized' just makes it harder to discover bugs.. and the specification initialization pattern is an ugly hack. |
|
Nov 13 |
comment |
Explain this obscure ASP.NET bug Personally I think the first exception log is because requests were happening whilst you were patching the dll, causing it to be temporarily be unavailable.. I think the 2 seconds later error is once your patched code has loaded, and run some data access code on a background thread, which was buggy- causing an exception which bubbled to the top of the worker process, and caused it to exit. |
|
Nov 13 |
comment |
Explain this obscure ASP.NET bug It really isn't that unusual, and asp.net only catches request handling execution, as it assumes that a request execution exception shouldn't bring the entire app down.. any other execution outside of a http request is handled just like any other .net app, and will bubble to the top and thusly cause the process to exit. I think this behavior was set in .NET 2. |
|
Nov 12 |
comment |
Explain this obscure ASP.NET bug You are right that traditionally an uncaught exception won't crash a worker process, but thats for threads that are executing in a http context (basically, the https "exec" function catches the exeption).. but if you have an uncaught exception in another thread, such as a timer event- the worker process will terminate. |
|
Nov 9 |
comment |
How to Add Tax to Paypal IPN Checkout Can you clarify which paypal service call you are talking about? IPN is generally about payment notification, is this express checkout? if so the field name is taxAmt. |
|
Nov 5 |
comment |
Running an action when mousing over (and leaving) an element (or its child elements) Turns out this may be a bug, firefox 3.6 DOES have a relatedTarget set, and does have a bug report to backup the change stating that relatedTarget is null unless explicitely set when the drag event starts. Again your solution and time wasn't a waste, simply I would change the string where you capture mouse in/out and change to drag in/out and it would work. |
|
Nov 4 |
comment |
Running an action when mousing over (and leaving) an element (or its child elements) The amount of time you dedicate to answering questions is completely up to you. |
|
Nov 4 |
comment |
Running an action when mousing over (and leaving) an element (or its child elements) Actually my real problem is with drag events, but being new that they are I figured asking the question regarding mouse events would gain more response, the same trick should be possible with drag events as is with the mouse events, only the w3c spec states that the relatedTarget property of the dragleave event should be null, it doesnt actually state why however. |
|
Nov 4 |
comment |
Running an action when mousing over (and leaving) an element (or its child elements) Josh, yes my question says I want it against w3c spec, but with the condition not to use relatedTarget.. for anybody searching for this problem and hitting this question, they'll not have the requirement to not use relatedTarget, so this answer will be useful. |
|
Nov 4 |
comment |
Running an action when mousing over (and leaving) an element (or its child elements) Unfortunately the problem isn't that I don't think relatedTarget is standard, just literally cannot be used for this. I appreicate the effort to help and given I didn't have the bizzare requirement to not using relatedTarget, your advise is sound.. so I'll mark it as correct. |
|
Nov 4 |
comment |
Running an action when mousing over (and leaving) an element (or its child elements) Ah I wasn't aware there was standardization already here, however the problem is that the explanation uses the same technique as mine (it filters the events to see if the relatedTarget is, or is a child of the original evented element). It could be that this is the easiest way as to why there arent any other solutions (why write something else?), the problem is I cannot use the relatedTarget property.. guess I'm stuck with an unsolvable problem! |
|
Nov 4 |
revised |
Running an action when mousing over (and leaving) an element (or its child elements) edited tags |
|
Nov 4 |
revised |
Running an action when mousing over (and leaving) an element (or its child elements) added 383 characters in body |
|
Nov 4 |
comment |
Easiest way to combine ‘l’,’e’,’t’,’t’,’e’,’r’,’s’? C# / .NET oh easiest? I thought you wanted needlessly clever.. easiest is absolutely using replacement/regex. |
|
Nov 4 |
comment |
Easiest way to combine ‘l’,’e’,’t’,’t’,’e’,’r’,’s’? C# / .NET iterate the characters and 'take' every 4th character starting from index x where x is determined by if the sequence starts with '(' ? |
|
Nov 4 |
comment |
Running an action when mousing over (and leaving) an element (or its child elements) Hi Josh, I understand stopPropagation will stop the bubbling, meaning that my event listener will not receive the mouseover event when I enter from the right (where I enter the child before the parent).. essentially what I need to do is treat the entire visible surface of my element (and its children) as one thing, and have a single 'over' and 'out' event happen as I enter or leave the entire surface. |
|
Nov 4 |
asked | Running an action when mousing over (and leaving) an element (or its child elements) |
|
Nov 3 |
answered | ASP.MVC antiforgery token and cryptographic errors |
|
Oct 22 |
comment |
What is the best free online wysiwyg editor I could embed to my client’s website? Be warned the documentation for CKEditor is insanely poor, and the codebase is very hacky- works great in its default setup- but making plugins you'll have a nightmare trying to discover how the api works, and then realizing how many dependent systems are unfinished and basically 'hard coded'. |
|
Oct 21 |
accepted | How do you set CacheMode on an element programatically? |
|
Oct 21 |
answered | How do you set CacheMode on an element programatically? |
|
Oct 16 |
accepted | How does HttpContext.Current work in a multi-threaded environment? |
|
Oct 13 |
comment |
Persisting Properties in Models in ASP.NET MVC (with Binder?) It is.. because you aren't sending a Ticket back in the form.. you are sending the importance property and the message property of the log.. it is factually that what you send to the view ISN'T what is sent BACK in the postback.. it is a subset (purposely so). |
|
Oct 13 |
answered | How does HttpContext.Current work in a multi-threaded environment? |
|
Oct 13 |
comment |
Persisting Properties in Models in ASP.NET MVC (with Binder?) You could probably just store the ticket name in a hidden field, but more reasonably you might want to consider simply accepting the way http works rather than fighting it,. |
|
Oct 11 |
comment |
Run Function on every change in an input element: JQuery Are you expecting it to change when you select a new option? what happens when you make a selection then hit tab? |
|
Oct 9 |
comment |
Two-Way-Binding Possible In ASP.NET MVC? I think you'll hit a lot of issues where you believe the model sent to the view can be bound to the postback form view.. the reality is considerably different, for example.. you bind a collection a products for a 'products selection', but instead get back a collection of ints that represent the product ids.. in order for the postback to make this appear as products would mean it would need to do dataaccess and pull the products automatically regardless of their need.. I think you would begin to see perf issues with pulling considerable amounts of data just to suit a paradigm. |
|
Oct 7 |
comment |
asp.net mvc binding string to ienumerable<int> Gah Sorry Dean, hit must have S by mistake and completely didn't notice, just off to bed right now but I'll check out your idea in the morning! cheers. |
|
Oct 7 |
comment |
asp.net mvc binding string to ienumerable<int> Hi Sean, the only problem with building a specific binder is that I would need to take over binding the entire model, really all I want to do is manage how a single property/parameter is bound. |
|
Oct 7 |
revised |
asp.net mvc binding string to ienumerable<int> edited title |
|
Oct 7 |
asked | asp.net mvc binding string to ienumerable<int> |
|
Oct 1 |
comment |
ASP.NET - Is everything I store in Cache part of the w3wp process? If you are refering to the single HttpApplicationState which is created for each asp.net app then yes, the storage is a primative in memory collection, and doesn't have a provider model like session state that may mean marshalling / serialization. |
|
Oct 1 |
comment |
Relative Path in master page for img tag style="background-image: url(<%= ResolveUrl("~/images/1.gif") %>);" |
|
Sep 5 |
revised |
What is the reasoning behind this ioc behavior (Resolve with multiple registered components) added 162 characters in body |
|
Sep 4 |
revised |
What is the reasoning behind this ioc behavior (Resolve with multiple registered components) added 13 characters in body |
|
Sep 4 |
asked | What is the reasoning behind this ioc behavior (Resolve with multiple registered components) |
|
Aug 31 |
answered | How do I move an ASP.NET MVC site from the root application to a subapplication folder? |
|
Aug 24 |
answered | Setting the gzip compression in asp.net |
|
Aug 23 |
revised |
Handling web.config differences across multiple machines when using version control. Made community wiki |
|
Aug 23 |
answered | Handling web.config differences across multiple machines when using version control. |
