For archiving purposes, it is best to never touch the original files. It helps when you have thousands of files and during the years you have made backups on different places/disks.
When you consolidate (because either you consolidate or you lose your photos/memories) if you have photos that differ only for the exif tags is a nightmare to understand which photos are ok and which are not.
Always prefer programs that do not touch your photos. I recently found that one of the programs I used in the past for an old camera (2002-2005), when rotating the images was nuking the exif data.. Still need to find which one it was.. and damn it to hell.
Now it would be great to do.xmp of jpegs, but last time I tried (a few months ago) I did not manage to make it work with shotwell (there is only an option to alter the file metadata.. the horror..).
In my case, to consolidate the photo collection, I have the originals in different folders (tematic, cronological etc. etc) and then I create some symlinks in a directory called "history". Here a work in progress
Here in Belgium a registered snail mail is sufficient in general to cancel a service (i.e. cable). Last time I changed internet provider I waited the expiration of the contract, but I think now they have more consumer friendly laws and you can change with much more ease.
The general idea is to foster competition between companies making it easier for a customer jumping ship and woting with his wallet/her purse.
Of course other governamental intervention (forcing the old telecom monopoly to lease their infrastructure at reasonable price and now trying to do the same for cable) is a godsent.
You can always argue that the incumbent has the advantage (because you may want to avoid the ping pong between the virtual operator and the incumbent), but sure as hell it looks infinitely better of what people have suffering in USA.
I got friends going to work there and being flabbergasted by the internet connections and prices...
What I dislike the most are users that take advantage of others due to their lack of knowledge. And this is either done intentionally or unintentionally when rules are not enforced.
I would like all the students (often coming in contact with linux, shell programming and clusters for the first time) to have a fair shot of using the available resources, and not to backstab each other.
Before everyone could run on the cluster, until I discovered that certain students were giving their login to others: the first did not really need it (i.e. theoretical work) and the second would run on the cluster twice the amount of jobs of the others.
the beowulf clusters we have are running either based on Centos or SLES. For the development workstations where newer versions of certain software are needed I install Fedora.
This means the developers basically run production on the cluster and develop on the workstations.
Since there is always a gap between the two (i.e. centos 5 on cluster and fedora 16 on workstations before, centos 6 on cluster and fedora 20 on workstation), when the cluster is updated there is limited breakage, at least until now.
I understand those that push a stable distro everywhere, maybe for next cycle I will do the same, who knows.
"You can fool everybody once, or somebody everytime. But You cannot fool everybody everytime".
Is this the stampede of angry share-holders that I hear going towards Redmond? Because, you know, I think the end is approching, maybe sooner than we could expect.
This is similar to be accused of being unpatriotic if you just dare to criticize the government.
Is there still democracy around, or the seals are taking care of it?
Re:Here's why I love it:
on
Why I Love The GPL
·
· Score: 5, Informative
I seem to recall that the FSF did quite a lot of actions against some companies, like one that was producing routers in violation of the GPL.
And each time stupid people were crying out loud that the FSF was "enforcing" the GPL and that they were communist, viral GPL, blah, blah, but that is beside the point.
So, yes, you can force people and companies to abide to GPL, but not by yourself.
That's why if you are concerned about company stealing the work of who benefit as all, there is an easy way to help:http://member.fsf.org/join.
Time to actually do something about this, ladies and gentlemen.
Backuppc is exceptional for linux, but for windows and the infamous pst files, better to have a client/server architecture of the BURP software.
Same server, running backuppc and burp, and you save to tape the whole backup FS every 6 months.
You can use bacula for the last step if you so wish, we use straight copy to lto tapes.
Hi there,
For archiving purposes, it is best to never touch the original files. It helps when you have thousands of files and during the years you have made backups on different places/disks.
When you consolidate (because either you consolidate or you lose your photos/memories) if you have photos that differ only for the exif tags is a nightmare to understand which photos are ok and which are not.
Always prefer programs that do not touch your photos. I recently found that one of the programs I used in the past for an old camera (2002-2005), when rotating the images was nuking the exif data.. Still need to find which one it was.. and damn it to hell.
Now it would be great to do .xmp of jpegs, but last time I tried (a few months ago) I did not manage to make it work with shotwell (there is only an option to alter the file metadata.. the horror..).
In my case, to consolidate the photo collection, I have the originals in different folders (tematic, cronological etc. etc) and then I create some symlinks in a directory called "history". Here a work in progress
#!/volume1/homes/admin/local_programs/bin/bash
#set -x
EXT="jpg JPG jpeg JPEG"
#DEBUG="echo"
num=0
for exte in $EXT
do
for file in $(find . -name '*'.$exte| grep -v history); do
echo "doing $file"
OCDATE=$CDATE
OCHOUR=$(echo $CHOUR | awk -F'.estim' '{print $1}')
INFO=$(exiftool $file | tr '\n' '#')
PROBLEM=$(echo $INFO |tr '#' '\n' | grep "^Make")
[ -z "$PROBLEM" ] && echo "Problem with $file. Skipping" && continue
CDATE=$(echo $INFO |tr '#' '\n' | grep "Media Create Date" | awk '{print $5}')
[ -z "$CDATE" ] && CDATE=$(echo $INFO |tr '#' '\n' | grep "Create Date" | awk '{print $4}')
[ -z "$CDATE" ] && CDATE=$(echo $INFO |tr '#' '\n' | grep "Date/Time Original" | awk '{print $5}')
[ -z "$CDATE" ] && CDATE=$OCDATE
[ -z "$CDATE" ] && echo "error inquiry file" $file && continue
CHOUR=$(echo $INFO |tr '#' '\n' | grep "Media Create Date" | awk '{print $6}')
[ -z "$CHOUR" ] && CHOUR=$(echo $INFO |tr '#' '\n' | grep "Create Date" | awk '{print $5}')
[ -z "$CHOUR" ] && CHOUR=$(echo $INFO |tr '#' '\n' | grep "Date/Time Original" | awk '{print $5}')
[ -z "$CHOUR" ] && num=$(expr $num + 1) && CHOUR=${OCHOUR}.estimation_$num
[ -z "$CHOUR" ] && echo "error inquiry file" $file && continue
TYPE=$( echo $INFO |tr '#' '\n' | grep "File Type" | awk '{print $4}')
YEAR=$( echo $CDATE | cut -d':' -f1)
MONTH=$(echo $CDATE | cut -d':' -f2)
DAY=$( echo $CDATE | cut -d':' -f3)
FNAME=$(echo $CHOUR | tr ':' '-')
FNAME=${FNAME}.$TYPE
DDIR=history/$YEAR/$MONTH
DEST=${DDIR}/${DAY}-${FNAME}
[ ! -d "$DDIR" ] && $DEBUG mkdir -p $DDIR
if [ ! -L "$DEST" ]; then
$DEBUG ln -s
else
TGT=$(readlink $DEST)
[ "$TGT" != "./../../../$file" ] && echo "Error whith $file and $DEST" && exit 1
fi
done
d
Hello,
I have deployed some fedora 20 machines in the last 3-4 months, and so far I did not see anything that led me to cry foul against systemd.
Actually, the handling of the user sessions for house-keeping purposes seems much simpler now.
So I don't get all this hate. Maybe I did not look deep enough, time will tell.
Cheers
Here in Belgium a registered snail mail is sufficient in general to cancel a service (i.e. cable).
Last time I changed internet provider I waited the expiration of the contract, but I think now they have more consumer friendly laws and you can change with much more ease.
The general idea is to foster competition between companies making it easier for a customer jumping ship and woting with his wallet/her purse.
Of course other governamental intervention (forcing the old telecom monopoly to lease their infrastructure at reasonable price and now trying to do the same for cable) is a godsent.
You can always argue that the incumbent has the advantage (because you may want to avoid the ping pong between the virtual operator and the incumbent), but sure as hell it looks infinitely better of what people have suffering in USA.
I got friends going to work there and being flabbergasted by the internet connections and prices...
Exactly the last point.
What I dislike the most are users that take advantage of others due to their lack of knowledge. And this is either done intentionally or unintentionally when rules are not enforced.
I would like all the students (often coming in contact with linux, shell programming and clusters for the first time) to have a fair shot of using the available resources, and not to backstab each other.
Before everyone could run on the cluster, until I discovered that certain students were giving their login to others: the first did not really need it (i.e. theoretical work) and the second would run on the cluster twice the amount of jobs of the others.
Hi,
another alternative would maybe sysfera-ds, but their open source offering seems lacking documentation and features (see here).
Need to investigate. Seems something on the lines of what vizstack could have done.
Hi,
the beowulf clusters we have are running either based on Centos or SLES. For the development workstations where newer versions of certain software are needed I install Fedora.
This means the developers basically run production on the cluster and develop on the workstations.
Since there is always a gap between the two (i.e. centos 5 on cluster and fedora 16 on workstations before, centos 6 on cluster and fedora 20 on workstation), when the cluster is updated there is limited breakage, at least until now.
I understand those that push a stable distro everywhere, maybe for next cycle I will do the same, who knows.
You start dancing with the sharks and *AA agents.
Too true. I hope people will realize and drop the guns.
For being the chief tactical director of NERV you really should learn to do some reconnaissance first..
Send in Section 2 and Mac Users as cannon fooder to estimate the offense capabilities of this Angel!
Kuroo is replicating this functionality.
And I would be interested to know how to help the fight from the soon to be victim of crony capitalism EU.
I agree.
How is possible that this info has been overlooked?
With all due respect, is not this more important
of the new dual cpu MBs from via?
"You can fool everybody once, or somebody everytime. But You cannot fool everybody everytime".
Is this the stampede of angry share-holders that I hear going towards Redmond? Because, you know,
I think the end is approching, maybe sooner than we could expect.
Not to mention that some "studies" count
the same patch multiple times since
issued by different distributions...
If this is not being in mala fide I do not
know what it is.
And even the copyright was in beginnig a
useful tool, as Lessig points in "Free culture".
But in the period of crony capitalism,
do you think the aristocrats of the financial
world will relinquish their often ill
gotten gains?
Interesting times are coming, and democracy,
being it financial or political is in
danger.
Is it valid pointing another ./ article?h tml
http://slashdot.org/articles/01/02/22/0250200_F.s
This what happens with typos.
Remember to read the small prints as well.
And here a nice old news abouts p
GPL enforcing and related comment
from uncle Ballmer about the
viral nature of GPL:
http://www.eweek.com/article2/0,1759,1654625,00.a
This is similar to be accused of
being unpatriotic if you just dare to
criticize the government.
Is there still democracy around,
or the seals are taking care of it?
I seem to recall that the FSF did quite a
:http://member.fsf.org/join.
lot of actions against some companies,
like one that was producing routers in
violation of the GPL.
And each time stupid people were crying out loud that the FSF was "enforcing" the GPL and that
they were communist, viral GPL, blah, blah, but that is beside the point.
So, yes, you can force people and companies
to abide to GPL, but not by yourself.
That's why if you are concerned about
company stealing the work of who
benefit as all, there is an easy way to
help
Time to actually do something about this,
ladies and gentlemen.
close enough: http://www.typematrix.com/
Try a keyboard that maps DVORAK in hardware,
like the TypeMatrix.
And, of course, who defends QWERTY to the
extreme has never possibly even tried DVORAK.
Must be those knowledge by proxy that are so common nowadays..
XF86Config:
Section "ServerLayout"
Identifier "XFree86 Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
Option "DontZap" "True" #To avoid the zapping of the server
EndSection