Tag Archives: exiftool

Creating Interest in Government will Bring More People out for Elections

Lafayette City Councilor Ron Campbell:

It seems to me we’ve got to create more interest in elections if we are going to get people to participate in government.

I disagree with Councilor Campbell’s understanding of the disinterest in elections; it is not elections that bring participation in government, it is engagement in government that brings participation in elections.

As I am often fond of saying, individuals should not limit their political life to the ballot box. What has Campbell done to involve the Public in the process?  What kind of engagement and access has Campbell worked towards to open up the City’s activities, including Committee work?

As of today, only the Lafayette City Council meetings are posted on the City’s YouTube channel. Anyone remotely familiar with municipal government knows that impactful decisions are made outside Council meetings, such as at the Board of Public Works, or the Economic Development Commission to name a couple.

On the City’s web site, only the City Council and Board of Public Works have their audio posted. Again, anyone who has worked on boards or with local government knows minutes are usually gross generalizations of the conversation and are only legally required to document the motions and votes on particular issues.  Sometimes, comments are distilled to neutralizing nothings:

Public Comments Distilled into a Neutralized NothingPublic Comments Distilled

To get an accurate picture of a group, one must observe the actual meeting.

(Side note:  Lafayette, after all, is the hometown of C-SPAN creator, Brian Lamb. This type of documentation and digestion is in our blood!)

In order to excite the Public’s interest in local government, they need to have access to how their local government works.  To have guidance on navigating the system, how to find information, ask questions, analyze data, etc. They need to feel like this is expected of them.  Once we get people involved in the processes of government, they will be more delighted to evaluate those running for office, and ultimately return each election cycle to vote.

Moving the election, as has been recently talked about by multiple groups, including the Journal and Courier’s Dave Bangert, is not the solution.

Once moved, municipal issues will be shadowed by the larger, National questions, candidates, and issues. If people can’t take the time to learn about their local leaders now, how can we expect them to do so when the workload is increased?

Another context missing from this conversation is the weakness of our political landscape, namely the two parties in Tippecanoe County.

The Democrats were the only ones who had an primary contest in the entire County.  Five individuals were running for the three At-Large seats in the Lafayette City Council. A fleet of challengers is always good for the Public and the abysmal effort by both parties on each side of the river sends two possible messages to the local community:

  1. The candidate selection process is pre-filtered internally by the Democrat and Republican leadership, possibly discouraging those who might want to run not to do so.
  2. The candidate pool is deplete and barren.

Either one does not bode well for the Public and the democratic process in Tippecanoe County.

The two-party system is one that should not be sustained either.  Efforts to do so are myopic, wasteful, and damaging to the future of our political system.  Keeping the two parties creates an environment that stabilizes into a stagnation, causing the Public to squander interest, lose trust, and tune out what is happening around them.  If that is the desired goal, we achieving this to splendid results across the United States of America.

That, Councilor Campbell, is why people are not interested in government.  When the only importance emphasized to the Public is their voting habits, one quickly becomes a bystander or worse, a stranger, to the very opportunities that would make them feel integral to our democracy.

Recovering Pictures from a Cell Phone

I recently had a crash on my phone where I thought I lost the majority of my pictures. Luckily, I was able to do a recover using PhotoRec. The only problem is that for some reason, there was a glitch with the file system on my phone and each time it neared the end, the program would go backwards several thousand sectors and start recovering the same files all over again.

The next problem was that I had several duplicate files and needed to prune redundancies. Thankfully there was a program, FSlint, that was designed to do just that. Using a file size, MD5sum, and SHA1sum analysis regiment to find the duplicate files, I was able to eradicate all of the extra, unnecessary, redundant versions of each picture.

Now my problem was that I had several recoup.dir directories. I wanted to take all of the JPEGs from their respective folders and move them to a single, good folder. Searching around the Internet led to this post on LinuxQuestions.org. Their suggested command worked beautifully:

find (start directory) -iname “all my files type” -exec cp {} (target_dir) \;

Now I had all of my pictures recovered, duplicates removed, sitting in a single directory, however, their original file names and dates were incorrect. Thankfully I found this little handy script on TuxRadar that allowed me to rename the files and update their timestamp according to their embedded EXIF data:

find -name ‘*.jpg’ | while read PIC; do
DATE=$(exiftool -p ‘$DateTimeOriginal’ $PIC |
sed ‘s/[: ]//g’)
touch -t $(echo $DATE | sed ‘s/\(..$\)/\.\1/’) $PIC
mv -i $PIC $(dirname $PIC)/$DATE.jpg
done

Thanks to the wonderful world of FLOSS, I was able to complete my mission of recovering my, once lost, pictures, rename them according to their meta data, and live a happy Saturday. I love the community.