User Guge - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T20:06:35Zhttp://stackoverflow.com/feeds/user/37771http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1877383/desktop-based-application/1877401#18774011Answer by Guge for Desktop Based ApplicationGuge2009-12-09T22:32:01Z2009-12-09T22:32:01Z<p>C#/WPF for desktop with Silverlight, XBAP or even ASP as the online options.</p>
http://stackoverflow.com/questions/1869979/populating-a-treeview-recursively-a-complicated-case/1870215#18702150Answer by Guge for Populating a treeview recursively (a complicated case)Guge2009-12-08T22:11:33Z2009-12-08T22:11:33Z<pre><code> string[] data = new string[] {
"Item1 Item1Desc Project1 RoomE Closet-7",
"Item2 Item2Desc Project1 RoomW Closet8",
"Item3 Item3Desc Project1 RoomW Closet8",
"Item4 Item4Desc Project1 RoomN Closet2",
"Item5 Item5Desc Project1 RoomN Closet9",
"Item6 Item6Desc Project2 RoomN Closet2",
"Item7 Item7Desc Project2 RoomW Closet9" };
foreach (string row in data)
{
string[] columns = row.Split(' ');
TreeNodeCollection treeNodes=treeView1.Nodes;
for (int col = 2; col < columns.Length; col++)
{
string column = columns[col];
if (!treeNodes.ContainsKey(column))
{
treeNodes.Add(column, column);
}
TreeNode tn = treeNodes[column];
treeNodes = tn.Nodes;
}
treeNodes.Add(string.Format("{0} - {1}", columns[0], columns[1]));
}
</code></pre>
http://stackoverflow.com/questions/1863723/how-to-unanimate-wpf-dependencyproperty0How to unanimate WPF DependencyProperty?Guge2009-12-07T23:57:27Z2009-12-08T08:46:47Z
<p>After running WPF animations on dependency properties in code behind, the dependency properties can no longer be set using SetValue. They can only be changed through animations.</p>
<p>I want to change a dependency property, some times through short animations, sometimes immediately in code.</p>
<p>So how can I remove the animation from a dependency property after the animation has reached its end?</p>
http://stackoverflow.com/questions/1863723/how-to-unanimate-wpf-dependencyproperty/1863773#18637731Answer by Guge for How to unanimate WPF DependencyProperty?Guge2009-12-08T00:15:15Z2009-12-08T07:17:17Z<p>Set the animation's FillBehaviour to Stop.
Then call BeginAnimation.
Then set the property value to the end value of the animation.</p>
<p>Now, after the animation is finished, the property will work as a normal property again.</p>
http://stackoverflow.com/questions/351577/why-is-reflection-called-reflection-instead-of-introspection/1859995#18599950Answer by Guge for Why is reflection called reflection instead of introspection?Guge2009-12-07T13:31:54Z2009-12-07T13:31:54Z<p>In .Net I think the term Reflection is very appropriate because it is not the type itself that is examined, it is the manifest of the code, which is only a description.</p>
http://stackoverflow.com/questions/1859902/in-3-minutes-what-is-reflection/1859967#18599672Answer by Guge for In 3 minutes, What is Reflection?Guge2009-12-07T13:25:07Z2009-12-07T13:25:07Z<p>During compilation of a .Net language, the compiler puts information about the program into the program file. This information can be used by the program itself or by other programs to find out which classes the program contains, what their methods, properties, fields and events are. Classes and their methods, properties and so on can also be used through reflection, even if the other program knows nothing about them before running. This allows different programs to be loosely coupled and makes all sorts of exciting programming possible. Reflection can also be used to build additional classes in running programs or in program files.</p>
http://stackoverflow.com/questions/1849036/drawing-programmatically-using-c-in-silverlight/1849140#18491402Answer by Guge for Drawing programmatically using C# in SilverlightGuge2009-12-04T19:30:24Z2009-12-04T22:45:03Z<p>The diagonal superfluous lines are there because you are adding points and segments to the same figure. The pen never gets lifted from the paper. You have to split your geometry into more figures.</p>
<p>Copy your segment and figures creating into every place you want the pen to "go down", and the figure.Segments.Add(segment) and geometry.Figures.Add(figure) into every place you want the pen to "go up".</p>
<p>That way your geometry will consist of many separate figures, and your diagonals should no longer be a problem.</p>
<pre><code> for (int ra = 0; ra <= 24; ra = ra + 3)
{
figure = new PathFigure();
segment = new PolyLineSegment();
for (int dec = -90; dec <= 90; dec = dec + 3)
{
points = coords.GetAitoffCoord(ra, dec);
double xCoord = xCenter + points.X * width / 2;
double yCoord = yCenter + points.Y * height / 2;
segment.Points.Add(new Point(xCoord, yCoord));
}
figure.StartPoint = segment.Points[0];
figure.Segments.Add(segment);
geometry.Figures.Add(figure);
}
for (int dec = -90; dec <= 90; dec = dec + 30)
{
figure = new PathFigure();
segment = new PolyLineSegment();
for (int ra = 0; ra <= 12; ra = ra + 1)
{
points = coords.GetAitoffCoord(ra, dec);
double xCoord = xCenter + points.X * width / 2;
double yCoord = yCenter + points.Y * height / 2;
segment.Points.Add(new Point(xCoord, yCoord));
}
figure.StartPoint = segment.Points[0];
figure.Segments.Add(segment);
geometry.Figures.Add(figure);
}
for (int dec = -90; dec <= 90; dec = dec + 30)
{
figure = new PathFigure();
segment = new PolyLineSegment();
for (double ra = 12.01; ra <= 25; ra++)
{
points = coords.GetAitoffCoord(ra, dec);
double xCoord = xCenter + points.X * width / 2;
double yCoord = yCenter + points.Y * height / 2;
segment.Points.Add(new Point(xCoord, yCoord));
}
figure.StartPoint = segment.Points[0];
figure.Segments.Add(segment);
geometry.Figures.Add(figure);
}
figure = new PathFigure();
segment = new PolyLineSegment();
for (int dec = -90; dec <= 90; dec = dec + 3)
{
double ra = 12.01;
points = coords.GetAitoffCoord(ra, dec);
double xCoord = xCenter + points.X * width / 2;
double yCoord = yCenter + points.Y * height / 2;
segment.Points.Add(new Point(xCoord, yCoord));
}
figure.StartPoint = segment.Points[0];
figure.Segments.Add(segment);
geometry.Figures.Add(figure);
</code></pre>
http://stackoverflow.com/questions/1840875/web-application-to-legacy-code-interop/1849267#18492671Answer by Guge for Web application to legacy code interopGuge2009-12-04T19:52:16Z2009-12-04T19:52:16Z<p>I think that one important aspect for you is the single-userness of a WinForms app and the multi-user-sessionness of web.</p>
<p>10 years ago I was involved in several web projects where we ran the business logic as COM objects (VB6) in MTS and later COM+. Letting those COM objects belong to sessions were a no-no, because if users come and leave a lot you could end up with a lot of resources tied up in unused but living COM objects.</p>
<p>I would suggest that you look into running your COM objects in Component Services. It might not be THE SOLUTION, but it is worth exploring.</p>
<p>Putting COM objects in Component Services is as close you can get to writing a windows service that is reachable through COM - something I would touch for all the x in y : where x is favourite food and y is favourite place.</p>
<p>.Net Remoting is wonderful, but mostly interesting as a communication device. I don't know if you are going to split up this in many servers, it sounds like a company internal application. I don't have enough details to be more specific.</p>
http://stackoverflow.com/questions/1849063/c-custom-setter-event-or-inherited-setter/1849083#18490830Answer by Guge for C# Custom Setter Event or Inherited SetterGuge2009-12-04T19:20:22Z2009-12-04T19:20:22Z<p>The only way of doing this in C# without code in every setter is through a TransparentProxy. It is a bit cumbersome, but it can be made to appear invisible to the coder.</p>
http://stackoverflow.com/questions/1062291/datacolumn-format-as-currency-in-net/1849060#18490601Answer by Guge for datacolumn format as currency in .NETGuge2009-12-04T19:14:38Z2009-12-04T19:14:38Z<p>DataColumns support various types from the .Net system.</p>
<p>They are listed at <a href="http://msdn.microsoft.com/en-us/library/system.data.datacolumn.datatype.aspx" rel="nofollow">MSDN</a>. Currency is not a type in .Net. Usually Decimal is preferred for this use.</p>
http://stackoverflow.com/questions/1838422/why-set-based-approaches-are-better-than-the-procedural-approaches/1838473#18384732Answer by Guge for Why “Set based approaches” are better than the “Procedural approaches”?Guge2009-12-03T08:27:03Z2009-12-03T08:27:03Z<p>Set based approaches are declarative, so you don't describe the way the work will be done, only what you want the result to look like. The server can decide between several strategies how to complay with your request, and hopefully choose one that is efficient.</p>
<p>If you write procedural code, that code will at best be less then optimal in some situation.</p>
http://stackoverflow.com/questions/1838335/textsearch-in-wpf-datagrid0TextSearch in WPF DataGridGuge2009-12-03T07:52:28Z2009-12-03T07:52:28Z
<p>Can TextSearch be used in conjunction with a read only datagrid in .Net 4 / VS2010? I'd like to set the TextPath everytime the user navigates to a different column.</p>
http://stackoverflow.com/questions/1838119/making-a-cross-thread-call-to-a-listview/1838162#18381620Answer by Guge for Making a cross-thread call to a ListViewGuge2009-12-03T06:55:21Z2009-12-03T06:55:21Z<p>Try the AsyncObservableCollection from <a href="http://tomlev2.wordpress.com/2009/04/17/wpf-binding-to-an-asynchronous-collection/" rel="nofollow">Thomas Levesque</a>.</p>
http://stackoverflow.com/questions/1795793/which-wpf-list-grid-control-to-use0Which WPF list/grid control to useGuge2009-11-25T09:47:45Z2009-12-02T14:40:02Z
<p>I need the following:</p>
<ol>
<li>Every feature should be usable without a mouse. Column reordering in ListView-GridView is an example of this problem.</li>
<li>Keyboard navigation both horizontally and vertically, in other words: cell focus.</li>
<li>Sorting.</li>
<li>Filtering.</li>
<li>TextSearching. TextSearch.TextPath in ListView is excellent, but WPF Toolkit DataGrid doesn't seem to have this.</li>
<li>Support of the Automation.Provider system.</li>
<li>Column reordering and hiding.</li>
</ol>
<p>I am planning to implement a Grid Assistant hot key that brings up a dialog box where columns can be listed. This will be a tool for hiding and reordering columns, and filtering or sorting data. So some of the points above need only to have programmatic support, or be easy to implement as additions.</p>
<p>I don't expect to find the perfect solution in any existing component. Although if they exist it doesn't matter if I have to pay for licensing.</p>
<p>I have spent a lot of time trying to mangle more functionality into the existing WPF controls, such as ListView-DataGrid with adorners and decorators, subclassing ListView, dynamicly created Grids, Scrollviewers with stackpanels of stackpanels, third party datagrids, WPF toolkit, and so on. All my attempts have been frustrated so far.</p>
http://stackoverflow.com/questions/1805778/open-dialog-in-wpf-mvvm/1805993#18059930Answer by Guge for Open dialog in WPF MVVMGuge2009-11-26T22:42:29Z2009-11-26T22:42:29Z<p>I have come across similar problems. Here is how I have solved them, and why I have done what I have done.</p>
<p>My solution:</p>
<p>My MainWindowViewModel has a property of type ModalViewModelBase called Modal.
If my code needs a certain view to be modal, it puts a reference to it in this property. The MainWindowView watches this property through the INotifyPropertyChanged mechanism. If Modal is set to some VM, the MainWindowView class will take the VM and put it in a ModalView window where the appropriate UserControl will be shown through the magic of DataTemplates, the window is shown using ShowDialog. ModalViewModelBase has a property for DialogResult and a property called IsFinished. When IsFinished is set to true by the modal VM, the view closes.</p>
<p>I also have some special tricks for doing interactive things like this from backgroundworker threads that want to ask the user for input.</p>
<p>My reasoning:</p>
<p>The principle of modal views is that other views are disabled, while the modal is shown. This is a part of the logic of the View that is essentially lookless. That's why I have a property for it in the MainWindowViewModel. It I were to take it further, I should make every other property or command for all other VM's in the Main VM throw exceptions, while in modal mode, but I feel this to be excessive.</p>
<p>The View mechanism of actually denying the user any other actions, does not have to be performed with a popup window and showdialog, it could be that you put the modal view in the existing window, but disable all others, or some other thing. This view-related logic belongs in the view itself. (That a typical designer can't code for this logic, seems a secondary concern. We all need help some times.)</p>
<p>So that's how I have done it. I offer it only as a suggestion, there is probably other ways of thinking about it, and I hope you get more replies too.</p>
http://stackoverflow.com/questions/1798600/mvvm-what-is-the-ideal-way-for-usercontrols-to-talk-to-each-other/1800937#18009370Answer by Guge for MVVM - what is the ideal way for usercontrols to talk to each otherGuge2009-11-26T00:36:18Z2009-11-26T00:36:18Z<p>There are many differenct mechanisms for this, but you should first find out in what layer of your architecture this communication belongs.</p>
<p>One of the purposes of the MVVM framework is that different views can be made over the same viewmodel. Would those usercontrols talk to each other only in the view you are currently implementing, or would they have to talk to each other in other possible views? In the latter case, you want to implement it below the view level, either in the viewmodel or the model itself.</p>
<p>An example of the first case may be if your application is running on a very small display surface. Maybe your user controls have to compete for visual space. If the user clicks one usercontrol to maximize, the others must minimize. This would have nothing to do with the viewmodel, it's just an adaption to the technology.</p>
<p>Or maybe you have different viewmodels with different usercontrols, where things can happen without changing the model. An example of this could be navigation. You have a list of something, and a details pane with fields and command buttons that are connected to the selected item in the list. You may want to unit test the logic of which buttons are enabled for which items. The model isn't concerned with which item you're looking at, only when button commands are pressed, or fields are changed.</p>
<p>The need for this communication may even be in the model itself. Maybe you have denormalized data that are updated because other data are changed. Then the various viewmodels that are in action must change because of ripples of changes in the model.</p>
<p>So, to sum up: "It depends...."</p>
http://stackoverflow.com/questions/1788399/separating-rapid-development-from-refactoring-optimization/1788455#17884552Answer by Guge for Separating rapid development from refactoring/optimizationGuge2009-11-24T07:33:37Z2009-11-24T07:33:37Z<p>There is a problem with dividing the team.</p>
<p>The group doing the rapid development of new features will be very popular with the sales force, and the management. They will be percieved as more productive, more solution-oriented and they will be included in more of the important discussions.</p>
<p>The group worrying about the quality will be percieved as costly, negative, unproductive, problem-oriented whiners.</p>
<p>The bean-counter reality of it is that the "easy wins" of the rapid group accumulates hidden costs of poor quality. If this goes on too long the code will become more and more messy as new rapid code builds on old rapid code and it will become more and more timeconsuming and risky to add more features. Those hidden costs becomes visible when noone can add any new features anymore.</p>
<p>Think two years down the road. Your rapid coders will probably have moved on, cashing in on their many "successess". The sales force will be talking about them, and how easy it was when they were running the shop.</p>
<p>It's like weed in a garden. It's easy to solve the problem early, much harder when it's all weeds.</p>
<p>The engineering reality of it is that rapid coding shouldn't be messy. You don't save time by doing things messy. If it looks that way, there is either a skill problem or a framework problem.</p>
<p>So if you divide the group, rotate after every iteration!</p>
<p>And how do I know this, scenario so well? I came in after the "successful" coders had left...</p>
http://stackoverflow.com/questions/1779465/mvvm-questions-on-josh-smiths-sample-application/1785960#17859601Answer by Guge for MVVM questions on Josh Smith's Sample ApplicationGuge2009-11-23T21:05:47Z2009-11-23T21:05:47Z<ol>
<li><p>I agree with Yacoder on this one. Start with what you know, or your vision. If your vision is to get a certain UX, start in Expression Blend if you want to. If you know what functionality you want, start with the ViewModels and the Unit tests.</p></li>
<li><p>Smith's application starts with App.xaml.cs.
There the MainWindowViewModel and the MainWIndow is created and shown.</p></li>
</ol>
<p>MainWindow.xaml is the next thing that happens. It defines the main portion of the UI. The main parts of this is showing two collections; Commands and Workspaces. Those are members of MainWindowViewModel. </p>
<p>Smith seems to like properties to check if their corresponding private fields are null and, if they are, assign them. Thus the "Commands" collection is created in line 51 of MainWindowViewModel which calls CreateCommands() just south of there.</p>
<p>The command classes are abstracted away by RelayCommand, probably because each command doesn't need to know much in the case of "Show All" or "Create". The methods for these two commands are in the MainWindowViewModel, because they are conceptually functions of the main window.</p>
<p>The Commands collection is visualized as a list in the Main Window, so they need some kind of presentable, user friendly text to describe them. Thus they are wrapped in their own CommandViewModels.</p>
<p>The commands are presented through the magic of XAML beginning at line 41 of MainWindow.xaml. The HeaderedContentControl is databound to the Commands collection, and specifies CommandsTemplate of MainWindowResources.xaml (starting at line 93 of that file). The template uses a HyperLink with its Command property bound to the Command property of the CommandViewModel.</p>
<p>When it comes to the Save button on the new customer form. This is bound from CustomerView.xaml, line 117. To the CustomerViewModel SaveCommand property in line 196. It is a RelayCommand pointing to methods in CustomerViewModel. Each customer view has its own instance of CustomerViewModel where the data for that customer goes. The instances of RelayCommand belong to those CustomerViewModels, so each view has it's own SaveCommand also. The action and predicate of the RelayCommand instance knows not only which methods and properties they point to, but also of which instance. The Save method of CustomerViewModel only uses data from that instance.</p>
<p>That's roughly how two views can have the same kind of buttons that do the same for their respective customer data.</p>
http://stackoverflow.com/questions/1777921/website-session-analysis/1778656#17786561Answer by Guge for Website Session AnalysisGuge2009-11-22T13:11:32Z2009-11-22T13:11:32Z<p>You can do this with Google Analytics.</p>
<p>The flow of the users are called a funnel, which you have to set up in Google Analytics, the metric you get out is called Target Conversion Rate.</p>
<p>You can learn more about it at <a href="http://www.google.com/support/conversionuniversity/" rel="nofollow">http://www.google.com/support/conversionuniversity/</a></p>
http://stackoverflow.com/questions/1762320/is-it-ok-for-different-implementing-classes-to-throw-different-exception-types/1762423#17624230Answer by Guge for Is it ok for different implementing classes to throw different exception types?Guge2009-11-19T10:46:08Z2009-11-19T10:46:08Z<p>This is probably subjective. My feeling is that the implementing classes should throw whatever exceptions that is natural to throw at the time. The interface does not declare which exceptions are allowed and which aren't. The compiler does not look at your comments, and a class can throw other exceptions and still be a valid implementation of your interface.</p>
<p>If, for some reason you need those exceptions to be of a single type, you could catch them and rethrow them with the original as inner exception wherever IWidgetWorker.DoWork is called.</p>
<p>The situation where workId is empty, could be handled before the call goes to the implementation, so there is no reason why different implementations should handle the same checking and throwing of ArgumentException.</p>
<p>It might be different in other programming environments. I think that possible exceptions must be declared in some languages, but not here.</p>
<p>The documentation of your interface could say something about how various exceptions are interpreted and what the consuming code will do. Maybe the consuming code will try again after some time interval if the exception is such and such, but will terminate report error in other cases.</p>
http://stackoverflow.com/questions/1731628/column-selection-by-keyboard-navigation-in-wpf-listview0Column selection by keyboard navigation in WPF ListViewGuge2009-11-13T20:17:27Z2009-11-14T09:10:45Z
<p>Can a WPF ListView be set up to do cell focus and/or column selection by using left arrow and right arrow?</p>
<p>I need my ListViews to be accessible to blind users, and the usual mapping of left and right arrow to horizontal scrollbar is not helpful to them.</p>
http://stackoverflow.com/questions/472746/as-a-programmer-how-to-regain-the-ability-to-get-along-with-people/472827#4728270Answer by Guge for As a programmer, how to regain the ability to get along with people?Guge2009-01-23T13:13:45Z2009-01-23T13:13:45Z<p>I don't think programmers lose the ability to communicate. Programming is communication. Programming is the process of formulating ideas in a programming language.</p>
<p>However, when programming we use languages that are accurate and void of ambivalence. A compiler always compiles the same source code into the same end result. This practice of avoiding ambivalent statements spill over into our spoken communication and perhaps make us different from non-programmers. We also spot syntactic errors faster than other. In your question, I can se at least three.</p>
<p>The only thing non-programmers are better at is ignoring ambivalence and without hesitation going with their own interpretations. We, on the other hand, will perhaps pause and require more explicit statements. Our non-programmer friends will then interpret this behaviour as lack of ability to communicate.</p>
<p>Before answering your question I would rephrase it:
How can programmers learn to ignore ambivalent statements and syntactic errors when communicating with people that are coding challenged?</p>
<p>I think practice is the key. Keep some friends that are not into programming and hang out with them. It helps if you share interests outside of programming. Mild intoxication, such as from "a couple of beers" can be effective means to this end.</p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience8What is your best programming experience?Guge2008-11-19T23:58:39Z2009-01-16T15:56:47Z
<p>What has been your best programming experience so far?</p>
<p>Was it the first time you compiled hello.c?</p>
<p>Was it the first time you made your name fill your fathers TV with that 80's home computer?</p>
<p>Was it the time you saved the day by fixing that bug noone else understood?</p>
<p>Let's share our good moments!</p>
<p>(This is not a question of when you knew you would get into programming. I want stories of joy in programming after you became proficient.)</p>
http://stackoverflow.com/questions/378458/good-holiday-gift-ideas-for-people-programmers-work-with/378479#3784790Answer by Guge for Good holiday gift ideas for people programmers work with?Guge2008-12-18T16:54:23Z2008-12-18T16:54:23Z<p>I once got a "URGENT!" rubber stamp for my project manager. Office supply store. Success.</p>
<p>DBA - jigsaw puzzle. They have a tendency to want to bring order to chaos.</p>
<p>Business Analysts - Building blocks, maybe LEGO Duplo. This seems to be the hidden desire.</p>
<p>Designers - Anything that is drool proof, such as laminated pictures of furry animals.</p>
<p>(Yeah, this answer is humorous - I can afford a couple of downvotes.)</p>
http://stackoverflow.com/questions/378207/c-how-can-i-iterate-till-the-end-of-a-dynamic-array/378245#3782451Answer by Guge for C++ How can I iterate till the end of a dynamic array?Guge2008-12-18T15:45:41Z2008-12-18T15:45:41Z<p>Your code needs to keep to track of the array, so the size would never be unknown. (Or you would have to use some library with code that does this.)</p>
<p>I don't understand the last part of your quesiton. Could you elaborate?</p>
http://stackoverflow.com/questions/55963/unsafe-c-and-pointers-for-2d-rendering-good-or-bad/377913#3779131Answer by Guge for Unsafe C# and pointers for 2d rendering, good or bad?Guge2008-12-18T13:57:09Z2008-12-18T13:57:09Z<p>I have also used unsafe to speed up things of that nature. The performance improvemets are dramatic, to say the least. The point here is that unsafe turns off a bunch of things that you might not need as long as you know what you're doing.</p>
<p>Also, check out DirectDraw. It is the 2D graphics component of DirectX. It is really fast.</p>
http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/377445#3774453Answer by Guge for Throwing hardware at software problems – Which way do you lean?Guge2008-12-18T10:17:31Z2008-12-18T10:17:31Z<p>If you want to think about the environment, it's much better to spend money on developers than hardware.</p>
<p>If existing hardware can be utilized better you get a smaller environmental footprint through not having to produce that hardware, ship it and then run it and cool it.</p>
<p>But it has to be said that newer hardware might also give more performace for the same footprint. Hardware upgrades can save both time and make good sense from an environmental angle. Such as upgrading RAM to do less disk activity, or use LCD over CRT's.</p>
<p>Use good science.</p>
http://stackoverflow.com/questions/372915/game-logic-in-xml-files/373141#3731411Answer by Guge for Game Logic in XML FilesGuge2008-12-16T23:25:02Z2008-12-16T23:34:14Z<p>To get inspiration, or maybe even adoption, take a look at AIML and BuddyScript. AIML is XML for chatbots, BuddyScript is another variant - now owned by Microsoft.</p>
<p>The following is a sample of AIML from <a href="http://www.alicebot.org/aiml.html" rel="nofollow">http://www.alicebot.org/aiml.html</a></p>
<pre><code><category>
<pattern>WHAT ARE YOU</pattern>
<template>
<think><set name="topic">Me</set></think>
I am the latest result in artificial intelligence,
which can reproduce the capabilities of the human brain
with greater speed and accuracy.
</template>
</code></pre>
<p> </p>
<p>If you were to integrate AIML technology (which I think is free) into your game, your NPC's would have AI that your players could talk to. Wouldn't that be interesting?</p>
<p>AIML is modular so all your NPCs could have a common file describing all the standard knowledge about their world. Then you could add specific files for the stuff that would be typic to each race, class, place, individual or task. There are plenty of interesting sample AIML files, for example Eliza.</p>
<p>Situational information, can be added at the start of a conversation, and you may have some software outside the AIML engine listening for "magic" words from the NPC indicating that the NPC wants something to happen in the "real" game world. like "***GIVE PLAYER 20 BUFFALO WINGS".</p>
http://stackoverflow.com/questions/372511/what-is-the-object-oriented-programming-computing-overhead-cost/372658#3726580Answer by Guge for What is the object oriented programming computing overhead cost?Guge2008-12-16T20:48:41Z2008-12-16T20:48:41Z<p>I don't think the question is overhead coming from OO.</p>
<p>If we accept C++ as an OO language and remember that the C++ compiler is a preprocessor to C (at least it used to be, when I used C++), anything done in C++ is really done in C. C has very little overhead. So it would depend on the libraries.</p>
<p>I think any overhead would come from interpretation, managed execution or memory management. For those that have the tools and the know-how, it would be very easy to find out which is most efficient, C++ or Python.</p>
<p>I can't see where C++ would add much avoidable overhead. I don't know much about Python.</p>
http://stackoverflow.com/questions/370073/whats-your-best-and-or-funniest-data-loss-story/370136#37013616Answer by Guge for What's your best and/or funniest data loss story?Guge2008-12-16T00:05:44Z2008-12-16T00:05:44Z<p>Here's another:</p>
<p>Some time around '95 or '96, the biggest ISP in Norway hired a security expert to have a look around their web site to look for weak spots. He saw that the shell script for searching, calling WAIS, was not careful about sanitizing input.</p>
<p>He decided to test it by searching for something akin to ';rm <em>.</em> -R</p>
<p>It worked.</p>
<p>It went all the way to the courts.</p>
<p>(If my unix example is impossible, I'd like to state that I'm no expert in shell scripting.)</p>
http://stackoverflow.com/questions/432922/significant-new-inventions-in-computing-since-1980/461070#461070Comment by Guge on Significant new inventions in computing since 1980Guge2009-12-09T20:23:38Z2009-12-09T20:23:38ZLightbulbs? 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.http://stackoverflow.com/questions/1863723/how-to-unanimate-wpf-dependencyproperty/1865586#1865586Comment by Guge on How to unanimate WPF DependencyProperty?Guge2009-12-08T10:05:37Z2009-12-08T10:05:37ZThanks, this is the solution for a repeating animation. My own solution is only good for non-repeating animations.http://stackoverflow.com/questions/606067/programming-graphics-in-assembler/607019#607019Comment by Guge on Programming graphics in assembler?Guge2009-12-07T20:04:20Z2009-12-07T20:04:20ZIf 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.http://stackoverflow.com/questions/1859902/in-3-minutes-what-is-reflection/1859927#1859927Comment by Guge on In 3 minutes, What is Reflection?Guge2009-12-07T13:26:58Z2009-12-07T13:26:58ZIt's concise, but it is very close to the original answer in the text of the question.http://stackoverflow.com/questions/1859902/in-3-minutes-what-is-reflection/1859929#1859929Comment by Guge on In 3 minutes, What is Reflection?Guge2009-12-07T13:20:22Z2009-12-07T13:20:22ZReflection does not require the compiler at runtime.http://stackoverflow.com/questions/1849036/drawing-programmatically-using-c-in-silverlight/1849140#1849140Comment by Guge on Drawing programmatically using C# in SilverlightGuge2009-12-04T23:27:01Z2009-12-04T23:27:01ZOh, you're too kind, Sir!http://stackoverflow.com/questions/1849036/drawing-programmatically-using-c-in-silverlight/1849140#1849140Comment by Guge on Drawing programmatically using C# in SilverlightGuge2009-12-04T22:46:14Z2009-12-04T22:46:14ZI 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.http://stackoverflow.com/questions/1788399/separating-rapid-development-from-refactoring-optimization/1788455#1788455Comment by Guge on Separating rapid development from refactoring/optimizationGuge2009-12-04T19:55:07Z2009-12-04T19:55:07ZThanks for the accept. I wish you the best of luck with your project, it feels oddly familiar.http://stackoverflow.com/questions/1849063/c-custom-setter-event-or-inherited-setter/1849085#1849085Comment by Guge on C# Custom Setter Event or Inherited SetterGuge2009-12-04T19:31:44Z2009-12-04T19:31:44ZYeah, it's called a TransparentProxy.http://stackoverflow.com/questions/302310/microsoft-sql-server-what-does-it-mean-that-a-transaction-log-is-full/302337#302337Comment by Guge on Microsoft SQL Server - What does it mean that a Transaction Log is Full?Guge2009-12-03T13:50:27Z2009-12-03T13:50:27ZNo implications for recovery, which happens every time SQL Server is started, but it has implications for restores.http://stackoverflow.com/questions/302310/microsoft-sql-server-what-does-it-mean-that-a-transaction-log-is-full/302377#302377Comment by Guge on Microsoft SQL Server - What does it mean that a Transaction Log is Full?Guge2009-12-03T09:28:17Z2009-12-03T09:28:17ZYour 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.http://stackoverflow.com/questions/972611/old-developers-any-future/972791#972791Comment by Guge on Old Developers - any future ?Guge2009-12-03T07:40:03Z2009-12-03T07:40:03ZYour baud rate may decrease but your signal to noise ratio will increase.http://stackoverflow.com/questions/1805778/open-dialog-in-wpf-mvvm/1805993#1805993Comment by Guge on Open dialog in WPF MVVMGuge2009-11-27T15:11:35Z2009-11-27T15:11:35ZThe MainViewModel still has a reference to the DialogViewModel after the dialog view is closed.http://stackoverflow.com/questions/109023/best-algorithm-to-count-the-number-of-set-bits-in-a-32-bit-integer/109025#109025Comment by Guge on Best algorithm to count the number of set bits in a 32-bit integer?Guge2009-11-27T00:06:58Z2009-11-27T00:06:58Z+1 for your witty and convincing defense.http://stackoverflow.com/questions/1805778/open-dialog-in-wpf-mvvmComment by Guge on Open dialog in WPF MVVMGuge2009-11-26T23:01:15Z2009-11-26T23:01:15ZDid you have a look at the following questions?<a href="http://stackoverflow.com/questions/454868/handling-dialogs-in-wpf-with-mvvm" rel="nofollow" title="handling dialogs in wpf with mvvm">stackoverflow.com/questions/454868/…</a>
<a href="http://stackoverflow.com/questions/1667888/wpf-mvvm-dialog-example" rel="nofollow" title="wpf mvvm dialog example">stackoverflow.com/questions/1667888/…</a>
<a href="http://stackoverflow.com/questions/1792814/using-mvvm-foundation-messenger-to-show-dialog" rel="nofollow" title="using mvvm foundation messenger to show dialog">stackoverflow.com/questions/1792814/…</a>