Jason Jackson
|
Registered User
|
I am a software developer by trade but like many programmers it is also a hobby. My first program was written on a Commodore 64. In college I wrote C++, Fortran and a touch of Pascal. I started my professional career doing web development before the bubble using ASP, PERL, Java and SQL. Over the years I have spent a lot of time programming for the web and the desktop. Today I specialize in the Microsoft development stack. I currently utilize C#, SQL Server, ASP.Net, Javascript/CSS/HTML and LINQ. I also have recent experience with WPF/XAML, WCF, Silverlight, NUnit and WinForms. Besides my Microsoft work life I use Mac at home and play with Cocoa, Ruby on Rails and MySQL. I enjoy travel and baseball. My wife and I have added the two hobbies together, and have seen games at 8 MLB parks, 1 spring training park and 3 minor league parks. |
|
Dec 15 |
accepted | WCF Call from Silverlight hanging |
|
Dec 13 |
comment |
TCP Ping in Silverlight Can you provide a link for ping on TCP? |
|
Dec 13 |
answered | WCF Call from Silverlight hanging |
|
Dec 12 |
answered | What great people within computer science should we all know about? |
|
Dec 12 |
comment |
Solving Algebraic Equations Programatically I just voted to reopen. I would like to see the algorithm for this. |
|
Dec 10 |
revised |
Are WPF more ‘flashy-like’ than winforms? Edit after using Silverlight 3 and MVVM |
|
Dec 9 |
accepted | Silverlight - how do I get the text of the selected item in a combobox |
|
Dec 9 |
answered | Silverlight - how do I get the text of the selected item in a combobox |
|
Dec 8 |
comment |
Is there a design pattern for dealing with large datasets over the internet? Bean is a common term for a persistent class that is intended for UI consumption. Standard business/model classes may be cumbersome for UI consumption, so a bean is populated with their values and used by the UI. In my case the business-tier on the server had a variety of model objects that have some rather rich object graphs. I translate these to beans for Silverlight consumption. |
|
Dec 6 |
awarded | ● Mortarboard |
|
Dec 6 |
awarded | ● Nice Answer |
|
Nov 18 |
revised |
Using Silverlight MVVM with Prism/Unity, and need to detect when view is closed. details about the answer |
|
Nov 18 |
comment |
Using Silverlight MVVM with Prism/Unity, and need to detect when view is closed. It might do for me. I could active and deactive my timer when the window is active and inactive. I might combine this with writing my own region manager, similar to the answer Anderson gave. |
|
Nov 18 |
comment |
Using Silverlight MVVM with Prism/Unity, and need to detect when view is closed. I am actually using System.Threading.Timer. As part of the dependency injection I am passing around an IDispatchBroker, which is just an interface I wrote that does thread dispatching. When the app bootstraps this dependency to use a really simple facade that just calls the RootVisual's dispatcher. When I am unit testing I set up a mock IDispatcherBroker that just calls straight through instead of doing the whole "BeginInvoke" thing with the UI. I pass this IDispatchBroker into the code that runs the timer. The polled data returns and is dispatched over to the UI. |
|
Nov 18 |
comment |
Using Silverlight MVVM with Prism/Unity, and need to detect when view is closed. Nice! I am already using the region manager. |
|
Nov 17 |
comment |
Using Silverlight MVVM with Prism/Unity, and need to detect when view is closed. Looking into Caliburn now. Its funny you recommend a framework with presenters, as that is what I am actually calling my ViewModel classes since I have done MVP before (own grown framework). |
|
Nov 17 |
accepted | Is there a design pattern for dealing with large datasets over the internet? |
|
Nov 17 |
comment |
Is there a design pattern for dealing with large datasets over the internet? I did quite a bit of research on sockets in Silverlight. There are some sever restrictions that prevent me from using them. One restriction is that there is a very small port range under which they will work, which just seems silly to me. |
|
Nov 17 |
comment |
Is there a design pattern for dealing with large datasets over the internet? I did actually end up using a kind of flyweight by using beans instead of serving the rich object graphs to Silverlight. |
|
Nov 17 |
comment |
Is there a design pattern for dealing with large datasets over the internet? A follow-up: I read up on that polling duplex class a lot more. It looks like it has real scaling problems. |
|
Nov 17 |
answered | Is there a design pattern for dealing with large datasets over the internet? |
|
Nov 17 |
asked | Using Silverlight MVVM with Prism/Unity, and need to detect when view is closed. |
|
Nov 6 |
comment |
Reference a Silverlight Assembly from .NET This just solved a problem for me. Thanks. |
|
Nov 6 |
comment |
Is there a design pattern for dealing with large datasets over the internet? The UI needs to be a kind of "Google Maps" interface so we definitely need all the data points displayed. You do make a good point, and I am thinking of loading off screen data last or lazy-loading it. |
|
Nov 4 |
revised |
Is there a design pattern for dealing with large datasets over the internet? iterator pattern comments |
|
Nov 4 |
comment |
Is there a design pattern for dealing with large datasets over the internet? I agree that keeping track of deltas in the middle tier is going to be critical to the performance of this app. We do have a middle-tier very similar to what you describe in point 1, but it is mostly stateless. |
|
Nov 4 |
comment |
Is there a design pattern for dealing with large datasets over the internet? I had a typo - the app will be loading around 5000 (5k) objects, not 5000k objects. I have already loaded this many objects into memory and Silverlight handles it fine. I am considering using some version of the proxy pattern, but flyweight doesn't gain me much here. |
|
Nov 4 |
revised |
Is there a design pattern for dealing with large datasets over the internet? typo |
|
Nov 4 |
revised |
Is there a design pattern for dealing with large datasets over the internet? push technology notes |
|
Nov 4 |
revised |
Is there a design pattern for dealing with large datasets over the internet? clarified the question |
|
Nov 3 |
comment |
Is there a design pattern for dealing with large datasets over the internet? To be more clear, the proxy in this case well by nature be disconnected and therefore needs to keep some state. I am not sure the best pattern to use for updating nor for the initial load. I have discussed the problem with coworkers and an idea has been to server the object out using a repository/factory pattern and those object would act like proxies, invalidating their own data and calling back into the repository (and hence the server) on some regular cycle. |
|
Nov 3 |
comment |
Is there a design pattern for dealing with large datasets over the internet? I think this general pattern might work, but the problem I have is a little more nuts and bolts. Still, this gives me the idea of keeping all the objects cached somewhere in the server and updating them there, then providing deltas for the proxies sitting on the client when the client polls... |
|
Nov 3 |
comment |
Is there a design pattern for dealing with large datasets over the internet? Its a proprietary system we haven't yet released (obviously) and I have obfuscated some of the details because of that. In general it is a way to monitor what is going on in an application that manages a large set of "devices" (current largest installation around 5k). This tool will allow an administrator to look at the "device network" as a whole and spot trouble, and then take action in troubled areas. Sorry I cannot get more specific. When we release I can show it to you! |
|
Nov 3 |
comment |
Is there a design pattern for dealing with large datasets over the internet? I had thought of that but it isn't really push (though it would probably work) and doesn't really solve my design problem. The server system doesn't know that updates are ready until it queries subsystems, which means a polling on the server side anyway. I might cache results on the server to speed it up... thanks for the link. |
|
Nov 3 |
asked | Is there a design pattern for dealing with large datasets over the internet? |
|
Sep 29 |
comment |
How to Write a Screen Recorder in .NET? I don't think I have the code any longer. I wrote it for an employer about 6 years ago. I am sure it is still sitting in their CVS repository but those bits are probably long gone off any drive of mine. Sorry. It did follow the same basic concept: periodic screen shot saved to disk. I remember trying a few different ways of doing it trying to optimize it, but don't recall the details. Too much code written between then and now. |
|
Sep 29 |
comment |
How to Write a Screen Recorder in .NET? I wrote something very similar in C# are few years back. The performance was horrible. I would be interested in how this performs. |
|
Sep 17 |
awarded | ● Yearling |
|
Sep 10 |
comment |
Stopping/Starting a remote Windows service and waiting for it to open/close Let me clear up that previous comment. In my experience Windows may think that the service is stopped but in reality it is still tearing down. I don't know if this is because of a misbehaving service or this is business as usual. I have run into it more than once. I would not count on the service being immediately torn down after a stop, and for sure would not count on the service being open for business immediately after a start. |
|
Sep 10 |
comment |
Stopping/Starting a remote Windows service and waiting for it to open/close I can confirm that they do return before the service has stopped when killing it remotely. I do this several times a day. |
|
Aug 31 |
comment |
How is the Parent property of a FrameworkElement set in Silverlight? I feel a little silly marking my own answer as correct, but after quite some time I haven't seen a better answer. |
|
Aug 31 |
accepted | How is the Parent property of a FrameworkElement set in Silverlight? |
|
Aug 31 |
answered | How does an UpdatePanel differ from ‘traditional’ AJAX? |
|
Aug 27 |
answered | IF Statement multiple conditions, same statement |
|
Aug 25 |
comment |
.NET, event every minute (on the minute). Is a timer the best option? I always assumed this just started up a background thread that marshaled events up to the UI thread periodically, but it looks like it calls into the native Windows UI. |
|
Aug 25 |
answered | Entity Framework - dynamic sql |
|
Aug 25 |
answered | c# Hide function from Designer |
|
Aug 5 |
comment |
Is there a generic alternative to the ListDictionary class? What namespace? What assembly? I cannot seem to find it and have never stumbled across this critter. Is it generic? |
|
Aug 5 |
comment |
Why do so many sites disallow the use of non-alphanumeric characters in passwords? I really have to back the legacy system comment. In a more general sense, password storage might be hindered by some 3rd party authentication mechanism. Don't ever assume that the authentication is being done by the web site itself. This is an unfortunate fact of integrating with existing systems. |
|
Aug 4 |
awarded | ● Popular Question |
