
Look at this amazing teaser for the independent movie: Lullaby For A Lunatic from Romantic Child Studios. It’s highly concentrated impressive at a very high level of technical and dramatical perfection.

Look at this amazing teaser for the independent movie: Lullaby For A Lunatic from Romantic Child Studios. It’s highly concentrated impressive at a very high level of technical and dramatical perfection.
Ok, it's quite a while since FontForge is around. But it's really a great Open Source tool for nearly every platform. It just helped me to convert some old Windows Type-1 Fonts to TrueType for use on Mac OS X. I works perfectly and has many options. Yes, it's user interface is very X11-ish and not very sexy - but nevermind it's clear and understandable and at least it's a graphical user interface.
The community font project has relaunched - and that's a good oppurtunity to mention it here. I think of it as a great idea to carry the Open Source spirit to font development. Take a look at the Open Font Library Website
MoinMoin is one of my preffered wikis. It even offers a synchronisation feature which allows you to keep your local wiki (the pages you configure) and a remote wiki in sync. The downside is the partly chaotic documentation. Also, this is true for the sync feature. Hope the following how-to helps other lost souls.
interwikiname = u'MikesMoinMoinWiki'
actions_excluded = multiconfig.DefaultConfig.actions_excluded[:]
actions_excluded.remove('xmlrpc')
If your running a MoinMoin Version less then 1.9 you most probably have to remove the part “multiconfig.” (with the colon) from the first line since only DefaultConfig is imported instead of multiconfig.
Have fun. More information can be searched in the online documentation for synchronisation or your local wiki’s HelpOnSynchronisation page.
Feel free to add a comment or ask questions if something could be formulated in a more precise way.
Tolle Software zum virtuellen Sprayen – jetzt auch ohne Wii möglich und liefert OSC Steuerdaten zur Steuerung von Sound, Licht etc. : Wii Spray.
Unmatchedstyle.com – Vorstellung von Designs, gut als Inspirtation- und Informationssquelle.
Es gibt diesen Klang, den jede Situation, jeder Moment, jeder Ort in sich hat. Dieser Klang ist die Ahnung einer Melodie, wie ein fernes Lied, dass leise klingt. Als Kind, da fühlt man dieses ferne Lied jedes Ortes. Doch wo sind diese Klänge heute? Farblose Gedanken ordnungswahnsinniger Kontrolle? Das sind nur Teile, des Erwachsenen. Schöne Orte, um sich dort hinzuflüchten. Man taucht nicht ein, man schaut nur zu. Sicher, trocken, bequem.
As stated in the official documentation pages of MoinMoin DocBook export is a out-of-the-box feature. So it seems no problem: just install MoinMoin, write your content, use the “Render as DocBook” action and you’re done. But there are some pitfalls: even MoinMoin 1.9.3 is released at 2010-06-27, it depends on an old Python extension dated to 2004: PyXML.
So in order to get MoinMoin with DocBook export running, you have to install PyXML to your Python extension library – even modern Python (like 2.4) has built-in XML state-of-the art support.
To get things running on Mac OS X 10.6 or 10.5 (might even work with older versions), you have to build and install the library on your system. If you try to download PyXML and build manually you probably run into problems (compiling errors). I recommend to use MacPorts. So this are the steps for your success:
If you have questions, suggestions or I missed a point, just leave a comment.
Using MoinMoin Wiki on Mac OS X can be a little bit more elegant by using the Mac OS X launchd service. I wanted to start the MoinMoin standalone wiki server on my Mac only if I needed it – meaning I only want to start MoinMoin if I access a wiki page through my browser. So here lauchd comes in action. Detailled information on launchd and it’s PLIST-Format is given at the Apple website .It’s a service which combines standard UNIX services like crond, inetd and the init loading mechianism.
So how to achieve the automatic on-demand start-up of MoinMoin.
Open a console (Terminal) and create a launchd .plist File in one of the launchd startup directories:
sudo vim /Library/LaunchAgents/in.moinmoin.wikiserver.plist
The content of this file should be (assuming you extracted the MoinMoin archive to /Applications/moin):
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Label</key> <string>in.moinmoin.wikiserver</string> <key>ProgramArguments</key> <array> <string>/Applications/moin/wikiserver.py</string> </array> <key>Sockets</key> <dict> <key>MoinMoin</key> <dict> <key>SockFamily</key> <string>IPv4</string> <key>SockServiceName</key> <string>8080</string> </dict> </dict> <key>RunAtLoad</key> <false/> <key>OnDemand</key> <true/> <key>LaunchOnlyOnce</key> <true/> </dict> </plist>
If you want to launch your configuration now (at next system startup it’s done automatically) just enter:
launchctl load /Library/LaunchAgents/in.moinmoin.wikiserver.plist
It’s essentially for aesthetics, even in an automatic generated technical documentation, to use typography and layout as you intended it. One fundamental topic are fonts.
In Apache FOP 1.0 a convenience feature for XSL-FO to PDF rendering was added: automatic detection and use of fonts. This can be fonts registered by the operating system or fonts lying in directories you point at by mentioning them in the FOP configuration file. But if you want to use the auto feature, you have to tell FOP to use your configuration file, even it’s the standard configuration in <fop directory>/conf/fop.xconf – often forgetting the -c parameter and wondering why your fonts are not detected costs endless hours.
To use costum-fonts just add the following (just one or both sections, as you need it) to your fop.xconf under the <fonts> node:
<!-- use fonts located in a special directory --> <directory>/Library/Fonts</directory>
<!-- automatically detect operating system installed fonts --> <auto-detect/>
Runnig the auto-detection font feature can result in a huge memory consumption by fop building it’s font cache file (~.fop/fop-fonts.cache). If you get the message: Exception in thread “main” java.lang.OutOfMemoryError: Java heap space – try this options (entered in a shell just before you start FOP or add this to the FOP start script):
export FOP_OPTS='-Xmx512m'
or if that doesn’t work, then
export FOP_OPTS='-Xmx1024m'