Guge

1,744
reputation
257 views

Registered User

name Guge
member for 1 year
seen 7 hours ago
website
location Oslo, Norway
age 40
Independent software developer. Experience since VIC-20. Languages in descending order of preference: C#, Java, VB.Net, VB6, Perl, PHP, C, C++, FoxPro Married 1992. Daughters 1999, 2002, 2005. Sailing.
1d
awarded  
1d
answered Desktop Based Application
1d
comment Significant new inventions in computing since 1980
Lightbulbs? How about LEDs? They used to be only green and red. The blue LED was the holy grail just 15 years ago, now they are everywhere. I remember seeing white LEDS for the first time in a Hewlett-Packard lab in 1998. The tungsten lightbulb is about to be outlawed due to its power consumption. Right now, we are in the biggest technology change of illumination since neonlights.
2d
answered Populating a treeview recursively (a complicated case)
Dec
8
comment How to unanimate WPF DependencyProperty?
Thanks, this is the solution for a repeating animation. My own solution is only good for non-repeating animations.
Dec
8
revised How to unanimate WPF DependencyProperty?
More details
Dec
8
revised How do I actually get somewhere in GUI programming?
edited tags
Dec
8
answered How to unanimate WPF DependencyProperty?
Dec
7
asked How to unanimate WPF DependencyProperty?
Dec
7
comment Programming graphics in assembler?
If he wants 2D, there is no need to do a texture on a 3D polygon. DirectX is not only 3D graphics, it is a collection of technologies. The 2D part is called DirectDraw.
Dec
7
answered Why is reflection called reflection instead of introspection?
Dec
7
comment In 3 minutes, What is Reflection?
It's concise, but it is very close to the original answer in the text of the question.
Dec
7
answered In 3 minutes, What is Reflection?
Dec
7
comment In 3 minutes, What is Reflection?
Reflection does not require the compiler at runtime.
Dec
4
comment Drawing programmatically using C# in Silverlight
Oh, you're too kind, Sir!
Dec
4
accepted Drawing programmatically using C# in Silverlight
Dec
4
comment Drawing programmatically using C# in Silverlight
I was wrong. It's not enough to seperate the figures into segments. The segments in a figure are implicitly connected. You actually have to separate your geometry into more figures. I event tested it, looks pretty good now.
Dec
4
revised Drawing programmatically using C# in Silverlight
I was wrong. Segments are implicitly connected. Figures are not.
Dec
4
comment Separating rapid development from refactoring/optimization
Thanks for the accept. I wish you the best of luck with your project, it feels oddly familiar.
Dec
4
answered Web application to legacy code interop
Dec
4
comment C# Custom Setter Event or Inherited Setter
Yeah, it's called a TransparentProxy.
Dec
4
answered Drawing programmatically using C# in Silverlight
Dec
4
answered C# Custom Setter Event or Inherited Setter
Dec
4
answered datacolumn format as currency in .NET
Dec
3
comment Microsoft SQL Server - What does it mean that a Transaction Log is Full?
No implications for recovery, which happens every time SQL Server is started, but it has implications for restores.
Dec
3
comment Microsoft SQL Server - What does it mean that a Transaction Log is Full?
Your explanation of the transaction log is incorrect. A checkpoint is written to the transaction log every time the data files are updated with all unwritten changes from committed transaction. At recovery (which means every time you start SQL Server) the server looks for the last checkpoint. Every transaction committed between the checkpoint and the end of the log is redone. Transactions that were never committed are ignored.
Dec
3
answered Why “Set based approaches” are better than the “Procedural approaches”?
Dec
3
asked TextSearch in WPF DataGrid
Dec
3
comment Old Developers - any future ?
Your baud rate may decrease but your signal to noise ratio will increase.
Dec
3
answered Making a cross-thread call to a ListView
Dec
2
revised Which WPF list/grid control to use
typo
Dec
2
revised Which WPF list/grid control to use
deleted 454 characters in body; edited tags; edited title
Dec
2
awarded  Tumbleweed
Dec
1
accepted Separating rapid development from refactoring/optimization
Nov
27
comment Open dialog in WPF MVVM
The MainViewModel still has a reference to the DialogViewModel after the dialog view is closed.
Nov
27
comment Best algorithm to count the number of set bits in a 32-bit integer?
+1 for your witty and convincing defense.
Nov
26
comment Open dialog in WPF MVVM
Did you have a look at the following questions?stackoverflow.com/questions/454868/… stackoverflow.com/questions/1667888/… stackoverflow.com/questions/1792814/…
Nov
26
comment Handling Dialogs in WPF with MVVM
First it has to be determined if asking for pre-delete confirmation is business logic or view logic. If it is business logic, the DeleteFile method in the model must not do it, but rather return the confirmation question object. This will include a reference to the delegate that does the actual deletion. If it isn't business logic, the VM must build a VM of the question in the DeleteFileCommand, with two ICommand members. One for yes and one for no. There are probably arguments for both views, and in RL most of use will probably encounter both.
Nov
26
answered Open dialog in WPF MVVM
Nov
26
answered MVVM - what is the ideal way for usercontrols to talk to each other
Nov
25
comment Moving from WPF 3.5 to 4.0 causes error “Can’t put a page in a Style”
I'n not surprised this doesn't work in 4.0, I'm confounded that it does in 3.5. Do I understand your question correctly?
Nov
25
asked Which WPF list/grid control to use
Nov
24
answered Separating rapid development from refactoring/optimization
Nov
24
comment Algorithm for vector problem
Looks like homework?
Nov
24
comment Binding to a Model that Contains a Collection/List
Josh Smith uses a collection of ViewModels as a property in a ViewModel in his canonical MVVM sample application. (Commands of MainWindowViewModel).
Nov
24
comment MVVM questions on Josh Smith’s Sample Application
Thanks for the accept. WPF is hard for me too, it breaks with 20 years of UI coding. Explaining it to others helps me put it straight in my head, thanks for giving me the opportunity.
Nov
24
accepted MVVM questions on Josh Smith’s Sample Application
Nov
23
answered MVVM questions on Josh Smith’s Sample Application
Nov
23
comment Website Session Analysis
How about putting a page between the twitter and meme steps of your flow? It could say "Great, next task is Meme". Then you'll find out if you lost them at twitter or at meme. You could also serve a jumppage that tells them that they'll be sent to twitter i 5 seconds, this jumppage could be tracked. That turns your 302s into 200s. A 302 doesn't contain any html or javascript, so you can't really track them with google analytics when 302. You would have to buy or develop something, but I'm not so sure you need it.
Nov
22
comment Website Session Analysis
Thanks for the accept. By "external page" I assume pages on servers that you have little or no control over. You probably can't get google to track your users through that site, because the urchin will be different if those pages run the google stuff at all. But the idea must be that the users are redirected back to you, possibly to the same URL, right? Then you can track that they have completed a step in your funnel, even if it's on the same url. I'm making a lot of assumptions here... More about this stuff on google.com/support/googleanalytics/…