User Friedrich - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T22:59:10Z http://stackoverflow.com/feeds/user/15068 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/481976/is-there-a-dive-into-smalltalk-book/1933114#1933114 0 Answer by Friedrich for Is There a "Dive Into Smalltalk" Book Friedrich 2009-12-19T15:01:52Z 2009-12-19T15:01:52Z <p>For me it was "On to Smalltalk, my experiences with Squeak by Example weren't that good. </p> http://stackoverflow.com/questions/1912444/unix-system-call-in-objective-c/1912600#1912600 3 Answer by Friedrich for Unix System Call in Objective-C Friedrich 2009-12-16T05:57:46Z 2009-12-16T16:24:40Z <p>If you like to do it the C way you can use <code>popen</code>. This can be used to read the output also. But the answers about using Objective-C solutions are probably the better ones.</p> http://stackoverflow.com/questions/1899674/how-to-convert-tchar-to-char/1899723#1899723 0 Answer by Friedrich for how to convert TCHAR*[] to char*[] Friedrich 2009-12-14T08:47:21Z 2009-12-14T08:47:21Z <p>tchar is a char if the encoding is 8 bit. Howerver if UNICODE is set then one needs to convert it to an wchar_t and after that one can use wcrtomb or something from the Win API for converting wide chars....</p> <p>Howerver AFAKT there are txxxx functions available which you can use to handle the tchar type.</p> <p>Regards Friedrich</p> http://stackoverflow.com/questions/700217/kvm-xen-comparison 4 KVM, Xen comparison Friedrich 2009-03-31T06:13:36Z 2009-11-13T05:40:34Z <p>I have the following comparison questions of KVM, and Xen:</p> <ol> <li>Security (how different are KVM and Xen here?)</li> <li>Speed(I'm a long time user of VMWare Workstation but there I'd think the loss is around 50 % to the native speed, this is IMHO too much)</li> <li>Stability (do Xen and KVM differ here much?)</li> <li>Maintainability (how difficult or easy is ot to set up machines, and/or migrate them)</li> </ol> <p>I like to setup a "virtual" machine cluster in which I probably have 3-4 virtual machines. I'd like to route all the traffic through one "router" and like to mimize the task the of the Virtual Machine Hypervisor. I'd like to run different Linux machines and maybe a few Windows Operating Systems also (Windows XP, Ws-2003-64, if I'm forced to Vista).</p> <p>Are there any good web pages I have overseen? </p> <p>Ok, small update. I have Xen up an running on a Debian box, but found one bug I reported. I've installed the kvm stuff also but not yet given a serious try. So am still "unshure" about "maturity"...</p> <p>It's simply amazing how powerful today machienes are. Run one or two extra virtual machine does not make a difference, hard to believe....</p> http://stackoverflow.com/questions/1706157/in-emacs-how-do-i-figure-out-which-package-is-loading-tramp/1706181#1706181 1 Answer by Friedrich for In Emacs, how do I figure out which package is loading tramp? Friedrich 2009-11-10T07:30:55Z 2009-11-10T07:30:55Z <p>Instrument find-file for debugging and/or instrument your init file for debugging. Then you can step through the loading and see where the tramp stuff is loaded.</p> http://stackoverflow.com/questions/1656556/generating-unique-tracking-numbers/1656562#1656562 0 Answer by Friedrich for Generating unique tracking numbers Friedrich 2009-11-01T06:52:12Z 2009-11-01T06:52:12Z <p>Isn't the id generated for every table enough? It is unique by "default". But most of the time it's simply not shown,</p> <p>Of course one could wrap it in a timestamp or the like.</p> http://stackoverflow.com/questions/1623568/excel-vba-to-open-a-text-file-from-a-website/1623599#1623599 0 Answer by Friedrich for EXCEL VBA - To open a text file from a website Friedrich 2009-10-26T08:10:03Z 2009-10-26T08:10:03Z <p>Yes, you can use e.g the http client library to fetch pages from the web.</p> <p>There are also tools available or such kind of tasks <a href="http://www.iopus.com/iMacros/excel.htm?ref=rg8excel1HB&amp;gclid=CLWbrNef2p0CFUtp4wodBnx8sQ" rel="nofollow">http://www.iopus.com/iMacros/excel.htm?ref=rg8excel1HB&amp;gclid=CLWbrNef2p0CFUtp4wodBnx8sQ</a>.</p> <p>If you want to do it yourself you have to reference the "Microsoft Internet Transfer" Active X control. </p> <p>E.g you might fetch the page with buf = HTTPControl.OpenURL(page_you_like_to_fetch, icByteArray) you then can just open it with the usual "suspects" like Open or you can register the file as a ODBC source and fetch it with SQL like statements. </p> <p>Of course you can also do it by hand. Opening the file, accesing one entry after the other and putting it into the proper Execl cells.</p> http://stackoverflow.com/questions/1601791/strcpy-when-dest-buffer-is-smaller-than-src-buffer/1601816#1601816 1 Answer by Friedrich for strcpy when dest buffer is smaller than src buffer Friedrich 2009-10-21T15:58:22Z 2009-10-21T15:58:22Z <p>with high likliness the string are exact neighbours. So in your case you may have this picture</p> <p>dst | | | | |src | | | | | | </p> <p>so you start writing and it happens that the fields of src are overwritten.</p> <p>Howerver you can surely not rely on it. Everything could happen what you have is undefined behaviour. So something else can happen on another computer another time and/or other options.</p> <p>Regards Friedrich</p> http://stackoverflow.com/questions/1535838/multithreading-libraries-for-objective-c/1536271#1536271 0 Answer by Friedrich for Multithreading libraries for Objective-C Friedrich 2009-10-08T07:57:11Z 2009-10-08T07:57:11Z <p>How about something in the C library area? e.g libapr: <a href="http://apr.apache.org/docs/apr/1.3/group%5F%5Fapr%5F%5Fos%5F%5Fthread.html" rel="nofollow">http://apr.apache.org/docs/apr/1.3/group%5F%5Fapr%5F%5Fos%5F%5Fthread.html</a></p> <p>or glib? <a href="http://library.gnome.org/devel/glib/stable/glib-Threads.html" rel="nofollow">http://library.gnome.org/devel/glib/stable/glib-Threads.html</a></p> <p>Regards</p> http://stackoverflow.com/questions/1469994/using-make-on-osx/1470005#1470005 7 Answer by Friedrich for Using make on OSX Friedrich 2009-09-24T06:10:27Z 2009-09-24T06:10:27Z <p>Have you installed the Apple developer tools? What happens if you type gcc -v ?</p> <p>It look as if you do not have downloaded the development stuff. You can get it for free (after registration) from <a href="http://developer.apple.com/" rel="nofollow">http://developer.apple.com/</a></p> <p>Regards Friedrich</p> http://stackoverflow.com/questions/1457473/ruby-on-rails-user-management-engine-framework-with-web-pages/1458311#1458311 0 Answer by Friedrich for Ruby on Rails User Management Engine/Framework? (with web pages) Friedrich 2009-09-22T05:48:03Z 2009-09-22T05:48:03Z <p>I do not think that something with all that is available. A combination from acts_as and acts_as_authenticated and LoginEngine and maybe <a href="http://code.google.com/p/rails-authorization-plugin/" rel="nofollow">http://code.google.com/p/rails-authorization-plugin/</a></p> <p>Could probably be made into something you like to have.</p> <p>Regards</p> http://stackoverflow.com/questions/1458213/read-a-txt-file-containing-a-matrix-of-numbers-separated-by-spaces-and-lines-into/1458270#1458270 0 Answer by Friedrich for Read a txt file containing a matrix of numbers separated by spaces and lines into an array Friedrich 2009-09-22T05:35:44Z 2009-09-22T05:35:44Z <p>You can either do it with Objectice-C using classes loke NSString and NSArray reading a complete file is just NSString *filesContent = [[NSString alloc] initWithContentsOfFile:@"file.txt"];</p> <p>then you can split that array e.g at whitespace with something like NSArray rows = [filesContent componentsSeparatedByString:@"\r\n"]; then you can split the rows at whitespace.</p> <p>And or you do it the old faschioned C way. Opening the file with fopen reading the file line by line splitting the line e.g. with sscanf And filling an Array int arr[9][[9];</p> <p>Pseudo Code (not tested, just to give you an idea)</p> <pre><code>char buf [2048]; char *pc; int arr[9][[9]; int i_rval; int row[9]; File *fin = fopen("file_with_9_x_9_matrix.txt"); /* error handling */ int i = 0; while ((pc = fgets(buf, sizeof(buf), fin)) != NULL) { row = arr[i]; i_rval = sscanf("%d %d %d %d %d....", &amp;row[0], &amp;row[1]); /* error handling */ i++; } </code></pre> <p>Or you can mix something out of Objectice-C and C. </p> http://stackoverflow.com/questions/540953/best-web-framework-in-common-lisp/1176043#1176043 0 Answer by Friedrich for Best web framework in Common-lisp? Friedrich 2009-07-24T06:31:10Z 2009-07-24T06:31:10Z <p>With most success I've used <a href="http://opensource.franz.com/aserve/webactions.html" rel="nofollow">webactions</a> </p> <p>from Franz. I have had a terrible hard time with UCW, but tried to write some "tutorial" for how to use it. I can not tell if anything has improved with UCW since I wrote that <a href="http://www.cliki.net/ucw%20Tutorial" rel="nofollow">tutorial</a></p> <p>As you see they say it's outdated and that's true. Why is it outdated? Because nobody has cared to improve it or actualize it, and so my conclusion is, no-one seems to like it very mucch. But YMMV of course...</p> http://stackoverflow.com/questions/905409/unable-to-make-the-make-file/1096332#1096332 1 Answer by Friedrich for unable to make the make file Friedrich 2009-07-08T06:03:27Z 2009-07-08T06:03:27Z <p>If you use GNUstep on windows you probably better install cygwin also. Than you start the bash shell, source the provided file to get all the GNUSTEP pathes and than you will have more luck. Currently it seems you are starting from the cmd.exe and well you do not have any Shell installed so the stuff always will broke. You really have to follow the installation guidelines and must not forget this step. (this needs a unix shell)</p> <p><a href="http://www.gnustep.org/resources/documentation/User/GNUstep/gnustep-howto_4.html#SEC8" rel="nofollow">http://www.gnustep.org/resources/documentation/User/GNUstep/gnustep-howto_4.html#SEC8</a></p> <p>So really you must follow the outlines here <a href="http://www.gnustep.org/resources/documentation/User/GNUstep/gnustep-howto_toc.html" rel="nofollow">http://www.gnustep.org/resources/documentation/User/GNUstep/gnustep-howto_toc.html</a></p> <p>Regards Friedrich</p> http://stackoverflow.com/questions/1060958/gnustep-getting-started/1096323#1096323 2 Answer by Friedrich for GNUStep Getting Started Friedrich 2009-07-08T05:59:50Z 2009-07-08T05:59:50Z <p>Well my experiences with that are devastating. ProjectCenter the IDE distributed for GNUstep does not work here at all the debugger intergration is well not existant. But that's what you get with GNUstep. There is Gorm as interface builder and ProjectCenter. Not more. That's very discouraging. The best you can do with Objective-C is currently having a Mac in some form and use XCode. That's the best you can get currently, and I expect that won't change in any forseeable future.</p> <p>Now you should step back and just use the "plain" old Makefile route. There is a somewhat very rough tutorial about GNUStep makefile starting somewhere below <a href="http://wiki.gnustep.org/index.php/User_Guides" rel="nofollow">http://wiki.gnustep.org/index.php/User_Guides</a></p> <p>Regards Friedrich</p> http://stackoverflow.com/questions/1078288/learning-objective-c/1078444#1078444 2 Answer by Friedrich for Learning Objective-C Friedrich 2009-07-03T08:54:51Z 2009-07-03T08:54:51Z <p>Here's some bad news. There is no decent IDE for Objective-C available on Windows.And GNUStep is well so much anchored in the linux world that you probably won't be able using it without cygwin installed. However with CYGWIN and with the proper Environment variables set you can follow the GNUStep Makefile tutorial on getting your Objective-C running.</p> <p>It's really a shame that such a wonderful languages like Objective-C lacks any useful IDE on anything else but Macs....</p> <p>Regards Friedrich</p> http://stackoverflow.com/questions/81973/issues-with-using-ruby-on-rails-in-64-bit-multiple-platforms/910370#910370 0 Answer by Friedrich for Issues with using ruby (on rails) in 64-bit multiple platforms Friedrich 2009-05-26T12:09:42Z 2009-05-26T12:09:42Z <p>I'm sorry I've not experiences with Ruby on anything else but Linux. As epochwolf has written I have also not troubles with Debian, Postgres, Rails, (neither with Apache and passenger nor with Mongrel cluster. So I'm using probably the most widely used platform for Ruby, so I'd expect that there are less problems. I've done my share of AIX administration but to that time ruby was not even known. So I can't tell if Ruby is that stabel on other Unices. However it seems one can get around this in two ways 1) just try it on others systems but Linux (or some BSD (be it Free, Open, or Net) 2) if you encounter problems use a server under Linux and/or some BSD whic is known to work.</p> <p>Regards Friedrich</p> http://stackoverflow.com/questions/880898/why-do-dynamic-language-newbies-seem-to-default-to-ruby-instead-of-python/881602#881602 2 Answer by Friedrich for Why do dynamic language newbies seem to default to Ruby instead of Python? Friedrich 2009-05-19T08:36:14Z 2009-05-19T08:36:14Z <p>For me it's just a matter of taste. I know this will downvoted as help but this "magic" incarnation <strong>init</strong> or the like look plain ugly to me. Of course I use indentation for my code but I dislike beeing forced using it. What bothers me terribly is that I have to write def whatever(self) </p> <p>Hell what else should it be at the first positon in an object oriented languages? This assignments self. whatever is another distate for me. But if I'd just the choice between Perl and Python I surely knew what I'd choose. But now I have Ruby and that's what I simply like. I'm even considereing wether I'd like Smalltalk more than Ruby and believe it or not I found something even more appealing as Ruby to me. That's io <a href="http://www.iolanguage.com/" rel="nofollow">http://www.iolanguage.com/</a></p> <p>I've looked into it and just find it fantastic. But I'm still using Ruby because of Rails and JRuby and whatever. What I especially like about Io even more than in Ruby is the nice interfacing to C. In my stupid opinion. the order is probably Ruby,Python, Io, Tcl/Tk in this regard I'M undecided in both... But definitly the C code is extremly clean in Io.</p> <p>Yes I know it's a matter of taste and anybody can disagree with me about it, but that's what's so nice of having a choice. You can pick what you prefer....</p> http://stackoverflow.com/questions/867650/how-is-the-market-opportunity-for-objective-c/871741#871741 1 Answer by Friedrich for How is the market opportunity for objective-C Friedrich 2009-05-16T05:06:04Z 2009-05-16T05:06:04Z <p>Opportunities seem to be growing, iPhone and Apple seem to attract people. Howerver you better stick to Mac OS X or iPhone development. The state of tools outside of Apples tools is hardly arguable sad. Sure there exists GNUstep, but try it out yourself and you'll see what I mean. Objective-C is near non existant on the Windows platfrom. There are but two larger applications outside the Mac world that's Etoile <a href="http://etoileos.com/etoile/" rel="nofollow">http://etoileos.com/etoile/</a></p> <p>and opengroupware <a href="http://www.opengroupware.org/en/index.html" rel="nofollow">http://www.opengroupware.org/en/index.html</a></p> <p>But getting both up and running is a hard job. </p> <p>The debugger support for Objective C outside the Macs tools is extremly bad also and you hardly can find an IDE worth it's name. So the best way to go is surely get some Mac and start writing software there. IMHO</p> <p>Regards Friedrich</p> http://stackoverflow.com/questions/115528/how-to-make-a-program-bug-free-or-with-the-less-possible-bugs/847656#847656 0 Answer by Friedrich for How to make a program bug-free (or, with the less possible bugs) Friedrich 2009-05-11T11:13:57Z 2009-05-11T11:13:57Z <p>It is stupid from the ground up and not limited to programming. Just a few counterexamples. Most of us have their drivers licence for ages and so they should never be involved into just on accident any more. How real is that? </p> <p>Another example, it should never happen that screws should break under "normal" conditions, but they still do. The may be overloaded, or they may start to rust or someone may think it's good idea to use a worse quality. And guess what you don't see that, you can must say with some high probability that a charge of screws is ok, but you can not test them exhaustivly. There can be weak places in it, hell it could be that air is included which you hardly can's see while not x-raying them. And so it goes on over and over again, if that attitude would be just a bit sound, we'd live in a totally different world....</p> http://stackoverflow.com/questions/847396/compile-a-dll-in-c-c-then-call-it-from-another-program/847427#847427 3 Answer by Friedrich for Compile a DLL in C/C++, then call it from another program Friedrich 2009-05-11T09:51:07Z 2009-05-11T09:51:07Z <p>There is but one difference. You have to take care or name mangling win C++. But on windows you have to take care about 1) decrating the functions to be exported from the DLL 2) write a so called .def file which lists all the exported symbols. </p> <p>In Windows while compiling a DLL have have to use </p> <p>__declspec(dllexport) </p> <p>but while using it you have to write __declspec(dllimport)</p> <p>So the usual way of doing that is something like</p> <pre><code>#ifdef BUILD_DLL #define EXPORT __declspec(dllexport) #else #define EXPORT __declspec(dllimport) #endif </code></pre> <p>The naming is a bit confusing, because it is often named EXPORT.. But that's what you'll find in most of the headers somwhere. So in your case you'd write (with the above #define)</p> <p>int DLL_EXPORT add.... int DLL_EXPORT mult...</p> <p>Remember that you have to add the Preprocessor directive BUILD_DLL during building the shared library.</p> <p>Regards Friedrich</p> http://stackoverflow.com/questions/728645/what-is-faster-java-or-c-or-good-old-c/728769#728769 0 Answer by Friedrich for What is faster- Java or C# (Or good old C)? Friedrich 2009-04-08T06:34:42Z 2009-04-08T06:34:42Z <p>If much of your code is in C why not keep it? In principal and by design it's obvious that C is faster. They may close the gap over time but they always have more level os indirection and "safety". C is fast because it's "unsafe". Just think about bound checking. Interfacing to C is supported in every langauge. And so I can not see why one would not like to just wrap the C code up if it's still working and use it in whatever language you like</p> http://stackoverflow.com/questions/728544/excel-to-access-using-java/728550#728550 0 Answer by Friedrich for excel to access using java Friedrich 2009-04-08T04:42:12Z 2009-04-08T04:42:12Z <p>Fetch the book Visual Studio Tools for Office Using C# with Excel, Word etc. Start with accessing Excel and see what'll happen then</p> http://stackoverflow.com/questions/689430/project-management-tool-for-just-2-people/689592#689592 0 Answer by Friedrich for Project management tool for just 2 people? Friedrich 2009-03-27T12:31:27Z 2009-03-27T12:31:27Z <p>Maybe tracks? <a href="http://www.getontracks.org/" rel="nofollow">http://www.getontracks.org/</a></p> <p>Regards Friedrich</p> http://stackoverflow.com/questions/685572/gui-editor-for-ruby-in-windows/685630#685630 0 Answer by Friedrich for GUI editor for Ruby in Windows Friedrich 2009-03-26T12:48:46Z 2009-03-26T12:48:46Z <p><a href="http://www.ruby-ide.com/ruby/ruby%5Fide%5Fand%5Fruby%5Feditor.php" rel="nofollow">ArachnoRuby</a> is nicedone.</p> http://stackoverflow.com/questions/678082/what-is-the-difference-between-seaside-programmming-and-other-web-programming 3 What is the difference between Seaside programmming and other web programming Friedrich 2009-03-24T16:02:09Z 2009-03-25T11:02:51Z <p>To me it seems the main point of Seaside is that it is more like normal "desktop" programming.</p> <p>The control flow looks much more like "traditional" programming instead of "web" programming. Is that a correct impression?</p> <p>I know it's about Web programming but it's does not looks like it from the programmers side. It looks much more than driving "desktop" applications. Does this clarify the question a bit?</p> http://stackoverflow.com/questions/179238/what-scares-you-the-most-about-the-integrated-ide-of-most-modern-smalltalks/678101#678101 0 Answer by Friedrich for What scares you the most about the integrated IDE of most modern Smalltalks? Friedrich 2009-03-24T16:06:56Z 2009-03-24T16:06:56Z <p>I know it's late but the biggest annoyance for me is that there is not really good editor in none of the smalltalks. It's a thing I can not understand. Working with text is so essential and that less "supported"....</p> <p>It's always this just staring at one method and then you need to have some method finder or another browser around just to check another method. This is what I really dislike....</p> http://stackoverflow.com/questions/266290/smalltalk-vs-ruby-popularity/269311#269311 3 Answer by Friedrich for Smalltalk vs Ruby popularity Friedrich 2008-11-06T16:25:29Z 2009-03-17T11:59:37Z <p>Ruby fits very nicely in the Unix environment and the syntax is similiar to C-like languages (within bounds of course). Rails is nice but Seaside (<a href="http://www.seaside.st/" rel="nofollow">http://www.seaside.st/</a>) is probably quite good also. It seems that people are considering using Smalltalk more and more - if you check the blogs from Cincom (for example) they will tell that they had the most successful year. Of course one has to take this with a grain of salt, but....</p> <p>One has to concede that Smalltalk IDEs are mostly way better than Ruby, however the docs are sparse and hard to get. If you look at Cincom Smalltalk you get something really good, but Squeak suffers from the unusual GUI Toolkit - and unfortunatley there no good books available for it. It's a pity, they wrote it so children can use it. This may be but how about grown-ups? ;-(</p> <p>The only better book about Squeak is the Seaside book from the Hans Plattner Institute and this online tutorial: <a href="http://squeak.preeminent.org/tut2007/html/index.html" rel="nofollow">http://squeak.preeminent.org/tut2007/html/index.html</a></p> <p>In the end I'll argue that Ruby has opened the way so that Smalltalk gets more of the attention it really deserves.</p> <p>Regards</p> http://stackoverflow.com/questions/634017/how-would-i-sort-through-an-array-of-structs/634054#634054 0 Answer by Friedrich for How would I sort through an array of structs? Friedrich 2009-03-11T10:54:31Z 2009-03-11T10:54:31Z <p>Doesn't <a href="http://stackoverflow.com/questions/620534/sort-array-of-items-using-orderby">http://stackoverflow.com/questions/620534/sort-array-of-items-using-orderby</a> answer your question ?</p> <p>Regards Friedrich</p> http://stackoverflow.com/questions/617192/advice-on-c-programming-with-msvc-9/617977#617977 0 Answer by Friedrich for Advice on C Programming with MSVC++ 9 Friedrich 2009-03-06T07:37:49Z 2009-03-06T07:37:49Z <p>I can not see what's so terrible difficult programming windows with the windows api in C. And I surely can not see any good reason to choose C++ over C for that, you won't tell me that MFC is "simpler" than the win api. </p> <p>Pelles C has a good Resource Editor, and can surely be used quite well. We ourselves use lcc-win32 tools for Win Development and all you can see when running wedit was used with out own tools. So we are quite confident that they work. It needs probalby some time to "sink" in but that's as everywhere. And the complexity is much lower than anything near the modern "tools". Just one question what's so hard about it that makes C++ so much better? There's till Charles Petzhold Programming Windows around which you can easily use to learn C programming windows.</p> <p>I just can tell we have started writing lcc-win32 more than 15 years ago. And it still runs, and we do not have to "rewrite" any of it, because another Windows Version is out. The whole download is around 5 or so MB and it contains a compiler,linker, assembler, resource editor, integrated development environment, and libraries in the hundreds. Just to download another compiler is elswhere a > 100 MB "Event".</p> <p>Regards</p> http://stackoverflow.com/questions/1736595/cant-install-ruby-on-os-x/1736605#1736605 Comment by Friedrich on Can't install Ruby on OS X Friedrich 2009-11-15T08:01:17Z 2009-11-15T08:01:17Z Yes. Howerver you may need the proper gem or so to install needed pacakges also http://stackoverflow.com/questions/1706157/in-emacs-how-do-i-figure-out-which-package-is-loading-tramp/1706181#1706181 Comment by Friedrich on In Emacs, how do I figure out which package is loading tramp? Friedrich 2009-11-11T05:09:09Z 2009-11-11T05:09:09Z Well I think pajato0 has made that unimportant. However I have written or stolen the following code: (defun find-symbol-at-point () &quot;Find the source of either the function or variable at point.&quot; (interactive) (or (find-function-at-point) (find-variable-at-point))) I bound this to F5 and now I just go to a function type F5 and get where it was defined I then just instrument this function for debugging. http://stackoverflow.com/questions/1706157/in-emacs-how-do-i-figure-out-which-package-is-loading-tramp/1707652#1707652 Comment by Friedrich on In Emacs, how do I figure out which package is loading tramp? Friedrich 2009-11-11T05:06:53Z 2009-11-11T05:06:53Z I did not know that either, seems to be exactly what Rhith was looking for. http://stackoverflow.com/questions/1699766/what-happens-to-older-software-engineers/1700676#1700676 Comment by Friedrich on what happens to older software engineers? Friedrich 2009-11-09T12:28:58Z 2009-11-09T12:28:58Z I don't believe it. If that really is true than MS would be really stupid and not just thought of as beeing stupid http://stackoverflow.com/questions/1699766/what-happens-to-older-software-engineers/1699991#1699991 Comment by Friedrich on what happens to older software engineers? Friedrich 2009-11-09T12:26:42Z 2009-11-09T12:26:42Z Then you do not know good programmers. And spitting out features is surely not a privilege of the youth. Probably more spitting out bugs... But that's the other exterme http://stackoverflow.com/questions/1623568/excel-vba-to-open-a-text-file-from-a-website/1629680#1629680 Comment by Friedrich on EXCEL VBA - To open a text file from a website Friedrich 2009-11-01T07:51:29Z 2009-11-01T07:51:29Z Sorry but the only thing done there is fetching an URL and print it line by line. http://stackoverflow.com/questions/1601791/strcpy-when-dest-buffer-is-smaller-than-src-buffer/1602356#1602356 Comment by Friedrich on strcpy when dest buffer is smaller than src buffer Friedrich 2009-10-22T03:40:59Z 2009-10-22T03:40:59Z This answer in that way is not correct. Strncpy will surely not overruns a buffer if you a) have the proper space for the &quot;String&quot; b) you get it right with the length. For that all you probably best use the following code (pseudo-C, partly taken from Code Complete II) char buf[MAX_LEN+1]; strncpy(buf, src, MAX_LEN); In that case strncpy is safer then strcpy. But you are right there is not one function in Standard C which &quot;buffer&quot; overrun protection. This is simply how C was implemented, speed, speed, speed http://stackoverflow.com/questions/1258550/why-on-earth-would-anyone-use-strncpy-instead-of-strcpy/1258708#1258708 Comment by Friedrich on Why on earth would anyone use strncpy instead of strcpy? Friedrich 2009-10-21T16:04:48Z 2009-10-21T16:04:48Z I think this is a good description for strncpy, so I have voted it up. strncpy has it's own set of troubles. I guess that's the reason that e.g glib has it's own extensions. And yes it's unfortunate that you as programmmer has to be aware of the Size of all the arrays. The decison having 0 terminated char array as string, has cost us all dearly.... http://stackoverflow.com/questions/1274626/whats-wrong-with-this-c-code/1274632#1274632 Comment by Friedrich on What's wrong with this C code? Friedrich 2009-10-21T16:00:18Z 2009-10-21T16:00:18Z No that does not matter. It's as Michael has written. The stuf was places in read-only sections. You can change that in gcc AFAIKT, but I think changing that is a really poor idea http://stackoverflow.com/questions/439573/how-to-convert-a-single-char-into-an-int/439589#439589 Comment by Friedrich on How to convert a single char into an int Friedrich 2009-10-21T15:36:19Z 2009-10-21T15:36:19Z Is there any encoding where it does not hold '0' &lt; '1' &lt; '2' &lt; '3' It would be at least a very very strange decision http://stackoverflow.com/questions/1546968/why-isnt-sel-a-class-in-objective-c/1547044#1547044 Comment by Friedrich on Why isn't SEL a class in Objective-C? Friedrich 2009-10-10T05:36:22Z 2009-10-10T05:36:22Z I assume this is meant: <a href="http://www.amazon.com/exec/obidos/ISBN%3d0201548348/virtualschoolA/" rel="nofollow">amazon.com/exec/obidos/&hellip;</a> Regards Friedrich http://stackoverflow.com/questions/172798/lisp-in-the-real-world/172813#172813 Comment by Friedrich on Lisp in the real world Friedrich 2009-10-07T05:44:52Z 2009-10-07T05:44:52Z &quot;It's a wonderful language, but it's crippled because (in my opinion as a software business owner and programmer) there are very few commercial Lisp packages, and the few that are out there demand a run-time fee (because a proper Lisp package can be used by end-users to write Lisp programs too).&quot; Not true e.g for LispWorks on Windows, Mac, and Linux http://stackoverflow.com/questions/515061/where-do-you-use-smalltalk/516046#516046 Comment by Friedrich on Where do you use Smalltalk? Friedrich 2009-10-07T05:28:20Z 2009-10-07T05:28:20Z I'd always prefer to code in Smalltalk than many other languages. And Smalltalkers usually love their language. I do not buy this argument about shortage of Smalltalkers... http://stackoverflow.com/questions/575840/which-c-compiler-do-you-recommend-for-windows/575845#575845 Comment by Friedrich on Which C Compiler do you recommend for windows Friedrich 2009-10-05T11:42:38Z 2009-10-05T11:42:38Z I installed the newest verson just to see. It is based on gcc 3.4.5 that's quite old if you see that gcc on Unices is now around 4.4 or the like..... http://stackoverflow.com/questions/575840/which-c-compiler-do-you-recommend-for-windows/575851#575851 Comment by Friedrich on Which C Compiler do you recommend for windows Friedrich 2009-10-05T11:38:18Z 2009-10-05T11:38:18Z What C99 features are not yet supported with GCC. The question for MSVC is simply, the only C99 stuff are the // comments. However MS-Debugger is quite useful and amang the better tools. What I found very disturbing is that all standard functions C89 like strcpy, memcpy and the like are marked &quot;deprecated&quot;. This just shows a very massive ignorance IMHO... The feature I mostly miss in MSVC is that you have to open an scope with {} to declare variables in a function. You otherwise have to place them at the top...