Submitted by clemens on Mon, 2009/07/06 - 11:23am
This is my list of Firefox extensions.
* CodeBurner for quick lookups for HTML and CSS
* Cooliris nice image wall
* CoolPreviews previews a link hoover
* DownThemAll a much better download manager
* DrupalForFirebug explains enough
* Ghostery for the paranoids among us
* Grab Them All for having full browser screenshots. Is a little arcane to use
* Pixel Perfect for overlaying a design on the development version
* Quick Translation
* SenSEO
* Session Manager for quickly switch browser tabs
Submitted by clemens on Sun, 2009/07/05 - 2:38pm
I'm still learning to use more command line options.
Today I wanted to apply Hide machine readable name of menu by default. so I had to search for the context around the drupal #attached_js form tag.
So I type man grep and search for context. And bly me there is an option :)
grep --context=4 -r "attached_js" *
Which is _cool_
Submitted by clemens on Tue, 2009/06/30 - 5:07pm
It took some time and effort to configure but now I found the time and annoyance to give it a try.
Well not quite. The gnome-blog-poster is way to simple. Anyway it works.
The annoyance today is about eclipse. I need eclipse integration with trac and it wasn't working on eclipse 3.4.
So I installed eclipse 3.5 which is the third installation of eclipse in 1 week time sigh. Enabled mylyn and downloaded the trac integration plugin.
So what happens when I connected to my https trac site ... a self signed error.
Submitted by clemens on Mon, 2009/05/25 - 11:17am
On a multi language site it is desirable to translate the drupal English into the customers Englich likings.
Steps taken
- Goto /admin/settings/language/add
- Add a custom languages with language prefix en, name en-ours, english English @ Our place and native English @ Our Place
- Make your new language the default.
- Disable drupal's en
- Change the name en-ours into en
Submitted by clemens on Tue, 2008/12/09 - 2:57pm
Guess it's not intended to do but this is how I import languages into Drupal 6.
- wget the language files needed
- run the script below which creates *_full.po files.
#!/usr/bin/env bash
for FILE in *.tar.gz
do
DIR=`basename $FILE ".tar.gz"`
OUT="../${DIR}_full.po"
[ -f $OUT ] && rm $OUT && echo "File $OUT removed ... "
[ -d $DIR ] && rm -r $DIR && echo "directory $DIR gemoved ..."
[ ! -d $DIR ] && mkdir $DIR && echo "directory $DIR created ..."
cd $DIR
tar xzf ../$FILE
find . -type f -name "*.txt" -exec rm {} \;
rm $OUT
Submitted by clemens on Thu, 2008/11/27 - 1:36pm
This is a test for a ad service.
I thought is was hard to implement an ad service. But it is not. Just a few copy and paste actions at the right places.
[edit] Well initially it was easy but the video is not working now. That's quite annoying. Maybe it is because I use the files from Jeroen Wijering his site. If they are moved or that site is unavailable it will break.
So I changed this by grabbing the files from my own site.
[/edit]
Submitted by clemens on Mon, 2008/11/17 - 11:09am
Submitted by clemens on Fri, 2008/10/31 - 11:10am
I prepared a presentation for the Third Drupal Jam held in the Netherlands.
This is off course in Dutch. See the attached pdf.
Submitted by clemens on Tue, 2008/09/02 - 8:49pm
EDIT: When using a nvidea card run
sudo nvidia-xconfig --twinview
And just Option "TwinViewOrientation" "<relationship of head 1 to head 0>"
Problem still remains for multiple configurations like with or without a beamer.
-- EDIT END
Problem: difficulty to attach a beamer or secondary screen to X.
Submitted by clemens on Thu, 2008/04/10 - 12:58pm
While reading the README for http://www.swfmill.org/ to compile non of the dev versions of libxml, libxsl, libfreetype and libpng where mentioned.
As it turned google this point me to http://www.burobjorn.nl/blog/?p=324 with the exact specs documented. Installing a lot dev versions.
I rather install packages then running ./configure && make && sudo make instll but following instruction is cool when they are working.
Pages