raichu
raichu
Please also consider adding [esstix](https://www.ctan.org/pkg/esstix) [font](https://en.wikipedia.org/wiki/STIX_Fonts_project#ESSTIX) ([ttf](http://www.w3.org/Amaya/Distribution/esstix.tar.gz)). Answer to the "compulsory" question "why not STIX": ESSTIX is _the_ font used by many well known old science books, including Feynman Lectures...
It seems Elsevier didn't include the text font. But it does contain Greek letters and mathematical symbols. Anyone know what the text font in [this document](https://lists.w3.org/Archives/Public/www-amaya-dev/2000Apr/att-0041/Readme.pdf)? It looks pretty close,...
Nope, calling Unref on the pixbuf returned by ScaleSimple after assinging it to the image worked!
I checked a [python implementation](http://stackoverflow.com/questions/4939734/automatic-image-scaling-on-resize-with-pygtk) and it doesn't require to call Unref. Maybe it's indeed best to set finalizer Unref for all objects?
I think it's GTK2.
I checked and GInputStream seems to be a part of glib2 and `gdk_pixbuf_new_from_stream` is a part of gdkpixpuf2. Both can be seen in [pre-gtk3 sources](http://ftp.gnome.org/pub/GNOME/sources/gdk-pixbuf/).
I realized that it's not really necessary for loading images from memory.: I got the job done using `gdkpixbuf.Loader` :) Just one caveat, the `Write` function isn't compatible with usual...
I meant the map overhead. But right, there is the slice overhead as well, although it is not important in my case.
Along these lines, it makes sense to change the definition of `CHDBuilder` to ``` go type CHDBuilder struct { keys []KeyType values []ValueType } ``` to save space. In fact,...
Also, I noticed that each call to `chdHash` creates a new fnv64 hasher (which allocates). Is this really the correct behavior? In fact, I checked the fnv source and it's...