Oct 30, 2009

jsMath is amazing!

jsMath can really do something on the Device.

Plus side: getting rid of xxxMB of hashed Tex-converted png files, no need to update.
Minus side: Slow, still need 7xMB of font images (which may be reduced in future).








Oct 28, 2009

Articles.bin that is lager than 4GB

Seems that some modifications should be done in TitleIndex.cpp/.h or nothing can go on...

Edit:

Please use this snapshot (or this deb package), just unzip and replace old wikisrvd (the one in the folder daemon) with this new one.

Edit2:

Alright. I must confess that I missed the ownership of the .plist file in the deb package, leading to the launchdaemon think that the file is dubious and refuse to load it. So, please download and reinstall the deb package from Google Code again ONLY if you had tried before 14:40 GMT 2009-Oct-28. I know that about 3 persons might be affected.

Jul 9, 2009

quick notes

########### CC ####################### CC=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/arm-apple-darwin9-gcc-4.0.1  INCPATH1=/Developer/Platforms/iPhoneOS.platform/Developer/usr/include  INCPATH2=/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS2.2.1.sdk/usr/include  INCPATH3=/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS2.2.1.sdk/System/Library/Frameworks  INCPATH4=~/myframeworks  INCPATH5=/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS2.2.1.sdk/usr/include  INCPATH6=/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS2.2.1.sdk/usr/lib/gcc/arm-apple-darwin9/4.0.1/include/ CFLAGS= -I$(INCPATH1) \         -I$(INCPATH2) \         -I$(INCPATH3) \         -I$(INCPATH4) \  -I$(INCPATH5) \  -I$(INCPATH6) \         -I. ############# LD ####################### LD=$(CC) LDPATH1=/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/gcc/arm-apple-darwin9/4.0.1  LDPATH2=/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS2.2.1.sdk/usr/lib  LDPATH3= FPATH=/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS2.2.1.sdk/System/Library/Frameworks  LDFLAGS=-lobjc \  -framework CoreFoundation \  -framework Foundation \  -framework UIKit \  -framework CoreGraphics \  -L$(LDPATH1) \  -L$(LDPATH2) \  -L$(LDPATH3) \  -F$(FPATH) \  -bind_at_load \  -lgcc_s.1    FILES=Classes/*.o \  main.o  %.o: %.m   $(CC) -c $(CFLAGS) -x objective-c $< -o $@  APPNAME=myName ALL: $(APPNAME)
$(APPNAME): $(FILES)  $(LD) $(LDFLAGS) -v -o $@ $^