Unofficial OSU Philosophy Department Colloquia Calendar
This is not the official calendar for our department colloquia. This is an unofficial google calendar which I maintain for my own use. It differs from the official calendar in a few important ways:
- I (try to) include all philosophy talks at OSU, not just official colloquia.
- I include talks as soon as they’ve been scheduled.
- Use this link to subscribe to the calendar in your feed reader: xml
- Use this link to subscribe to the calendar in your calendar software: ical
OSU EZProxy Bookmarklet
This “bookmarklet” allows for easy access to OSU-restricted resources from off-campus, via the OSU EZProxy service. To use, drag this link—OSU Proxify—to your browser’s bookmark toolbar. When you arrive at a site that requires the proxy, like this article on jstor, click on the bookmarklet, and you will be redirected to the proxified version of the site’s url (you will be asked to login first).
Using OSU EZProxy For Your Files
Want part of your OSU webpage to be protected behind OSU’s EZProxy server? Create a subfolder (e.g., sanson7/local/), create a text file named “.htaccess” in that folder, containing the following lines:
RewriteEngine On
RewriteCond %{REMOTE_ADDR} !^164\.107
RewriteCond %{REMOTE_ADDR} !^140\.254
RewriteCond %{REMOTE_ADDR} !^128\.146
RewriteCond %{REMOTE_ADDR} !^192\.68\.143
RewriteCond %{REMOTE_ADDR} !^192\.12\.205
RewriteCond %{REMOTE_ADDR} !^67\.39\.90
RewriteCond %{REMOTE_ADDR} !^75\.12\.69
RewriteRule (.*) http://proxy.lib.ohio-state.edu/login?url=http://%{SERVER_NAME}%{REQUEST_URI} [R,L]
Now anyone who attempts to open something within that folder from off-campus will be automatically redirected through OSU’s EZProxy service.
Too complicated? Download this file, upload it to the appropriate folder on the webserver, and rename it to “.htaccess” (best to rename it after it is on the server; file names that begin with periods get special treatment on many operating systems).
I suspect this use of OSU’s EZProxy service is unsupported, perhaps even frowned upon. I’ve tested it on my OSU humanities web folder and it worked. It hasn’t worked for me on externally hosted web sites. YMMV.
iPhonlets Bookmarklet
This is a meta-bookmarklet: it makes it possible to add any bookmarklet to your iPhone or iPod Touch directly, without syncing to a desktop computer running Safari. (I assume it is similar in function to the “Grady Morgan Bookmarklet,” which has gone missing from the web.)
The bookmarklet changes all href="javascript:blah" links on a page to href="http://osu.edu/mobile/#javascript:blah" links. (As a visual cue, it surrounds converted links in yellow.) You then visit the link (it will take you to osu’s webpage) and bookmark it. You then edit the bookmarked address, deleting the http://osu.edu/mobile/# bit. The process is a pain, but it works. (Any suggestions for alternative prefixes? The usual google prefix was giving me trouble…)
This process has been described on a few different sites, which provide iPhone friendly links already for their bookmarklets, and have more complete instructions about how to add them and edit them, including screenshots:
To use, drag this link— iPhonlets—to your browser’s toolbar on your computer and sync your bookmarks with your iPhone.
Just kidding. You can do that, of course, but to add the bookmarklet directly to your iPhone, you need to first use the bookmarklet to transform itself (and all the other bookmarklets on this page). So click once on the bookmarklet above right now. It should turn yellow. Now click on it again, bookmark the resulting page, and edit out the http://osu.edu/mobile/# bit. Isn’t it fabulous that you can use it to install itself?
For those interested in tweaking the bookmarklet, here is the human readable source:
function F() {
var i,L;
L=document.links;
for (i=0;i<L.length;i++) {
if (L[i].protocol=="javascript:") {
L[i].href="http://osu.edu/mobile/#"+L[i].href;
L[i].style.padding="5px";
L[i].style.border="thin solid #ccc";
L[i].style.background="#ff3";
L[i].style.color="#000";
}
}
};
F();
Wondering why you’d want bookmarklets on your iPhone? Take a look at these for starters.