JungleDisk “background service error” under unbuntu 11.10 unity

No Comments

After install, under unity, you have no access to the Activity monitor, nor the configuration interface… If you try to launch Jungledisk with a jungle disk icon or via the console, you’ll get a popup with a “background service error” (actually, jungledisk is already running).

Ace on tech, give the solution in this post.

  1.  sudo apt-get install dconf-tools
  2. dconf-editor (no sudo)
  3. in dconf-editor : / > desktop > unity > panel
  4. Append “junglediskworgroup” (or “junglediskdesktop”) to the systray-whitelist enumeration (after this, mine is : ['JavaEmbeddedFrame', 'Wine', 'scp-dbus-service', 'Update-notifier', 'junglediskworkgroup']. You can also type “['all']
  5. Logout / login

BTW, a very good post to tweak your ubuntu with unity : http://www.tuxgarage.com/2011/04/tweak-unity-to-better-suit-your-needs.html

Share

Al Gore office

1 Comment




GTD: Getting Things Done

Originally uploaded by Emborg

Green Al Gore consuming power and paper.

Share

Reminder : logs to check in first place on linux

No Comments

Obvious/well known but always forgotten

sudo tail /var/log/syslog

sudo tail /var/log/messages

Share

Meeting users’ requests

No Comments

Good idea for a future product baseline.

Share

test preg snippet

No Comments

just a little piece of code to test php preg_match(). I used it to test regexp on urls with Zend_Cache_Frontend_Page

$regexp='\?page';//just a regexp (without delimiter)
checkPreg($regexp);
checkPreg($regexp,$_SERVER['REQUEST_URI']);

function checkPreg($preg,$url='http://domain.com/index.php?page=shop/cart2'){
    $res=preg_match(sprintf('|%s|',$preg),$url);
    echo $preg ." match with $url ? ";
    if(false===$res){
        echo 'ERROR';
    } elseif(0 === $res) {
        echo 'NON';
    } else {
        echo 'YES. Num = '.$res;
    }
    echo "<br />\n";
}
Share

Best jQuery Video Plugins | jQuery Wisdom

No Comments

Best jQuery Video Plugins | jQuery Wisdom.

Share

Another vision of Human-computer interfaces (TED)

No Comments

David Merrill demos Siftables | Video on TED.com

Share

A StackOverflow clone in PHP/MySql

No Comments

PHP StackOverflow Clone | anant garg

Share

RBL Forms

No Comments

RBL Forms, un outils de création de formulaires pour jQuery | Dator Blog

Share

jQueryList : 1-page list of jQuery plugins and examples (to bookmark !)

No Comments

jQueryList.com is a new website listing all jQuery plugins + the examples, on one page. Useful too by its sorting by category :

  • Ajax plugins
  • CSS plugins
  • Form plugins
  • Upload plugins
  • etc.

Bookmark it immediatly !

Share