User Stephan Eggermont - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T14:17:37Z http://stackoverflow.com/feeds/user/35306 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1715760/how-do-i-architect-microsoft-project-server-2007-in-a-geographically-distributed/1716090#1716090 0 Answer by Stephan Eggermont for How do I architect Microsoft Project Server 2007 in a geographically distributed environment? Stephan Eggermont 2009-11-11T15:51:24Z 2009-11-12T10:36:28Z <p>I'd guess Project assumes it is on a local network and the performance is killed by the large delays over the WAN. A hardware solution could be a <a href="http://www.riverbed.com" rel="nofollow" title="steelhead">steelhead</a></p> <p>And if those are software projects, switching to a more sensible project planning tool would improve performance the most :)</p> http://stackoverflow.com/questions/322807/which-software-development-practice-would-return-the-highest-roi/1721263#1721263 0 Answer by Stephan Eggermont for Which software development practice would return the highest ROI? Stephan Eggermont 2009-11-12T10:19:37Z 2009-11-12T10:19:37Z <p>One practice at a time is not going to give the best ROI. The practices are not independent. </p> http://stackoverflow.com/questions/1721195/how-to-implement-crud-operations-in-uml/1721218#1721218 1 Answer by Stephan Eggermont for How to implement CRUD operations in UML Stephan Eggermont 2009-11-12T10:09:03Z 2009-11-12T10:09:03Z <p>It is very simple. Don't add them to your diagrams. What value would they add? The value of UML diagrams should be in explaining complex situations. Important is to decide how much you can eliminate, not how much you can add.</p> http://stackoverflow.com/questions/1721158/rails-foreign-key-logic/1721170#1721170 1 Answer by Stephan Eggermont for Rails foreign key logic Stephan Eggermont 2009-11-12T09:58:56Z 2009-11-12T09:58:56Z <p>No, that is to avoid duplication. DRY. The foreign key relationship in the database is reflected in the application. There should be only one place where that relationship is described.</p> http://stackoverflow.com/questions/1715732/cost-of-system-integration/1716263#1716263 2 Answer by Stephan Eggermont for Cost of system integration? Stephan Eggermont 2009-11-11T16:17:13Z 2009-11-11T17:03:30Z <p>Between 0 and 99%. I have built systems with no integration at all and systems that were basically just integration of other systems. The nice thing about integration can be that it is easy to estimate. But only when the interface is fully understood. Then it is just a duplication of functionality. </p> <p>There are some complicating factors, though. They can make it very expensive to impossible:</p> <ul> <li>is the system you have to integrate with well understood (do the programmers who developed it still work there?)</li> <li>is the system you have to integrate with well-refactored (and has automated unit and acceptance tests)? </li> <li>single or multiple platform?</li> <li>are domain experts available?</li> </ul> http://stackoverflow.com/questions/1598054/smalltalk-newline-character/1716544#1716544 0 Answer by Stephan Eggermont for Smalltalk, newline character Stephan Eggermont 2009-11-11T16:51:22Z 2009-11-11T16:51:22Z <p>It is of course depending on the encoding. Could be cr, lf or crlf. For unicode there are a few extra possibilities. See: <a href="http://code.google.com/p/pharo/issues/detail?id=1356" rel="nofollow">pharo linesDo:</a> </p> http://stackoverflow.com/questions/1639123/how-should-web-applications-interfaces-be-designed/1716522#1716522 0 Answer by Stephan Eggermont for How should Web Applications Interfaces be designed? Stephan Eggermont 2009-11-11T16:47:20Z 2009-11-11T16:47:20Z <p>Yes. When doing an OO approach to web app development (using Seaside) I can deliver functionality so much faster that I have sufficient time to think about how to deliver the right amount of performance. </p> http://stackoverflow.com/questions/1697995/which-popular-rapid-web-development-frameworks-follow-the-rails-paradigm/1716373#1716373 0 Answer by Stephan Eggermont for Which popular rapid web development frameworks follow the "Rails paradigm"? Stephan Eggermont 2009-11-11T16:31:24Z 2009-11-11T16:31:24Z <p>Hmm, <a href="http://www.seaside.st" rel="nofollow">Seaside</a> is the only one really doing DRY, but the number of posts on SO is not that large.</p> http://stackoverflow.com/questions/1572574/java-fast-data-storage-retrieval/1600513#1600513 0 Answer by Stephan Eggermont for Java Fast Data Storage & Retrieval Stephan Eggermont 2009-10-21T12:34:07Z 2009-10-21T12:34:07Z <p>Sub millisecond r/w means you cannot depend on disk, and you have to be careful about network latency. Just forget about standard SQL based solutions, main-memory or not. In a ms, you cannot get more than 100 KByte over a GBit network. Ask a telecom engineer, they are used to solving these kind of problems.</p> http://stackoverflow.com/questions/1524857/formatting-phone-number/1525561#1525561 1 Answer by Stephan Eggermont for Formatting phone number Stephan Eggermont 2009-10-06T13:22:52Z 2009-10-06T13:22:52Z <p>That's interesting, as it is not the standardized way to format dutch mobile numbers (all start with 06) in the Netherlands.</p> <p>You should probably just write this test-driven. There are lots of interesting cases you'll want to cover, and that way you'll at least be able to show what you do and what you do not convert. </p> http://stackoverflow.com/questions/61520/what-are-the-pros-and-cons-of-object-databases/1479545#1479545 1 Answer by Stephan Eggermont for What are the pros and cons of object databases? Stephan Eggermont 2009-09-25T20:58:32Z 2009-09-25T20:58:32Z <p>It has nothing to do with performance. That is to say, basically all applications would perform better with an OODB. But that would also put lots of DBA's out of work/having to learn a new technology. Even more people would be out of work correcting errors in the data. That's unlikely to make OODBs popular with established companies. Gavin seems to be totally clueless, a better link would be <a href="http://kirk.blog-city.com/gavin%5Fdefends%5Frdbms%5Fand%5Fted%5Frebukes.htm" rel="nofollow">Kirk</a></p> http://stackoverflow.com/questions/1461805/how-can-i-compare-similar-codebases/1462027#1462027 2 Answer by Stephan Eggermont for How can I compare similar codebases? Stephan Eggermont 2009-09-22T19:10:58Z 2009-09-22T19:10:58Z <p>There is the java tool <a href="http://loose.upt.ro/iplasma/dude.html" rel="nofollow">dude</a>, part of the MOOSE software reengineering toolkit, by Richard Wettel. It is documented in his (masters?) thesis. MOOSE provides much more than just this, you might want to look at his Codecity.</p> <p>I've used it on java, c#, delphi, xml. It should work ok on c++ too. For large code bases, don't forget to give it enough heap space, and start with a simple similarity metric. </p> http://stackoverflow.com/questions/1396191/what-should-every-developer-know-about-legal-matters/1460242#1460242 1 Answer by Stephan Eggermont for What should every developer know about legal matters? Stephan Eggermont 2009-09-22T13:51:31Z 2009-09-22T13:51:31Z <ol> <li>Don't work in a country that has more lawyers than developers.</li> <li>An extremely large percentage of all (U.S.) software patents are bogus, but you can't pay or wait for them to be invalidated.</li> <li>If you want to use/develop open source software, use an existing license and don't modify it. Don't go near the borders of what the license is supposed to mean.</li> </ol> http://stackoverflow.com/questions/1415078/which-is-the-fastest-search-technique-method-in-context-of-file-searching/1444220#1444220 0 Answer by Stephan Eggermont for Which is the fastest search technique/method? (In context of file searching) Stephan Eggermont 2009-09-18T12:20:40Z 2009-09-18T12:20:40Z <p>There are lots of research papers on full-text search available on the web, and there is lots of source code. If you take a look at them, you'll see that using a binary search tree is not going to provide good results on modern hardware. A binary search tree is a very specific data-structure that is not as fast as possible on a modern cpu with multi-level cache. Fast datastructures have higher fan out than 2.</p> <p>In addition, the problem is more suited for a (radix) trie. See wikipedia.</p> http://stackoverflow.com/questions/1439544/how-should-i-interview-a-candidate-who-is-probably-a-no-hire/1439558#1439558 -2 Answer by Stephan Eggermont for How should I interview a candidate who is probably a "no hire"? Stephan Eggermont 2009-09-17T15:22:58Z 2009-09-17T15:22:58Z <p>Hello, tell me about your family connections? :)</p> http://stackoverflow.com/questions/1388469/is-there-a-working-c-refactoring-tool/1388935#1388935 0 Answer by Stephan Eggermont for Is there a working C++ refactoring tool? Stephan Eggermont 2009-09-07T11:34:46Z 2009-09-07T11:34:46Z <p>If your looking to reengineer your codebase: MOOSE. But that's a large collection of analysis and reengineering tools, not an editor.</p> http://stackoverflow.com/questions/1381465/how-to-reduce-structure-size/1381575#1381575 3 Answer by Stephan Eggermont for How to reduce structure size Stephan Eggermont 2009-09-04T21:15:38Z 2009-09-07T07:16:10Z <p>For some serious fun: apply Flyweight and store all instances in a bitmap? With a small memory device you don't need 4 byte pointers. </p> <p>[Edit] With Flyweight, you can have a separate storage strategy for each field. I do not suggest to directly store the string value in the bitmap, but you could store an index.</p> <p>The type is not stored in the bitmap, but in the unique object factory.</p> http://stackoverflow.com/questions/1381544/convert-byte-array-to-integer-in-delphi/1381553#1381553 0 Answer by Stephan Eggermont for Convert Byte Array to Integer in Delphi Stephan Eggermont 2009-09-04T21:09:46Z 2009-09-04T21:09:46Z <p>My integers are often 4 bytes long. Which part do you want to set?</p> http://stackoverflow.com/questions/1381532/does-output-buffering-help-in-performance/1381546#1381546 1 Answer by Stephan Eggermont for Does Output Buffering help in performance? Stephan Eggermont 2009-09-04T21:06:59Z 2009-09-04T21:06:59Z <p>It only helps if it is the bottleneck. How did you measure?</p> http://stackoverflow.com/questions/1381170/what-language-technology-should-i-learn-next/1381483#1381483 0 Answer by Stephan Eggermont for What language/technology should I learn next? Stephan Eggermont 2009-09-04T20:48:35Z 2009-09-04T20:48:35Z <p>I'd suggest Seaside on Smalltalk. It will invalidate a lot of your assumptions on how to build web applications.</p> http://stackoverflow.com/questions/1329898/resources-and-guidelines-for-porting-an-object-database-data-to-a-relational-da/1330033#1330033 0 Answer by Stephan Eggermont for Resources and guidelines for porting an object database + data to a relational database Stephan Eggermont 2009-08-25T18:17:05Z 2009-08-26T06:39:47Z <p>I should have that here somewhere, let me look, it should be somewhere close to that paper <em>Upgrading from c# to cobol</em> :)</p> <p>Basically all documentation on ORM technology (like Hibernate, Toplink) can help you. You'll probably run into issues getting good performance, handling behaviour, and object versions.</p> <p>[edit] An object database for a c program? Or a persistence engine (like ctree?)</p> <p>[edit2] So it's not an object database but a persistence engine, no object versions, storing of behaviour? Then the general style could be of a network or hierarchical database. What API do you have? Can you intercept calls?</p> http://stackoverflow.com/questions/1325672/how-to-ask-a-business-user-for-cardinality-information/1326029#1326029 0 Answer by Stephan Eggermont for How to ask a business user for cardinality information? Stephan Eggermont 2009-08-25T04:25:05Z 2009-08-25T04:25:05Z <p>And don't forget to ask the other users. Other departments might have different views. </p> http://stackoverflow.com/questions/1260670/rich-gui-application-in-delphi/1325975#1325975 0 Answer by Stephan Eggermont for Rich GUI application in Delphi Stephan Eggermont 2009-08-25T04:02:41Z 2009-08-25T04:02:41Z <p>I hope you are not expecting people to use such an application. As they wont. There are no end users who want to see a custom appearance. Skinning is a hobby for programmers who have too much time on their hands and not enough user interface design experience</p> http://stackoverflow.com/questions/1232830/efficient-look-up-in-a-list/1233268#1233268 1 Answer by Stephan Eggermont for Efficient look-up in a List Stephan Eggermont 2009-08-05T13:29:58Z 2009-08-05T22:09:15Z <p>ArrayList is for toy-sized problems. 100.000 rows is getting a little out of toy space. That means you have to be more precise about the access patterns you need to support. A sorted ArrayList might be enough, and if processing speed is growing faster than your problem size, you might not want to bother, but a BTree will be faster at 100K elements.</p> <p>ArrayList has the following problems with larger problem sizes:</p> <ul> <li>add to the end is slow when the collection has to grow (copy all elements)</li> <li>insert at a random position is slow because on average half the collection has to be moved one position</li> </ul> <p>A two-level collection with fixed page size (e.g. BTree) can help because a grow will mean adding a (ideally) about sqrt(size) page and a random insert will max split one page in two.</p> <p>With two needed sort orders, you can simply use two (sorted) BTrees </p> <p>[edit] The answer to the earlier question is the key to the problem. For a 1000 element ArrayList, the insert costs 7 microseconds, for 1000000 elements 7 milliseconds. The BTree stays in the microseconds range (but could be twice as slow for 1000 element page size).</p> <p>Indexed acces you can create by keeping an index of the number of elements in each page. If you set a dirty flag on each page you can use a background thread to update the start index of each page, or you can add bulk operations with delayed index building.</p> <p>The index can be invalid, but it is just sqrt(size) large. For 100K elements, it is just incrementing 150 indexes on average. That takes microseconds, not milliseconds</p> http://stackoverflow.com/questions/1232976/should-i-switch-to-asp-net/1233031#1233031 0 Answer by Stephan Eggermont for Should I switch to ASP.NET? Stephan Eggermont 2009-08-05T12:46:18Z 2009-08-05T12:46:18Z <p>For reusability you should take a look at Seaside. DRY done right. </p> http://stackoverflow.com/questions/42934/whats-with-the-love-of-dynamic-languages/1221906#1221906 0 Answer by Stephan Eggermont for What's with the love of dynamic Languages Stephan Eggermont 2009-08-03T11:50:57Z 2009-08-03T11:50:57Z <p>Productivity in a certain context. But that is just one environment I know, compared to some others I know or have seen used.</p> <p>Smalltalk on Squeak/Pharo with Seaside is a much more effective and efficient web platform than ASP.Net(/MVC), RoR or Wicket, for complex applications. Until you need to interface with something that has libraries in one of those but not smalltalk.</p> <p>Misspelled variable names are red in the IDE, IntelliSense works but is not as specific. Run-time errors on webpages are not an issue but a feature, one click to bring up the debugger, one click to my IDE, fix the bug in the debugger, save, continue. For simple bugs, the round-trip time for this cycle is less than 20 seconds.</p> http://stackoverflow.com/questions/1205468/java-developer-interview-question/1205965#1205965 2 Answer by Stephan Eggermont for Java Developer Interview Question Stephan Eggermont 2009-07-30T11:18:57Z 2009-07-30T22:46:15Z <p>You could add a section on technologies, evaluated and rejected. :)</p> <p>[edit] That might even be not such a bad idea. It would trigger my attention. Just make sure you can explain clearly the evaluation criteria, where they failed, and why they might have been seen as a good choice (at the time) for the company you want to work for.</p> http://stackoverflow.com/questions/1205753/which-embedded-web-server-to-use-for-my-app-gui/1205806#1205806 -1 Answer by Stephan Eggermont for which embedded web server to use for my app GUI Stephan Eggermont 2009-07-30T10:43:42Z 2009-07-30T22:38:20Z <p>You are aware that a lot of machines already run something on port 80/443, are you? [edit] Controlling an embedded system sounds like a good fit for snmp, not http.</p> http://stackoverflow.com/questions/1209522/project-planning-diagrams-and-such-best-tool/1209658#1209658 1 Answer by Stephan Eggermont for Project Planning? Diagrams and Such.... Best tool? Stephan Eggermont 2009-07-30T22:02:56Z 2009-07-30T22:02:56Z <p>In Eclipse there is GEF, which is a nice programmable framework. It makes sense to use that to generate diagrams directly from your source code. </p> http://stackoverflow.com/questions/881871/how-to-convince-your-fellow-developer-to-write-short-methods/886765#886765 -1 Answer by Stephan Eggermont for How to convince your fellow developer to write short methods? Stephan Eggermont 2009-05-20T08:16:06Z 2009-07-29T12:39:34Z <p>You might want to tell them that he might have a really good memory, but you don't. Some people are able to handle much longer methods than others. If you both have to be able to maintain the code, it can only be done if the methods are smaller. </p> <p>Only do this if he doesn't have a superiority complex</p> <p>[edit] why is this collecting negative scores?</p> http://stackoverflow.com/questions/276113/what-is-a-bubble-sort-good-for/328008#328008 Comment by Stephan Eggermont on What is a bubble sort good for? Stephan Eggermont 2009-11-15T09:55:23Z 2009-11-15T09:55:23Z Yes. If you can tune the situation so that bubblesort is the perfect answer, you should have been able to tune the situation so that it isn't. http://stackoverflow.com/questions/1721158/rails-foreign-key-logic/1721170#1721170 Comment by Stephan Eggermont on Rails foreign key logic Stephan Eggermont 2009-11-12T17:27:48Z 2009-11-12T17:27:48Z Developer performance. http://stackoverflow.com/questions/1572574/java-fast-data-storage-retrieval/1572744#1572744 Comment by Stephan Eggermont on Java Fast Data Storage & Retrieval Stephan Eggermont 2009-11-12T10:38:47Z 2009-11-12T10:38:47Z No, it doesn't. Sub ms? http://stackoverflow.com/questions/1715690/what-are-some-programming-interview-questions-which-give-a-good-indication-of-one/1715708#1715708 Comment by Stephan Eggermont on What are some programming interview questions which give a good indication of one's ability? Stephan Eggermont 2009-11-11T16:27:35Z 2009-11-11T16:27:35Z program stupidquestion; begin writeln(3,5,6,9,10,12,15...99); end. http://stackoverflow.com/questions/1622528/database-structure-advice-needed/1697911#1697911 Comment by Stephan Eggermont on Database Structure Advice Needed Stephan Eggermont 2009-11-11T15:01:14Z 2009-11-11T15:01:14Z The flat list model is a problem. It is an abstraction of the implementation that makes performance difficult to achieve. The problem is not in representing a structure, as we can all map the application to a turing-machine,but in representing it in a purposeful way. The relational model is getting squeeezed between the cloud and prevayler. http://stackoverflow.com/questions/532523/is-it-worth-to-build-in-house-developer-team-vs-hiring-freelance-team-workforce/532587#532587 Comment by Stephan Eggermont on Is it worth to build in-house developer team vs. hiring freelance team workforce? Stephan Eggermont 2009-10-24T19:54:18Z 2009-10-24T19:54:18Z That's not high-end, or is the economy that bad? http://stackoverflow.com/questions/711140/why-isnt-smalltalk-popular/712478#712478 Comment by Stephan Eggermont on Why isn't Smalltalk popular? Stephan Eggermont 2009-10-21T12:50:02Z 2009-10-21T12:50:02Z This is improving in Pharo, though. With ToolBuilder and Glamour, you can do decent UIs. http://stackoverflow.com/questions/697866/dilemma-should-i-learn-seaside-or-a-python-framework/869218#869218 Comment by Stephan Eggermont on Dilemma: Should I learn Seaside or a Python framework? Stephan Eggermont 2009-10-21T12:37:25Z 2009-10-21T12:37:25Z It is indeed currently the best available tutorial. http://stackoverflow.com/questions/1524857/formatting-phone-number/1525561#1525561 Comment by Stephan Eggermont on Formatting phone number Stephan Eggermont 2009-10-07T13:44:44Z 2009-10-07T13:44:44Z Dutch users do not like that! A quick business card scan showed only 6 out of 85 people do that. http://stackoverflow.com/questions/510664/what-rad-tools-are-out-there/511279#511279 Comment by Stephan Eggermont on What RAD tools are out there? Stephan Eggermont 2009-10-06T13:06:27Z 2009-10-06T13:06:27Z -1 For RAD you want an object image like smalltalk. http://stackoverflow.com/questions/800/object-oriented-vs-relational-databases/171713#171713 Comment by Stephan Eggermont on Object Oriented vs Relational Databases Stephan Eggermont 2009-09-27T22:30:12Z 2009-09-27T22:30:12Z You might want to ask yourself why there are so many errors in databases. http://stackoverflow.com/questions/800/object-oriented-vs-relational-databases/66700#66700 Comment by Stephan Eggermont on Object Oriented vs Relational Databases Stephan Eggermont 2009-09-27T22:29:02Z 2009-09-27T22:29:02Z And the relational database is a massive failure at good design (when compared to an OODB). Terrible data quality, but you can access it... http://stackoverflow.com/questions/800/object-oriented-vs-relational-databases/2645#2645 Comment by Stephan Eggermont on Object Oriented vs Relational Databases Stephan Eggermont 2009-09-27T22:20:32Z 2009-09-27T22:20:32Z -1 For complex models OODBs are orders of magnitude faster than RDBMs,. http://stackoverflow.com/questions/1421174/what-are-the-new-language-choices-for-experienced-programmers/1421453#1421453 Comment by Stephan Eggermont on What are the new language choices for Experienced programmers? Stephan Eggermont 2009-09-26T07:25:50Z 2009-09-26T07:25:50Z And add Seaside to the smalltalk, that is somewhat new. Otherwise you don't know how to program for the web. http://stackoverflow.com/questions/61520/what-are-the-pros-and-cons-of-object-databases/61528#61528 Comment by Stephan Eggermont on What are the pros and cons of object databases? Stephan Eggermont 2009-09-25T20:57:02Z 2009-09-25T20:57:02Z This is silly. If you don't have this tight coupling, you get to the standard RDBMS error rate of 30% faulty records.