PCFreak Logo (c) Der PCFreak

Archive for the 'Dropbox' Category


SyncPass – KeePass + DropBox Kommentare deaktiviert für SyncPass – KeePass + DropBox

SyncPass IconI use KeePass for some of my passwords. KeePass runs on multiple platforms including Mac, Windows, Linux, Android, iOS and more. The problem on iOS has always been, that I had to upload my Keepass-DB manually with iTunes to the iPhone, while I am using a synchronized copy out of my Dropbox on all my other devices.

Now I found a solution, SyncPass. SyncPass is KeePass-compatible but can directly connect to a Keepass-DB in your Dropbox folder.

Once installed you have to register the App with your Dropbox Account, then put your Keepass-DB in the Apps folder of SyncPass, e.g. /Dropbox/Apps/SyncPass/mydatabase.kdb and voila you have now a DropBox-synchronized Keepass-DB on iOS.

Homepage: http://www.simpleanywhere.com/syncpass/

 

dropbox.py – Missing parentheses in call to ‚print‘ Kommentare deaktiviert für dropbox.py – Missing parentheses in call to ‚print‘

I got this error when trying to run dropbox.py (Dropbox command-line interface):

  File „./dropbox.py“, line 323
    print ex
           ^
SyntaxError: Missing parentheses in call to ‚print‘

A quick look at the source of dropbox.py shows

#!/usr/bin/python

as Shebang. So I verified which version of python this is on my system:

/usr/bin/python –version

and I got

Python 3.4.2

dropbox.py is designed for python2. So I just ran it with python2 and it worked

/usr/bin/python2 ./dropbox.py

or you could of course change the Shebang to #!/usr/bin/python2.