4,682 reputation
11630
bio website tracker1.info
location Phoenix, AZ
age 38
visits member for 4 years, 6 months
seen 7 hours ago
stats profile views 749

I'm currently lead developer at Collector Car Network (ClassicCars.com, RoadReadyCertified.com)

I mostly work with ASP.Net (Webforms & MVC), I've been doing about half of my recent work in NodeJS for server-side code.

I absolutely love JavaScript as a language, and platforms that leverage it. MongoDB, NodeJS/Express, Synchronet BBS, jQuery, Backbone, Knockout, etc.


Jun
11
comment What's the simplest IOC container for C#?
This is awesome... though, I would suggest using return Register<S, C>(typeof(S).FullName); instead of return Register<S, C>(Guid.NewGuid().ToString());
Jun
10
comment Q: How do I configure NPM to Trust the firewall issuer for HTTPS proxying?
I realize that this may be more appropriate to another StackExchange site, but given it is specific to a particular development platform, I felt this was a more appropriate place.
Jun
10
comment Trying to add javascript to .ascx page
Quite welcome, I know it may not be exactly what you are looking for, but following the approach tends to work well. (also corrected some markup issues).
Jun
7
comment Jquery when the user hits bottom of the page
Sorry it didn't work in your larger environment... just the same, would appreciate if you'd check this as correct, since it does work as desired in the fiddle.
Jun
6
comment Jquery when the user hits bottom of the page
Don't have time to look into it.. just a guess that your JS may have an error... did you check your js console log output?
May
31
comment Jquery when the user hits bottom of the page
Saw the jsfiddle, and just posted my edits, as well as the relevant piece in my answer.
May
31
comment Jquery when the user hits bottom of the page
Okay.. you have a page height of 1000px (top to bottom including footer), your floating item is 100px high, and the footer is 20px high.. then you should NEVER set the top position for the floating item over ((1000 - 100) - 20)... the resize event, is because making the window wider/narrower will change the height of the page as a whole.
May
31
comment MongoDb insert via Node.js Native Driver not inserting
I'm more curious of messages are out of order, rather than if there are errors.
May
31
comment MongoDb insert via Node.js Native Driver not inserting
Can you attach your console output as well?
May
31
comment .change() call for @html.dropdownlist
Could you post the rendered output? Is the script tag above or below your jquery include.. and is the script after the control? If your script is in the head, the element on the page doesn't exist when your js is run.
May
30
comment Creating a singleton ChannelFactory<T> and reusing for client connections
I know it's old.. but wouldn't this effectively cache the ChannelFactory as well? Since releasing the Factory closes it's channels.
May
28
comment Better practices in large Html5 projects? (Mainly Javascript but some Html/Css)
@RobG if, instead of "project" above, you use "mycompany.site/projectname..." it reduces the chance of conflicting with "random library" a lot. It reduces risk, but doesn't eliminate it.
May
28
comment Techniques for real-time multiplayer
Do a search for socket.io getting started and you'll find a lot of basic tutorials... beyond this, I found that Rob Connery's try it quiet presentation was awesome vimeo.com/43548699.
May
28
comment Better practices in large Html5 projects? (Mainly Javascript but some Html/Css)
Objects and Arrays in JS have a similar overhead, it depends on the prototype chain, and the number of properties on those prototypes as to the impact. As far as code organization, structuring your code into usable structures is probably more beneficial, generally speaking your DOM/Canvas updates are going to be the most resource intensive.
May
28
comment function scope in jQuery
I know, would have to refactor to use function updateScrollbar... underneath the binding.
May
28
comment function scope in jQuery
made a minor change to correct your JS, in addition, I tend to rely on function hoisting to put my function definitions below my event bindings, but didn't change this.
May
28
comment Make element own its own variable?
it returns the actual DOM element, based on it's id, or undefined...
May
28
comment who can decode this Js code
Second link for "javascript deobfuscator" as a search seems to have worked for me... deobfuscatejavascript.com ... interesting code.
May
28
comment who can decode this Js code
google: javascript deobfuscator .... open the first link, jsbeautifier... copy/paste said code... In this case, it's pretty well obfuscated, including some inline functions inside the text itself. Looks like it was passed through one type of obfuscator, then into another... which is cool. Just the same, guessing you don't need this... try using fiddler to watch the actual communications if you need to. You may be better off asking what you are actually trying to accomplish.
May
28
comment Can a WebSocket switch its binaryType on the fly?
I would suggest giving it a try on a couple different browsers (and versions) to see. I don't think it's likely a good idea in either case. I do think that most people are using abstraction layers that have connection fallbacks/fallforwards such as socket.io and SignalR. ymmv.