Friedrich

1,217
Reputation
302 views

Registered User

Name Friedrich
Member for 1 year
Seen Nov 25 at 11:15
Website
Location Germany
Age 43
Programmer, interested in politics, techniques, fiction and science fiction, sustainability. Father of three children. Made what I like to do my job. Have put my money where my mouth was and is ;-). Try to write programs I can come back and understand later...
Nov
15
comment Can’t install Ruby on OS X
Yes. Howerver you may need the proper gem or so to install needed pacakges also
Nov
11
comment In Emacs, how do I figure out which package is loading tramp?
Well I think pajato0 has made that unimportant. However I have written or stolen the following code: (defun find-symbol-at-point () "Find the source of either the function or variable at point." (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.
Nov
11
comment In Emacs, how do I figure out which package is loading tramp?
I did not know that either, seems to be exactly what Rhith was looking for.
Nov
10
answered In Emacs, how do I figure out which package is loading tramp?
Nov
9
comment what happens to older software engineers?
I don't believe it. If that really is true than MS would be really stupid and not just thought of as beeing stupid
Nov
4
accepted GNUStep Getting Started
Nov
1
comment EXCEL VBA - To open a text file from a website
Sorry but the only thing done there is fetching an URL and print it line by line.
Nov
1
answered Generating unique tracking numbers
Oct
26
answered EXCEL VBA - To open a text file from a website
Oct
22
comment strcpy when dest buffer is smaller than src buffer
This answer in that way is not correct. Strncpy will surely not overruns a buffer if you a) have the proper space for the "String" 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 "buffer" overrun protection. This is simply how C was implemented, speed, speed, speed
Oct
21
comment Why on earth would anyone use strncpy instead of strcpy?
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....
Oct
21
comment What’s wrong with this C code?
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
Oct
21
answered strcpy when dest buffer is smaller than src buffer
Oct
21
comment How to convert a single char into an int
Is there any encoding where it does not hold '0' < '1' < '2' < '3' It would be at least a very very strange decision
Oct
10
comment Why isn’t SEL a class in Objective-C?
I assume this is meant: amazon.com/exec/obidos/… Regards Friedrich
Oct
8
answered Multithreading libraries for Objective-C
Oct
7
comment Lisp in the real world
"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)." Not true e.g for LispWorks on Windows, Mac, and Linux
Oct
7
comment Where do you use Smalltalk?
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...
Oct
5
comment Which C Compiler do you recommend for windows
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.....
Oct
5
comment Which C Compiler do you recommend for windows
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 "deprecated". 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...
Oct
5
comment Which C Compiler do you recommend for windows
"The 'no commercial use for free' thing is a bit of a bummer, though." Why?
Oct
1
comment Lisp+PHP ?
The URL should be common-lisp.net/project/cl-weblocks
Sep
24
accepted Using make on OSX
Sep
24
answered Using make on OSX
Sep
22
answered Ruby on Rails User Management Engine/Framework? (with web pages)
Sep
22
answered Read a txt file containing a matrix of numbers separated by spaces and lines into an array
Sep
18
awarded  Yearling
Sep
3
awarded  Popular Question
Aug
20
comment What does good, modern c code look like?
I agree, it's really nice code. I like it and I can understand it ;-)
Jul
24
answered Best web framework in Common-lisp?
Jul
20
awarded  Good Answer
Jul
8
answered unable to make the make file
Jul
8
answered GNUStep Getting Started
Jul
3
accepted Learning Objective-C
Jul
3
answered Learning Objective-C
Jul
2
comment What’s the advantage of using C over C++ or is there one?
Well every large code base get's nightmarishly. C is simple in comparison to nearly other programming language. Or what do you understan under an "simple" programming language?