User Tobias Hertkorn - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T02:08:40Z http://stackoverflow.com/feeds/user/33827 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/672840/nhibernate-map-unknown-amount-of-columns-to-dictionary 1 [NHibernate] Map unknown amount of columns to Dictionary Tobias Hertkorn 2009-03-23T10:19:57Z 2009-10-20T09:15:42Z <p>I have a legacy system that dynamically augments a table with additional columns when needed. Now I would like to access said table via C#/NHibernate.<br /> There is no way to change the behaviour of the legacy system and I dynamically need to work with the data in the additional columns. Therefore dynamic-component mapping is not an option since I do not know the exact names of the additional columns.</p> <p>Is there a way to put all unmapped columns into a dictionary (column name as key)? Or if that's not an option put all columns into a dictionary?</p> <p>Again, I do not know the names of the columns at compile time so this has to be fully dynamic.</p> <p>Example:</p> <pre><code>public class History { public Guid Id { get; set; } public DateTime SaveDateTime { get; set; } public string Description { get; set; } public IDictionary&lt;string, object&gt; AdditionalProperties { get; set; } } </code></pre> <p>So if the table History contains the Columns <em>Id</em>, <em>SaveDateTime</em>, <em>Description</em>, <em>A</em>, <em>B</em>, <em>C</em> and <em>D</em> I would like to have "A", "B", "C" and "D" in the IDictionary. Or if that's too hard to do simply throw all columns in there.</p> <p>For starters I would also be fine with only using string columns if that helps.</p> http://stackoverflow.com/questions/1573722/git-with-ldap-authorization 2 Git with ldap authorization Tobias Hertkorn 2009-10-15T17:01:21Z 2009-10-17T12:25:26Z <p>Is there a way to authorize user via ldap on a git repository? Or phrased slightly differently: Is there a way to deny people pull/push if they are not in a specific ldap group?</p> <p>Edit: Yes, great idea using PAM and/or a hook. Does anyone have experience using git in combination with pam_ldap?</p> http://stackoverflow.com/questions/1422412/suppressing-internal-log4net-error-messages 1 Suppressing internal log4net error messages Tobias Hertkorn 2009-09-14T15:51:37Z 2009-09-14T16:09:53Z <p>I have a console application that should do best effort logging to a database in addition to flat files. When there is no network connectivity (and therefore no connection to the database) log4net prints an error.</p> <pre><code>log4net:ERROR [AdoNetAppender] Could not open database connection [Data Source=...] System.Data.SqlClient.SqlException: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection) at ... </code></pre> <p>I don't want to see that error in the console. Is there any way to suppress internal log4net error messages? Recompile would be ok, but I would prefere a config based setting, if possible.</p> http://stackoverflow.com/questions/1409474/get-information-about-afp-mountpoint-in-script 0 Get information about afp mountpoint in script Tobias Hertkorn 2009-09-11T07:28:36Z 2009-09-11T07:28:36Z <p>I have a couple of macs where the mnthome command does not return the servername/IP in the "Host DNS name:" line.</p> <p>Two questions:</p> <ol> <li>Is there any other <em>scriptable</em> way to get the servername/IP of an AFP mount point.</li> <li>Who has an idea why that is? </li> </ol> <p>Thanks!</p> http://stackoverflow.com/questions/1399008/how-to-convert-relative-path-to-absolute-path-in-windows-application/1399046#1399046 3 Answer by Tobias Hertkorn for how to convert relative path to absolute path in windows application? Tobias Hertkorn 2009-09-09T11:15:02Z 2009-09-09T11:15:02Z <p>If you want to get the path relative to your .exe then use</p> <pre><code>string absolute = Path.Combine(Application.ExecutablePath, relative); </code></pre> http://stackoverflow.com/questions/610870/when-do-extension-methods-break 5 When do Extension Methods break? Tobias Hertkorn 2009-03-04T14:42:33Z 2009-08-30T17:31:52Z <p>We are currently discussing whether Extension methods in .NET are bad or not. Or under what circumstances Extension methods can introduce hard to find bugs or in any other way behave unexpectedly.</p> <p>We came up with:</p> <ul> <li>Writing an extension method for types that are not under your control (e.g. extending DirectoryInfo with GetTotalSize(), etc...) is bad, because the owner of the API could introduce a method that hides our extension - and might have different edge cases. For example testing for null in an extension method will automatically translate into a NullReferenceException if the extension method is no longer used due to hiding.</li> </ul> <p>Question:</p> <ul> <li>Are there any other dangerous situations than "hiding" that we are not thinking of?</li> </ul> <p>Edit:</p> <p>Another very dangerous situation. Suppose you have an extension method:</p> <pre><code>namespace Example.ExtensionMethods { public static class Extension { public static int Conflict(this TestMe obj) { return -1; } } } </code></pre> <p>And use it:</p> <pre><code>namespace Example.ExtensionMethods.Conflict.Test { [TestFixture] public class ConflictExtensionTest { [Test] public void ConflictTest() { TestMe me = new TestMe(); int result = me.Conflict(); Assert.That(result, Is.EqualTo(-1)); } } } </code></pre> <p>Notice that the namespace where you use it is longer.</p> <p>Now you reference a dll with this:</p> <pre><code>namespace Example.ExtensionMethods.Conflict { public static class ConflictExtension { public static int Conflict(this TestMe obj) { return 1; } } } </code></pre> <p>And your Test will fail! It will compile without a compiler error. It will <strong>simply fail</strong>. Without you even having to specify "using Example.ExtensionMethods.Conflict". The compiler will walk the namespace name and find Example.ExtensionMethods.Conflict.ConflictExtension before Example.ExtensionMethods.Extension and will use that <strong>without ever complaining about ambiguous extension methods</strong>. Oh the horror!</p> http://stackoverflow.com/questions/1132483/are-asp-net-web-site-projects-inherently-slow-at-compiling-or-could-i-have-deepe/1132623#1132623 1 Answer by Tobias Hertkorn for Are ASP.NET Web Site projects inherently slow at compiling, or could I have deeper issues? Tobias Hertkorn 2009-07-15T16:59:22Z 2009-07-17T16:44:29Z <p>First read this blog post <a href="http://weblogs.asp.net/bradleyb/archive/2005/12/06/432441.aspx" rel="nofollow">Tips to optimize design-time build performance for Web Sites in Visual Studio 2005</a></p> <p>Main points made:</p> <ul> <li>Do not disable batch compilation</li> <li>Leverage Server-side Compilation</li> <li>Move App_Code files into a separate class library project</li> <li>Check for conflicting dependencies</li> <li>Turn off AutoToolboxPopulate in the Windows Forms Designer options. </li> <li>Disable validation for HTML editing</li> </ul> <p>Another option that could help you is switching to a RAM disk: <a href="http://jeffreypalermo.com/blog/running-development-from-a-ram-disk-ndash-options-and-products/" rel="nofollow">Running development from a RAM disk – options and products</a></p> <p>If that doesn't help maybe splitting your large WAP into multiple ones could improve compile time. Unfortunatelly that strategy requires you to drop developing on Cassini. Instead you will have to use IIS as host: <a href="http://saftsack.fs.uni-bayreuth.de/~dun3/archives/using-multiple-web-application-projects-wap-in-one-solution-vs-2005/59.html" rel="nofollow">Using multiple Web Application Projects (WAP) in one Solution</a></p> http://stackoverflow.com/questions/1116271/silverlight-user-authentication 0 Silverlight user authentication Tobias Hertkorn 2009-07-12T15:43:50Z 2009-07-15T12:18:07Z <p>I am currently developing a Silverlight 3 app that needs some sort of user authentication, because the data pulled from a WCF service is user specific. Target audience is the regular Internet - so there is no AD to authenticate against.</p> <p>Here are some of the questions I have concerning that situation:</p> <ul> <li>Is there a framework or other mechanism that would support me?</li> <li>Would you recommend authentication within the Silverlight app or via outside mechanisms like forms auth? Which is more secure? </li> <li>What about out-of-browser support?</li> </ul> http://stackoverflow.com/questions/1073180/whats-the-current-state-of-orms/1073237#1073237 4 Answer by Tobias Hertkorn for What's the current state of ORMs? Tobias Hertkorn 2009-07-02T08:50:25Z 2009-07-02T09:16:08Z <p>Please read: <a href="http://www.codinghorror.com/blog/archives/001281.html" rel="nofollow">All Abstractions Are Failed Abstractions</a> It should put a lot of your questions in perspective.</p> <p>Performance is usually not an issue with ORM - and if you really find yourself in a situation where it is, then there usually is always the option to handcraft the SQL statements the ORM uses.</p> <p>IMHO ORM give you an instant and huge development speed increase. That's why they are so popular. And using them right does not make you paint yourself in a corner. There is always the option of hand tuning the performance.</p> <p>Edit:</p> <p>Even though Jeff focuses on Linq to SQL all he says about abstractions and performance are equally true for NHibernate (which I know from years of real world app development). IMHO one should use by default an ORM since they are more than fast enough for the notorious 90% of situations. Reading code written for an ORM usually is more maintainable and readable especially when your code is picked up by the next developer that inherits your code. <a href="http://www.codinghorror.com/blog/archives/001137.html" rel="nofollow">Always code as if the person who ends up maintaining your code is a violent psychopath who knows where you live.</a> Never forget about that guy! </p> <p>In addition they give out of the box caching, lazy loading, unit of work, ... you name it. And I found that when I was not happy about the performance of the ORM <em>it was MY fault</em>. ORM do force you to adhere to good OO design pratices and help you shape your Domain Model.</p> http://stackoverflow.com/questions/1045980/is-there-a-better-way-to-wait-for-queued-threads/1058967#1058967 3 Answer by Tobias Hertkorn for Is there a better way to wait for queued threads? Tobias Hertkorn 2009-06-29T15:36:34Z 2009-06-29T15:36:34Z <p>I really like the <a href="http://msdn.microsoft.com/en-us/library/ms228963.aspx" rel="nofollow">Begin- End- Async Pattern</a> when I have to wait for the tasks to finish.</p> <p>I would advice you to wrap the BeginEnd in a worker class:</p> <pre><code>public class StringWorker { private string m_someString; private IAsyncResult m_result; private Action DoSomethingDelegate; public StringWorker(string someString) { DoSomethingDelegate = DoSomething; } private void DoSomething() { throw new NotImplementedException(); } public IAsyncResult BeginDoSomething() { if (m_result != null) { throw new InvalidOperationException(); } m_result = DoSomethingDelegate.BeginInvoke(null, null); return m_result; } public void EndDoSomething() { DoSomethingDelegate.EndInvoke(m_result); } } </code></pre> <p>To do your starting and working use this code snippet:</p> <pre><code>List&lt;StringWorker&gt; workers = new List&lt;StringWorker&gt;(); foreach (var someString in arrayStrings) { StringWorker worker = new StringWorker(someString); worker.BeginDoSomething(); workers.Add(worker); } foreach (var worker in workers) { worker.EndDoSomething(); } Console.WriteLine("END"); </code></pre> <p>And that's it.</p> <p>Sidenote: If you want to get a result back from the BeginEnd then change the "Action" to Func and change the EndDoSomething to return a type.</p> <pre><code>public class StringWorker { private string m_someString; private IAsyncResult m_result; private Func&lt;string&gt; DoSomethingDelegate; public StringWorker(string someString) { DoSomethingDelegate = DoSomething; } private string DoSomething() { throw new NotImplementedException(); } public IAsyncResult BeginDoSomething() { if (m_result != null) { throw new InvalidOperationException(); } m_result = DoSomethingDelegate.BeginInvoke(null, null); return m_result; } public string EndDoSomething() { return DoSomethingDelegate.EndInvoke(m_result); } } </code></pre> http://stackoverflow.com/questions/1058783/regular-expression-to-find-and-remove-duplicate-words/1058828#1058828 1 Answer by Tobias Hertkorn for Regular expression to find and remove duplicate words Tobias Hertkorn 2009-06-29T15:05:45Z 2009-06-29T15:05:45Z <p>Regex is not suited for everything. Something like your problem does fall into that category. I would advise you to use a parser instead.</p> http://stackoverflow.com/questions/48087/select-a-random-n-elements-from-listt-in-c/1042863#1042863 0 Answer by Tobias Hertkorn for Select a random N elements from List<T> in C# Tobias Hertkorn 2009-06-25T09:25:02Z 2009-06-25T09:25:02Z <p>It is a lot harder than one would think. See the <a href="http://www.codinghorror.com/blog/archives/001008.html" rel="nofollow">great Article "Shuffling"</a> from Jeff.</p> <p>I did write a very short article on that subject including C# code:<br /> <a href="http://saftsack.fs.uni-bayreuth.de/~dun3/archives/return-random-subset-of-n-elements-of-a-given-array/98.html" rel="nofollow">Return random subset of N elements of a given array</a></p> http://stackoverflow.com/questions/997687/what-is-the-most-useful-information-to-display-at-the-front-of-the-office/997704#997704 6 Answer by Tobias Hertkorn for What is the most useful information to display at the front of the office? Tobias Hertkorn 2009-06-15T18:51:19Z 2009-06-16T08:02:58Z <ul> <li>Information about your continuous integration status.</li> <li>Major Development Milestones that have been hit in the last week</li> <li>Releases within the last month (including a short description why this release is awesome)</li> </ul> <p>Use it as motivational board. The achievements of software development are seldom communicated well enough.</p> http://stackoverflow.com/questions/982295/saving-1000-records-to-the-database-at-a-time/982305#982305 4 Answer by Tobias Hertkorn for Saving 1000+ records to the database at a time Tobias Hertkorn 2009-06-11T16:54:52Z 2009-06-11T16:54:52Z <p>setting adonet.batch_size could improve the situation.</p> <p>For that you have to </p> <ul> <li>set adonet.batch_size in the NH configuration</li> </ul> <p>Example:</p> <pre><code> m_sessionFactory = Fluently .Configure() .Database(MsSqlConfiguration .MsSql2005 .ConnectionString(c =&gt; c.FromConnectionStringWithKey("testme")) ) .Mappings(m =&gt; m.FluentMappings .AddFromAssemblyOf&lt;TestImpl&gt;()) .ExposeConfiguration(config =&gt; { config.SetProperty("adonet.batch_size", "1"); m_configuration = config; }) .BuildSessionFactory(); </code></pre> <ul> <li><p>set the batch size on the session just before the save</p> <pre><code>using (ISession session = m_nhibernateSessionFactory.GetSession()) using (var tx = session.BeginTransaction()) { session.SetBatchSize(1000); foreach (var server in serverz) { session.SaveOrUpdate(server); } tx.Commit(); } </code></pre></li> </ul> http://stackoverflow.com/questions/980034/i18n-error-messages-in-net 0 I18n error messages in .NET Tobias Hertkorn 2009-06-11T08:49:31Z 2009-06-11T09:47:28Z <p>I have a .NET application that talks to the AD in order to all the user to change the password of the AD account. It is a web application used internationally and I can't assume that the user speaks English.</p> <p>So I need to translate error messages like "Password does not meet the password policy requirements" into whatever culture the user sends to the webserver.</p> <ul> <li>Can I use any internal translation tables or do I manually have to translate the messages via the returned error codes using my own translation tables?</li> <li>Is there any way to install all possible ressource files for all supported cultures on that server - so that new Win32Exception(errorcode).Message will result in the right message?</li> </ul> http://stackoverflow.com/questions/929508/mercurial-with-multiple-projects 6 Mercurial with multiple projects Tobias Hertkorn 2009-05-30T10:35:06Z 2009-05-30T19:36:02Z <p>I have a couple of projects with different release cycles sitting in my svn repository. Releases are created by using the classic tags structure in svn. When there are bugs to fix in releases a branch is created from a tag, the bug is fixed and then merged from there into trunk.</p> <p>Now, for multiple reasons, I want to switch from svn to mercurial with a central push site.</p> <p>Question: Which is the best way in mercurial to organize multiple projects that share little code between them? Should I create multiple push sites, one for each project?</p> <p>Please include in the answer a description on how to recreate my release-tag, bugfix branch, ... with your prefered version of repository design.</p> <p>Edit: I would like to install as little extensions as possible.</p> <p>Edit2:</p> <p>Given this svn layout:</p> <pre><code>. |-- project-a | |-- branches | | |-- 1.x | | `-- feature-1 | |-- tags | `-- trunk `-- project-b |-- branches |-- tags | |-- 1.0 | `-- 1.1 `-- trunk </code></pre> <p>(thanks @bendin! :) )</p> <p>Is it better to work with multiple hg push repositories</p> <pre><code>project_a-trunk project_a-1.x project_a-feature-1 project_b-trunk </code></pre> <p>for the branches. Tags are folded into the appropriate branch.</p> <p>Or would you rather go with two push repositories in this example</p> <pre><code>project_a project_b </code></pre> <p>with named branches and therefore multiple heads within one repo.</p> <p>The advantage I see with the multiple heads repos is that I don't have to go hunt for a tag in multiple repos. The disadvantage I see is that the hg book seems to discourage multiple head repos. What would/do you do?</p> http://stackoverflow.com/questions/385012/which-is-better-to-get-knowledge-across-webcast-or-written-text 2 Which is better to get knowledge across: Webcast or written text? Tobias Hertkorn 2008-12-21T21:55:04Z 2009-05-07T08:52:48Z <p>I just did some research on how to do X (it's not important what I was researching). A blog post suggested that I should try using product Y to solve my problem with X. So I went on their site - and since I had never used their product I skimmed the "hello" page, had the faint impression that it could indeed help me with my X. So I immediately went to the "Getting started" page - and was presented a 10 minutes webcast.</p> <p>My first impulse was to just close the damn window, because frankly I am starting to get fed up with all those webcasts that are popping up all over the place in the last couple of months. I hope this is a phase, since in my opinion they just do not have the same information density as written text has. I already knew that I was going to sit there for 10 minutes watching somebody clicking around on an IDE telling me stuff that I could have read or at least skimmed in 30-60 seconds.</p> <p>I think all programmers are people that are very well able to read text. So what is the point of producing webcasts, especially "Getting Started" webcasts? They don't have anything near the information density as text has, they can't (yet) be indexed by Google, there is no way I can copy and paste code from them, ... </p> <p>Are there any benefits I am missing? Or does everybody agree that webcasts should be regarded as a phase the web (when it comes to programming knowledge) has to go through - but will hopefully die out sooner or later? I just hate watching people not being able to type for the nth time...</p> http://stackoverflow.com/questions/666021/convert-a-rtf-document-to-image-or-print-rtf-on-server 0 Convert a RTF document to Image or print RTF on server Tobias Hertkorn 2009-03-20T12:55:42Z 2009-04-21T06:29:50Z <p>I have a situation where I want to <strong>convert a RTF</strong> document <strong>to image</strong> for archiving and printing. I am using .NET.<br /> Are there any libraries out there that could help me with this conversion?</p> <p>I need to </p> <ul> <li>convert a RTF to image on a server</li> <li>set the paper size that needs to be adhered to when creating the image</li> </ul> <p>A commercial library is an option but I prefer OS. If there is a client side way to do that that's a valid answer as well, but server side would be extremely nice.</p> <p>Edit:</p> <p>Thanks for all the great answers. Since all of them involve printing a RTF document I have a follow up question:</p> <ul> <li>What is the best way to print an RTF document on a server</li> </ul> http://stackoverflow.com/questions/740180/usage-of-orms-like-nhibernate-when-there-are-many-associations-performance-conc/740218#740218 0 Answer by Tobias Hertkorn for Usage of ORMs like NHibernate when there are many associations - performance concerns Tobias Hertkorn 2009-04-11T14:45:15Z 2009-04-11T14:45:15Z <p>Domain Driven Design has helped me a lot when understanding those kinds of situation. <a href="http://stochastyk.blogspot.com/2008/06/associations-in-domain-driven-design.html" rel="nofollow">Association in DDD</a> </p> <p>The question you should ask yourself in your situation: Do you really need a bi-directional association - or might in some cases an uni-directional association be enough? And that decision is part of the architecture. So you were right. Lazy Loading is a big help, when choosing bi-directional associations by default. But it could be considered a design flaw.</p> http://stackoverflow.com/questions/697701/wpf-datagrid-performance/697781#697781 2 Answer by Tobias Hertkorn for WPF Datagrid Performance Tobias Hertkorn 2009-03-30T15:51:22Z 2009-04-02T16:01:25Z <p>Since I can't see your source code it is quite hard to help you. Especially since the performance of a WPF application is influenced by a lot of things. For some hints on what to look out for see <a href="http://msdn.microsoft.com/en-us/library/aa970683.aspx" rel="nofollow">Optimizing WPF Application Performance</a>. And yes - it greatly matters what xaml is used in each cell. Because usually performance problems do boil down to "too many elements". Did you know that a TextBox are I think 30 individual elements? I recommend you use the <a href="http://msdn.microsoft.com/en-us/library/aa969767.aspx" rel="nofollow">Performance Profiling Tools for WPF</a> to find out more about your specific problem. Try to minimize the amount of elements you are using (e.g. by switching from TextBox to TextBlock where appropriate).</p> <p>Also you have to check if the performance problems exist on any PC you try the application on. Maybe the PC you are using is forcing WPF into software based rendering. Or are you using any BitmapEffects?</p> <p>Edit:<br /> Looking at your code I would suggest you change </p> <p><code>column.Width = DataGridLength.Auto;</code></p> <p>to a reasonable fixed width, since the datagrid does not have to recalculate the width dynamically every time something changes (like adding rows, or even scrolling).</p> http://stackoverflow.com/questions/702004/can-should-i-use-a-mocking-framework-to-dynamically-add-events-to-a-class/702095#702095 1 Answer by Tobias Hertkorn for Can/should I use a mocking framework to dynamically add events to a class? Tobias Hertkorn 2009-03-31T17:15:37Z 2009-03-31T17:15:37Z <p>You could use <a href="http://castleproject.org/dynamicproxy/index.html" rel="nofollow">Castle Project's DynamicProxy</a> which should give you all the infrastructure you need in order to generate a proxy. Then you don't have to worry about emitting IL which can have nasty side-effects if not done properly.</p> <p>I don't know how you want to attach to the event in user code when using the proxy, simply because your IMyCallback does not have the actual event in it only the one called. Or did I misunderstand your question?</p> http://stackoverflow.com/questions/701919/how-to-be-guaranteed-transactional-integrity-in-sql-server-2005/701979#701979 1 Answer by Tobias Hertkorn for How to be guaranteed transactional integrity in SQL Server 2005 Tobias Hertkorn 2009-03-31T16:50:11Z 2009-03-31T16:50:11Z <p>Try hinting with <a href="http://msdn.microsoft.com/en-us/library/ms187373.aspx" rel="nofollow">UPDLOCK</a>.</p> <pre><code> select @next_value = next_value from key_generation_table WITH(UPDLOCK) where prefix = @prefix </code></pre> <p>key_generation_table is ideally only used with this specific stored proc. Otherwise UPDLOCK can increase the probability of deadlocks.</p> http://stackoverflow.com/questions/697526/simplest-version-control-system/697589#697589 5 Answer by Tobias Hertkorn for Simplest version control system Tobias Hertkorn 2009-03-30T15:03:32Z 2009-03-30T15:08:34Z <p>I can only add my voice to the "use subversion" chorus. But you were also asking about <strong>simple installation and administration</strong>.</p> <p>For that I would point you to <a href="http://www.visualsvn.com/server/" rel="nofollow">VisualSVN Server</a>. It is an easy to use server installation on Windows. And it is free.</p> <p>Or if you want to go with a manual setup (maybe because you don't want to use the apache bundled with visualsvn server) follow Jeff's <a href="http://www.codinghorror.com/blog/archives/001093.html" rel="nofollow">Setting up Subversion on Windows</a>.</p> http://stackoverflow.com/questions/685039/microsoft-logging-application-block-and-multi-threading/685146#685146 1 Answer by Tobias Hertkorn for Microsoft Logging application block and multi-threading Tobias Hertkorn 2009-03-26T10:05:15Z 2009-03-26T10:05:15Z <p>I am not too sure why you are concerned that this might happen. As long as you provide a category for your logging messages those should be written to the appropriate logging file configured for that category. This operation is thread safe.</p> <p>Or are you talking about writing the logging messages of the same category to different files by thread? E.g. thread 1 -> mylog-1.log; thread 2 -> mylog-2.log</p> http://stackoverflow.com/questions/684989/one-complex-query-vs-multiple-simple-queries/685033#685033 2 Answer by Tobias Hertkorn for One complex query vs Multiple simple queries Tobias Hertkorn 2009-03-26T09:20:15Z 2009-03-26T09:20:15Z <p>From a gut feeling I would say:</p> <p>Go with the simple way as long as there is no proven reason to optimize for performance. Otherwise I would put the "complex objects and query" approach in the basket of premature optimization.</p> <p>If you find that there are real performance implications then you should in the next step optimize the roundtripping between flex and your backend. But as I said before: This is a gut feeling, you really should start out with a definition of "performant", start simple and measure the performance.</p> http://stackoverflow.com/questions/668361/fastest-implementation-of-a-true-random-number-generator-in-c/668541#668541 1 Answer by Tobias Hertkorn for Fastest implementation of a true random number generator in C# Tobias Hertkorn 2009-03-21T01:22:10Z 2009-03-21T01:22:10Z <p>AFAIK a true random generator will never be implemented in C#. That can only be done with the help of hardware?</p> http://stackoverflow.com/questions/659489/pessimistic-versus-optimistic-concurrency-locking-versus-feedback/659500#659500 0 Answer by Tobias Hertkorn for Pessimistic versus Optimistic Concurrency (Locking versus Feedback) Tobias Hertkorn 2009-03-18T18:17:22Z 2009-03-18T18:17:22Z <p>I personally would go with option 2 - plus, if there applicable (for example those edits are on a longer text) make it the responsibility of User B to merge the edits. Give B a tool to do so.</p> http://stackoverflow.com/questions/648463/best-way-to-model-customer-address/648586#648586 1 Answer by Tobias Hertkorn for Best way to model Customer <--> Address Tobias Hertkorn 2009-03-15T21:36:55Z 2009-03-15T21:36:55Z <p>When answering those kinds of questions I like to use the classifications of <a href="http://en.wikipedia.org/wiki/Domain-driven%5Fdesign" rel="nofollow">DDD</a>. If it's a Entity it should have a separate ID, if it's a value object it should not.</p> http://stackoverflow.com/questions/610956/do-you-find-you-still-need-variables-you-can-change-and-if-so-why/642382#642382 0 Answer by Tobias Hertkorn for Do you find you still need variables you can change, and if so why? Tobias Hertkorn 2009-03-13T12:11:18Z 2009-03-13T12:11:18Z <p>I know you asked for code that did show the benefits of mutable variables. And I wish I could provide it. But as pointed out before - there is no problem that can't be expressed in both fashions. And especially since you pointed out that jpalecek's area of a polygon example could be written with a folding algo (which is IMHO way messier and takes the problem to different level of complexity) - well it made me wonder why you are coming down on mutability so hard. So I'll try to make the argument for a common ground and an coexistence of immutable and mutable data.</p> <p>In my opinion this question misses the point a bit. I know that us programmers are prone to liking things clean and simple but we sometimes miss that a mixture is possible as well. And that's probably why in the discussion about immutability there is seldom somebody taking the middle ground. I just wonder why, because let's face it - <strong>immutability is a great tool</strong> of abstracting all kinds of problems. But sometimes it is a <strong>huge pain in the ass</strong>. Sometimes it simply is too constraining. And that alone makes me stop and thing - do we really want to loose mutability? Is it really either-or? <strong>Isn't there some common ground</strong> we can arrive at? When does immutability help me achieve my goals faster, when does mutability? <strong>Which solution is easier to read and maintain?</strong> (Which for me is the biggest question)</p> <p>A lot of these questions are influenced by a programmer's taste and by what they are used to program in. So I'll focus on one of the aspects that is usually the center of most pro-immutability arguments - Parallelism:</p> <p>Often parallelism is thrown into the argument surrounding immutability. I've worked on problem sets that required 100+ CPUs to solve in a reasonable time. And it has taught me one very important thing: Most of the time parallelizing the manipulation of graphs of data is really not the kind of thing that will be the most efficient way to parallelize. It sure can benefit greatly, but imbalance is a real problem in that problem-space. So usually working on multiple mutable graphs in parallel and exchanging information with immutable messages is way more efficient. Which means, when I know that the graph is isolated, that I have not revealed it to the outside world, I would like to perform my operations on it in the most concise manner I can think of. And that usually involves mutating the data. But after these operation on the data I want to open the data up to the whole world - and that's the point where I usually get a bit nervous, if the data is mutable. Because other parts of the program could corrupt the data, the state becomes invalid, ... because after opening up to the world the data often does get into the world of parallelism.</p> <p>So real world parallel programs usually have areas where data graphs are used in definitive single thread operations - because they simply are not known to the outside - and areas where they could be involved in multi-threaded operations (hopefully just supplying data not being manipulated). During those multi-threaded parts we never want them to change - it simply is better to work on outdated data than on inconsistent data. Which can be guaranteed by the notion of immutability.</p> <p>That made me come to a simple conclusion: The real problem for me is that non of the programming languages I am familiar with allow me to say: <strong>"After this point this whole data structure shal be immutable"</strong> and <strong>"give me a mutable copy of this immutable data structure here, please verify that only I can see the mutable copy"</strong>. Right now I have to guarantee it myself by flipping a readonly bit or something similar. If we could have compiler support for it, not only would it guarantee for me that I did not do anything stupid after flipping said bit, but it could actually help the compiler do various optimizations that it couldn't do before. Plus - the language would still be attractive for programmers that are more familiar with the imperative programming model.</p> <p>So to sum up. IMHO <strong>programs usually have a good reason to use both immutable and mutable representations of data graphs</strong>. I would argue that data should be <strong>immutable by default</strong> and the compiler should enforce that - but we should have the <strong>notion of private mutable representations</strong>, because there naturally are areas where multi-threading will never reach - and readability and maintainability could benefit from a more imperative structuring.</p> http://stackoverflow.com/questions/638192/how-do-i-best-catch-up-with-the-latest-developments-in-java/638203#638203 4 Answer by Tobias Hertkorn for How do I best catch up with the latest developments in java? Tobias Hertkorn 2009-03-12T11:23:17Z 2009-03-12T11:23:17Z <p>I strongly encourage you to read blogs. That's usually the best way to get up to speed.</p> <p><a href="http://stackoverflow.com/questions/48701/what-is-the-best-blog-for-java-development">http://stackoverflow.com/questions/48701/what-is-the-best-blog-for-java-development</a></p> <p>Plus look at this SO thread: <a href="http://stackoverflow.com/questions/255458/learning-java">Learning Java</a></p> http://stackoverflow.com/questions/1422412/suppressing-internal-log4net-error-messages/1422524#1422524 Comment by Tobias Hertkorn on Suppressing internal log4net error messages Tobias Hertkorn 2009-09-14T16:23:17Z 2009-09-14T16:23:17Z Yes! &lt;configuration&gt; &lt;appSettings&gt; &lt;add key=&quot;log4net.Internal.Quiet&quot; value=&quot;true&quot; /&gt; &lt;/appSettings&gt; &lt;/configuration&gt; Did the trick for me! Thanks! http://stackoverflow.com/questions/1399008/how-to-convert-relative-path-to-absolute-path-in-windows-application Comment by Tobias Hertkorn on how to convert relative path to absolute path in windows application? Tobias Hertkorn 2009-09-09T11:16:30Z 2009-09-09T11:16:30Z Do you mean a relative path to the current directory, in other words the working directory, or relative to the location of the .exe? http://stackoverflow.com/questions/1399008/how-to-convert-relative-path-to-absolute-path-in-windows-application/1399015#1399015 Comment by Tobias Hertkorn on how to convert relative path to absolute path in windows application? Tobias Hertkorn 2009-09-09T11:15:54Z 2009-09-09T11:15:54Z Would that not be depending on where you start the app from, not depending on where the exe is situated? Granted the question is not really clear on that. http://stackoverflow.com/questions/600622/most-complete-orm-with-linq-support/634242#634242 Comment by Tobias Hertkorn on Most complete ORM with LINQ support? Tobias Hertkorn 2009-08-05T16:21:20Z 2009-08-05T16:21:20Z Hi Alex, thanks for the info - though I have to tell you, all I see there is: NHibernate is way fast enough for my purposes. ;) http://stackoverflow.com/questions/1116271/silverlight-user-authentication/1116285#1116285 Comment by Tobias Hertkorn on Silverlight user authentication Tobias Hertkorn 2009-07-13T14:49:17Z 2009-07-13T14:49:17Z Do you have experience with this solution? http://stackoverflow.com/questions/1073180/whats-the-current-state-of-orms/1073237#1073237 Comment by Tobias Hertkorn on What's the current state of ORMs? Tobias Hertkorn 2009-07-07T11:12:47Z 2009-07-07T11:12:47Z @DarkSquid Absolutely right. Are you talking about raw sql through ORM (in other word hand crafted queries) or really raw low level sql interaction? http://stackoverflow.com/questions/1076273/host-header-value-not-working-externally Comment by Tobias Hertkorn on Host Header Value Not Working Externally Tobias Hertkorn 2009-07-02T19:56:53Z 2009-07-02T19:56:53Z you might have more luck asking admin questions on the sister site serverfault.com http://stackoverflow.com/questions/1073180/whats-the-current-state-of-orms/1073237#1073237 Comment by Tobias Hertkorn on What's the current state of ORMs? Tobias Hertkorn 2009-07-02T16:30:54Z 2009-07-02T16:30:54Z IMHO they are fast enough for 90% of the tasks usually found in a RIA, Webapp or Rich Client. They usually are not the best tool for simple(!) CRUD-Apps or pure ETL scenarios. http://stackoverflow.com/questions/1016918/log-cookie Comment by Tobias Hertkorn on Log Cookie Tobias Hertkorn 2009-06-19T08:38:52Z 2009-06-19T08:38:52Z Try asking questions related to administrative tasks over at serverfault.com http://stackoverflow.com/questions/672840/nhibernate-map-unknown-amount-of-columns-to-dictionary/992614#992614 Comment by Tobias Hertkorn on [NHibernate] Map unknown amount of columns to Dictionary Tobias Hertkorn 2009-06-14T18:52:58Z 2009-06-14T18:52:58Z It though is possible to dynamically detect and process table metadata. And alter insert statements accordingly. It is possible to use this information to alter and/or dynamically assemble insert statements using &quot;classic&quot; ado.net. The question is: Is this possible to do using NHibernate? Or does NHibernate provide some form of automation to do so. http://stackoverflow.com/questions/980034/i18n-error-messages-in-net/980256#980256 Comment by Tobias Hertkorn on I18n error messages in .NET Tobias Hertkorn 2009-06-11T15:00:01Z 2009-06-11T15:00:01Z Hmm, I guess I haven't made myself clear enough. It is not about general error handling in ASP.NET type scenarios. I was asking about printing the polish equivalent of &quot;Password does not meet the password policy requirements&quot; even on a server that has a regular Win2003 EN installed. Wouldn't it be the case that the .NET Framework would still default to English? http://stackoverflow.com/questions/929508/mercurial-with-multiple-projects/929546#929546 Comment by Tobias Hertkorn on Mercurial with multiple projects Tobias Hertkorn 2009-05-30T11:40:37Z 2009-05-30T11:40:37Z Cool. I have the second layout. So what you are saying is that I should create multiple hg repos? http://stackoverflow.com/questions/817232/what-do-you-wish-was-automatic-in-your-favorite-programming-language/817322#817322 Comment by Tobias Hertkorn on What do you wish was automatic in your favorite programming language? Tobias Hertkorn 2009-05-03T15:42:54Z 2009-05-03T15:42:54Z Try <a href="http://code.msdn.microsoft.com/PowerCommands" rel="nofollow">code.msdn.microsoft.com/PowerCommands</a> http://stackoverflow.com/questions/97520/nhibernate-auditing-and-computed-column-values/101037#101037 Comment by Tobias Hertkorn on NHibernate, auditing and computed column values Tobias Hertkorn 2009-03-23T09:23:46Z 2009-03-23T09:23:46Z Could you point me to a full sample of your approach? http://stackoverflow.com/questions/610956/do-you-find-you-still-need-variables-you-can-change-and-if-so-why/642382#642382 Comment by Tobias Hertkorn on Do you find you still need variables you can change, and if so why? Tobias Hertkorn 2009-03-13T17:00:49Z 2009-03-13T17:00:49Z &quot;SSA&quot; impl uses recursion, a fold, makes it explicit that a line has no area, ... That's a hell lot &quot;just&quot; for the claim that SSA is &quot;cleaner&quot;.Let SSA be done by the compiler. Like I point out in my answer there is a different dimension to the question - and one should consider not being either-of.