December, 2008


22
Dec 08

Announcing Freedom v0.4

I’m pleased to release Freedom v0.4, a major update to the Freedom software.  This new version is a fresh rewrite, incorporating the ability to access local networks, an extended time period, and many significant bug fixes.  Particularly, Freedom’s authentication mechanism has changed (fixing the password-timeout bug) and Freedom will now appropriately handle suspends and sleeps.

Freedom v0.4 remains Mac only, and it is tested through OS 10.5.6.  This new version was paid for (thank you!) by those who have donated in the past.  I strongly recommend that all users upgrade as soon as possible.

Download Freedom directly (.dmg)

Freedom’s website.

If you run into any problems/have suggestions please leave them in the comments.  I do not plan on developing a Windows version, sorry.

Previous posts about Freedom:

Productive Unit Structures: Introducing Freedom
New Version of Freedom: v0.3
Freedom in the Telegraph


17
Dec 08

Upcoming Productivity Workshop

Via Abe Crystal, the Tri-UPA is presenting the full-day productivity workshop Reboot Your Work: Modern Methods For Productivity, Sanity, And Control.  It will be held on Tuesday, Jan 13, 2009 from 9:00 AM until 4:30 PM.

About the workshop:

In this fast-paced full-day workshop, you will learn modern techniques to juggle and prioritize all the information constantly coming at you: dozens of projects, round-the-clock demands for your attention, and the perpetual overload of email and IM.

You’ll apply the concepts using hands-on exercises at the individual, small group, and large group levels. You’ll leave with a solid system for doing your job more productively, with less effort, and a greater sense of control.

Cost is 50 dollars for students, which sounds like a great investment for starting the new year off right.  Sign up at the Triangle Usability Professionals Association site.


10
Dec 08

Study Break

It is exam time here at UNC Chapel Hill.


2
Dec 08

Hacking Google Scholar

If you connect to Google Scholar through a proxy (for example, through your library’s proxy), you’ll find that GS is unable to remember your preference settings.  Although Google seems to forget my preferences far too often, in the case of Google Scholar it isn’t their fault.  When you connect through a proxy you appear to Google as a different user every time, and until preferences are tied to your Google account (and not a session/cookie), Google is simply unable to remember them.

To “solve” this problem, I’ve found that you can set a bookmark that will set your preferences each time it is clicked.  While this doesn’t solve the problem of Google forgetting preferences between sessions, it will save you the time and effort of having to reset your preferences each time.  You will need to custom-craft your bookmark.  Here’s mine:

http://scholar.google.com/scholar_setprefs?num=50&scis=yes&scisf=4&submit=Save+Preferences

As you can see, in with I’m passing some options to “scholar_setprefs” – i.e. the mechanism that sets your Google Scholar preferences.  I’m manipulating two options, Number of Results (num=50) and Bibliography manager (scis=yes&scisf=4).  I could also directly manipulate the interface and search language, library links, and if the results opened new windows or not (I don’t because I’m happy with the GS defaults).

The options accept a range of values, which I’ll describe briefly:

Number of results (num), accepts:

  • 10
  • 20
  • 30
  • 50
  • 100

If you’d like 100 results to be displayed, you’d change the url so that num=100.

Bibliography manager (scis=yes&scisf=4).  Google Scholar supports a number of different export formats, and to change their default, you’ll need to change the scisf value.  Here are the corresponding values:

  • 4 (Bibtex)
  • 3 (EndNote)
  • 2 (RefMan)
  • 1 (RefWorks)
  • 5 (WenXianWang)

If you’re a RefWorks user, you’d change the string so that it looked like this scis=yes&scisf=1.

Putting it all together, if you’re a RefWorks user who wants 100 results displayed, you’d set your bookmark as follows:

http://scholar.google.com/scholar_setprefs?num=100&scis=yes&scisf=1&submit=Save+Preferences

Finally, if you’re accessing GS through your library proxy, you’ll need to add the proxy information into the URL. In the case of UNC we place the proxy information directly in the url. Therefore, my proxied bookmark looks like this:

http://scholar.google.com.libproxy.lib.unc.edu/scholar_setprefs?num=50&scis=yes&scisf=4&submit=Save+Preferences

As you can see, I’ve added .libproxy.lib.unc.edu to the beginning of the URL. This will vary by library, so you’ll want to look at other proxied URL’s at your institution to get a feel for where the proxy information goes.  As I noted above, there are a bunch of other options you can change directly. If you’d like to change those, simply view the source of the Google Scholar preferences page, look for the option and value pairs in the form, and tack them into the URL (making sure to add & before the option/value pair).