Questions Recently Asked by awt /users/recently_asked/96 Questions Recently Asked by awt Fri, 21 Nov 2008 15:16:20 -0800 $0.00 - What is the best book about writing interpreters? http://www.guruza.com/question/559/reward-0.00 What is the best book about writing interpreters? Wed, 23 Jan 2008 23:53:08 -0800 $5.00 - What is a good social book recommendation site (excluding LibraryThing.com)? ... http://www.guruza.com/question/533/reward-5.00 What is a good social book recommendation site (excluding LibraryThing.com)? I'm looking for something like reddit, but for books. Mon, 21 May 2007 06:31:31 -0700 $20.00 - I need help getting this source to compile on OSX: http://sourceforge.net/pr... http://www.guruza.com/question/419/reward-20.00 I need help getting this source to compile on OSX: http://sourceforge.net/project/showfiles.php?group_id=159649 I can't seem to get the linking options correct. Below is Makefile slightly modified from the original that compiles on Gentoo, without the portaudio library. How can I get this to compile on OS X? This link may help you: http://marc2.theaimsgroup.com/?l=osx-unix-porting&m=106623148420138&w=2 speak_SOURCES = speak.cpp compiledict.cpp dictionary.cpp intonation.cpp \ readclause.cpp setlengths.cpp \ synthdata.cpp synthesize.cpp translate.cpp tr_english.cpp \ tr_languages.cpp voices.cpp wavegen.cpp libespeak_SOURCES = speak_lib.cpp compiledict.cpp dictionary.cpp intonation.cpp \ readclause.cpp setlengths.cpp \ synthdata.cpp synthesize.cpp translate.cpp tr_english.cpp \ tr_languages.cpp voices.cpp wavegen.cpp SRCS1=$(speak_SOURCES) OBJS1=$(patsubst %.cpp,%.o,$(SRCS1)) LIBS1=-lstdc++ SRCS2=$(libespeak_SOURCES) OBJS2=$(patsubst %.cpp,x_%.o,$(SRCS2)) LIBS2=-lstdc++ all: speak libespeak.so mv libespeak.so libespeak.so.1.1.14 .cpp.o: $(CXX) $(CXXFLAGS) -O2 -Wall -pedantic -I. -c -fno-exceptions $< speak: $(OBJS1) $(CXX) -o $@ $(OBJS1) $(LIBS1) x_%.o: %.cpp $(CXX) $(CXXFLAGS) -O2 -Wall -fpic -fvisibility=hidden -pedantic \ -I. -D LIBRARY -c -fno-exceptions $< -o x_$*.o libespeak.so: $(OBJS2) $(CXX) -shared -Wl,-soname,libespeak.so.1 -o $@ $(OBJS2) $(LIBS2) clean: rm -f *.o *~ distclean: clean rm -f speak rm -f libespeak.so* Mon, 25 Sep 2006 20:04:38 -0700 $10.00 - I need to write an excel macro that operates starting from the first cell of ... http://www.guruza.com/question/409/reward-10.00 I need to write an excel macro that operates starting from the first cell of a pasted block of data. How do I get the macro to dynamically start from that cell? Fri, 15 Sep 2006 16:08:15 -0700