Topic: Dropbox on #!

I was wondering if any of you use Dropbox on #! and if so what are your experiences with it?
I have Dropbox on my iPhone and Macbook (running Mac OSX) and I want to get my lappy running #! 9.04.01 in the synchronization by installing the Dropbox application on it.
If you use a different synchronization tool let me know. I'm always open to new ideas/input/point of views.
Thanks smile

Re: Dropbox on #!

I run CB Statler A2 on my Eee 900. It's got Dropbox preinstalled. I just choose start dropbox in the openbox menu. It has worked flawless so far!

Re: Dropbox on #!

I've been reading so many good stuff about Statler A2. Perhaps it's time for me to give it a shot and to experience what it's really all about smile

Re: Dropbox on #!

see signature wink and I also use Dropbox for collaboration at school,works great I must say

Meh. Interested for a Dropbox alternative? Go to https://launchpad.net/tart

Re: Dropbox on #!

Tart...is it just me or is that a really funny name big_smile
Interesting project!!!

Re: Dropbox on #!

I've got Dropbox on this 9.04 desktop and a Statler α2 laptop. Symlinks in the ~/Dropbox folder point to folders like ~/scripts or ~/documents. Works perfectly except that when scripts are updated from the other box they lose their executability, so you have to put it back manually. (Security-wise that might not be so terrible.) Otherwise great. smile

------------------------------------------
Little script to check out your /~scripts, or other, folder and ask with zenity if you want to restore executability. Maybe run it in autostart.sh with a couple of minutes delay:

#!/bin/bash
# check if files in a directory ($1, or default ~/scripts) are executable

editor=leafpad  # leafpad's quick

path="${1:-$HOME/scripts}" # use ~/scripts if no argument is given
path="${path%/}"    # remove any final slash
[ -d "$path" ] || { echo "$0: $path is not a directory" >&2; exit 1; }

for i in "$path"/*
do
    [[ -x $i ]] && continue
    $editor "$i" & edpid=$!
    sleep 1    # wait for editor to open so zenity is on top
    zenity --question --text="file $i is not executable.
Make it executable?" && chmod +x "$i"
    kill $edpid
done
exit 0
John
------------------------
( a boring Japan blog , and idle twitterings )
“Good morning sir, which way up would you like your reality today?”  "As it comes, Jeeves, as it comes..."

Re: Dropbox on #!

Thanks johnraf!

What buggs me out the most is that use of Dropbox on iPhone is limited. I am still dreading the fact that I got an iPhone and not something like a Nokia N900.  Mine isn't jailbroken or anything. For everything I want to do on the phone I have to need iTunes. That sucks, I expected a bit more accessibility. On the positive note: I've installed Statler Alpha 2 on my lappy. Dropbox runs like a charm on it big_smile
Yaaay #!

Re: Dropbox on #!

To be honest, the N900 can be pain in the ass... But I still love the phone! =o)

Re: Dropbox on #!

GuruX wrote:

To be honest, the N900 can be pain in the ass...

But is it worst than iPhone? Is it easy accessible? For some time now I wanted to trade my iPhone in for something that's more dynamic and accessible. I hear Android based phones are a good option. Plus they also have a Dropbox app big_smile