Thursday, January 31, 2013
Wednesday, January 30, 2013
Tuesday, January 29, 2013
netbeans php generate getter setter
go to the desired position in your php class and press ALT + INSERT
Sunday, January 27, 2013
Friday, January 25, 2013
Tuesday, January 15, 2013
Monday, January 14, 2013
Friday, January 11, 2013
Thursday, January 10, 2013
Tuesday, January 8, 2013
Monday, January 7, 2013
Dropbox not syncing due to bad file name
Recently my dropbox client on windows stopped syncing new files all of a sudden - whereas the same was working well on CentOs(Linux).
I tried :
1. Uninstalling + Reinstalling the Windows client.
2. Uninstalling + Rebooting Windows + Reinstalling the Windows client.
3. Changing the location of the Dropbox folder on my machine.
But it didn't work because the real problem was presence of a colon(:) in my filename.
There are some characters - which if present in the filename -would prevent the syncing on Windows Clients.
Here is the list of your bad files(You need to be logged into dropbox to see this list).
So I renamed my old files like this :
for myfile in ~/Dropbox/*; do
target=$(echo $myfile|sed -e 's/:/_/g')
mv "$myfile" "$target"
done
Source.
So I renamed my old files like this :
for myfile in ~/Dropbox/*; do
target=$(echo $myfile|sed -e 's/:/_/g')
mv "$myfile" "$target"
done
Source.
Subscribe to:
Posts (Atom)
Blog Archive
-
▼
2013
(48)
-
▼
January
(17)
- version of centos
- installing hiphop php on centos 6.3
- hiphop static analysis for php
- PHP Performance
- online ruby editor
- Trying JS code online
- Trying your PHP code online
- NetBeans : Assign statement to new local variable
- netbeans php generate getter setter
- linux which partition a file belongs to
- mysql regexp for not is numeric
- putty frequent connection timeout problem
- running a phonegap/ios application on iphone
- awk deleting files with 0 length
- Using putty as a telnet client
- mysql query profiling
- Dropbox not syncing due to bad file name
-
▼
January
(17)