Since 4/25/2012 1:47:35 AM, mstorkamp has written 7 articles and participated in 65 conversations. mstorkamp signature: mstorkamp
mstorkamp's articles:
Items(7) /1
multi-platform GUI front end?444 (9/25/2012 4:00:39 PM) comp.programming I've written a non-interactive command line utility that I use for
manipulating 3D model files. I wrote it in C under OSX, and it also
compiles and runs on Windows. I'm happy with it just as it is, but
ot... Mark
Safari won't connect in user accounts167 (10/22/2011 11:37:38 PM) comp.sys.mac.system My brother has a Mac Mini with Leopard. He set it up so each of his 3 kids have their own account. Each account is set up to limit the amount of time they get on the internet each day. This has worked well fo... Mark
Makefile and RCS problem468 (3/30/2011 9:14:44 PM) comp.unix.programmer When I make my project, all of the .c source files are being checked out of the RCS as they should be, but the .h file is not. I have to check that out manually before I build. Can someone point out what I'm ... Mark
Need table configuration advice346 (4/17/2008 4:00:48 PM) comp.databases.mysql I want to set up a database to track parts, what I know about the parts are: PartNumber Length Material Description Revision Price The Revision can change, with it the Length and Price, and the Price can chan... mstorkamp
Is mono audio possible839 (12/21/2007 3:04:06 PM) comp.sys.mac.misc On my windows PC I use a plugin for Winamp that changes the audio to mono so I can use headphones. On my new Macbook I haven't found any way of doing the same. Does anyone know of any players or plugins or sett... mstorkamp
Need to evaluate simple arithmetic expression645 (11/20/2007 3:49:17 PM) comp.lang.c I need to evaluate simple arithmetic expressions. I wrote a quick and dirty program that allows me to enter dimensions off of a drawing, and based on global or local tolerances calculate an upper and lower lim... mstorkamp
Another 35S first impression528 (9/12/2007 10:54:34 AM) comp.sys.hp48 My new favorite calculator? They got this one almost 100% right. But not quite. My basis for comparison: My first HP was a 34C, then a 41CX, 28S, 48GX that got smashed and replaced with a 49G+ (and a 16C). I'v... mstorkamp
error #53026 (8/30/2012 7:47:19 PM) comp.lang.c I'm hoping that someone can point out the error I'm getting here and seg
fault. I find it very hard to read code posted by these newsreaders. I'm
using OE. I hope someone can read this code.
Bill
#i... nospam116(1187)
Chart displays differently on Mac and Win 7640 (9/24/2012 10:35:56 PM) comp.sys.mac.apps I have a docx file that includes graphs, apparently brought in from
Excel. When I view the doc in Word 2011 on a Mac (OS X 10.7.5), the
numbers along the X-axis go beyond the edge of the window so they're not... RonTheGuy686(66)
Splitting a large tiff image stack340 (10/29/2012 4:46:03 PM) comp.sys.mac.apps Hi !
I have a huge 2 Gb file xxx.tiff which contains 164 images.
How can I split it into 164 images files ?
I can't even open it in Preview (too large) to print it,
neither use ImageMagick (malloc error) fr... nobody36(130)
time #33626 (11/20/2012 12:11:41 AM) comp.lang.c I am using the time and date in my code using asctime () time(), and
localtime(). I know in POSIX they are obsolete but I am concerned with
c89-99. strftime() is suppoed to be the function used now. I g... nospam116(1187)
polymorphism in C #32587 (12/16/2012 12:29:29 AM) comp.lang.c I found a code to do polymorphism in C (taken from a book):
struct Class {
size_t size;
void * (* ctor) (void * self, va_list * app);
void * (* dtor) (void * self);
void * (* clone) (con... junw2000(221)
exit() #25340 (2/14/2013 6:23:29 PM) comp.lang.c Can I use the return value provided to exit() for my own purposes?
(This is so that I can pick up the exit-value when I invoke the program from
another. BTW what's the best way of invoking a program under L... bc(2211)
LibreOffice suddenly hanging on my MacBook Pro1121 (2/27/2013 3:08:56 AM) comp.sys.mac.apps LibreOffice 3.6.4 and 3.6.5. I have been running LibreOffice for
several years with no problems. When I check for updates I am told
3.6.5 is the latest version for the Mac.
This program was working fin... bob148(545)
c pointers notation basic question4216 (3/16/2013 2:24:12 PM) comp.lang.c Hi
Can someone help me out remember basic pointer notation?
p points to a type int data
int *pi;
char *pc;
pc points to a type char data
Is there any difference with this notation?
char* pc;
... bpascal1232945(16)