Estimated read time: 1 minutes
Estimated read time: 1 minutes
I just got my freedesktop.org git account, since ooo-build is moving there from svn.gnome.org. The interesting part is account maintainance - basically I had to submit my gpg key and as long as I gpg-sign my messages, I even can change ssh keys via email, automatically. That's nice, but the reply to my messages are weird - they are gpg-encrypted, but not in a way mutt can automatically decrypt.
They note in the wiki that they borrowed the account admin system from Debian - problem located. :P
Snip. When I created the tmp libwpd-java homepage, I used hilight in asciidoc documents to color Java code. The syntax used to be:
[java] source~~~~ foo source~~~~
Now I needed this feature again and it seems that the recommended (required?) syntax is something new (tested with c++ only, as I needed that one):
[source,cpp] ---- foo ----
Estimated read time: 1 minutes
So we just got a Java task at the uni and I wanted to see what can I do on Frugalware-ppc about it, in case I build openjdk from hg.
The result is quite surprising, it works very well.
My only big problem is that it has a totally different build number, currently they are at 1.6.0b14, while the binary version is at '6 update 13', and till the source versioning schema does not match the binary one, I would not use it in a production environment.
It also seems that packaging this would take a hell of time (and even after it's done, maintaining it would be time-consuming as well), so in case they would publish prebuilt binaries, I could live with that. I just found some bin tarballs on the archlinuxppc ftp site - mailed them about them (if they just mirror it or where is the build script), but no response so far.
Estimated read time: 1 minutes
Okay, I learned something new, you can have a special pointer type in C++ which is not really a pointer at all.
So let's say you have a Foo class with a lot of void foo(int param); methods. Then you can have a "pointer" type 'int (Foo::*)(int)' which is in fact a pointer to Foo and it has an offset about what function does it point to.
And given that it contains an address and an offset as well, you can't cast it to void*, like you can do so with real pointers.
I had to look up the Bjarne book since I didn't really know about this at all... ;-)
Estimated read time: 1 minutes
Estimated read time: 1 minutes
I never imagined that google translate could be useful for any situation when English is not the source language (I use it when English is the target language when I find some Chinese or Japanese blog posts), but now I see where it can be useful.
Yesterday I just wanted to link a timeline to someone who does not speak English at all, and google translate did its jobs - at least when the user knew what does she search for, she was able to find the date in the timeline. :)
Estimated read time: 1 minutes
Estimated read time: 1 minutes
It has been proposed on the list that we switch from medawiki to dokuwiki.
Pros: an active developer would maintain it, dokuwiki is maybe a bit less bloated
Cons: obscure syntax, for example the title '=' syntax (= is big, == is smaller) is the opposite of what we use in asciidoc.
So far dokuwiki is packaged in current, so we'll see...
Estimated read time: 1 minutes
That's interesting. My feeling was that recently the popularity of Frugalware was not increasing but staging, but then I had a look at the apache logs and checked the number of hits one days after the release of 0.9 and 1.0:
$ grep -c '10/Sep/2008' www.frugalware.org-access_log 88223 $ grep -c '23/Mar/2009' www.frugalware.org-access_log 216817
So it seems we recently get way much more hits than previously. Interesting.
Estimated read time: 1 minutes