Category Archives: getting things done

Using WordPress as a Syllabus Database: Learning is Fun

(More screenshots in a previous post on this blog.)

Worked on a WordPress project all night, the night before last. Was able to put together a preliminary version of a syllabus database that I’ve been meaning to build for an academic association with which I’m working.

There are some remaining bugs to solve but, I must say, I’m rather pleased with the results so far. In fact, I’ve been able to solve the most obvious bugs rather quickly, last night.

More importantly, I’ve learnt a lot. And I think I can build a lot of things on top of that learning experience.

Part of the inspiration comes from Kyle Jones’s blogpost about a “staff directory”. In addition, Justin Tadlock has had a large (and positive) impact on my learning process, either through his WordPress-related blogposts about custom post types and his work on the Hybrid Theme (especially through the amazing support forums). Not to mention WordCamp Montrealofficial documentationplugin pagestutorials, and a lot of forum– and blogposts about diverse things surrounding WordPress (including CSS).

I got a lot of indirect help and I wouldn’t have been able to go very far in my project without that help. But, basically, it’s been a learning experience for me as an individual. I’m sure more skilled people would have been able to whip this up in no time.

Thing is, it’s been fun. Close to Csíkszentmihályi’s notion of “flow”. (Philippe’s a friend of mine who did research on flow and videogames. He’s the one who first introduced me to “flow”, in this sense.)

So, how did I achieve this? Well, through both plugins and theme files.

To create this database, I’ve originally been using three plugins from More Plugins: More Fields, More Taxonomies, and More Types. Had also done so in my previous attempt at a content database. At the time, these plugins helped me in several ways. But, with the current WordPress release (3.2.1), the current versions of these plugins (2.0.5.2, 1.0.1, and 1.1.1b1, respectively) are a bit buggy.

In fact, I ended up coding my custom taxonomies “from scratch”, after running into apparent problems with the More Taxonomies plugin. Eventually did the same thing with my “Syllabus” post type, replacing More Types. Wasn’t very difficult and it solved some rather tricky bugs.

Naïvely, I thought that the plugins’ export function would actually create that code, so I’d be able to put it in my own files and get rid of that plugin. But it’s not the case. Doh! Unfortunately, the support forums don’t seem so helpful either, with many questions left unanswered. So I wouldn’t really recommend these plugins apart from their pedagogical value.

The plugins were useful in helping me get around some “conceptual” issues, but it seems safer and more practical to code things from scratch, at least with taxonomies and custom post types. For “custom metaboxes”, I’m not sure I’ll have as easy a time replacing More Fields as I did replacing More Taxonomies and More Types. (More Fields helps create custom fields in the post editing interface.)

Besides the More Plugins, I’m only using two other plugins: Jonathan Christopher’s Attachments and the very versatile google doc embedder (gde) by Kevin Davis.

Attachments provides an easy way to attach files to a post and, importantly, its plugin page provides usable notes about implementation which greatly helped me in my learning process. I think I could code in some of that plugin’s functionality, now that I get a better idea of how WordPress attachments work. But it seems not to be too buggy so I’ll probably keep it.

As its name does not imply, gde can embed any file from a rather large array of file types: Adobe Reader (PDF), Microsoft Office (doc/docx, ppt/pptx/pps, xsl/xslx), and iWork Pages, along with multipage image files (tiff, Adobe Illustrator, Photoshop, SVG, EPS/PS…). The file format support comes from Google Docs Viewer (hence the plugin name).

In fact, I just realized that GDV supports zip and RAR archives. Had heard (from Gina Trapani) of that archive support in Gmail but didn’t realize it applied to GDV. Tried displaying a zip file through gde, last night, and it didn’t work. Posted something about this on the plugin’s forum and “k3davis” already fixed this, mentioning me in the 2.2 release notes.

Allowing the display of archives might be very useful, in this case. It’s fairly easily to get people to put files in a zip archive and upload it. In fact, several mail clients do all of this automatically, so there’s probably a way to get documents through emailed zip files and display the content along with the syllabus.

So, a cool plugin became cooler.

Syllabus Database (archive)

[gview file=”http://blog.enkerli.com/files/2011/08/syllabusdb-0.2.zip” height=”20%”]

As it so happens, gde is already installed on the academic site for which I’m building this very same syllabus database. In that case, I’ve been using gde to embed PDF files (for instance, in this page providing web enhancements page for an article in the association’s journal). So I knew it could be useful in terms of displaying course outlines and such, within individual pages of the syllabus database.

What I wasn’t sure I could do is programmatically embed files added to a syllabus page. In other words, I knew I could display these files using some shortcode on appropriate files’ URLs (including those of attached files). What I wasn’t sure how to do (and had a hard time figuring out) is how to send these URLs from a field in the database: I knew how to manually enter the code, but I didn’t know how to automatically display the results of the code when a link is entered in the right place.

The reason this matters is that I would like “normal human beings” (i.e., noncoders and, mostly, nongeeks) to enter the relevant information for their syllabi. One of WordPress’s advantages is the fact that, despite its power, it’s very easy to get nongeeks to do neat things with it. I’d like the syllabus database to be this type of neat thing.

The Attachmentsplugin helps, but still isn’t completely ideal. It does allow for drag-and-drop upload and it does provide a minimalist interface for attaching uploaded files to blogposts.

First Attach Button (Screenshot)
Screenshot of First “Attach” Button

In the first case, it’s just a matter of clicking the Attach button and dropping a file in the appropriate field. In the second case, it’s a matter of clicking another Attachbutton.

Second Attach Button (Screenshot)
Screenshot of the Second “Attach” Button

The problem is between these two Attach buttons.

File Uploaded Screenshot
Screenshot of the Uploaded File

The part of the process between uploading the file and finding the Attach button takes several nonobvious  steps. After the file has been uploaded, the most obvious buttons are Insert into Post and Save all changes, neither of which sounds particularly useful in this context. But Save all changes is the one which should be clicked.

To get to the second Attach button, I first need to go to the Media Library a second time. Recently uploaded images are showing.

Images Only Screenshot
Screenshot of the Media Library Only Showing Images

For other types of files, I then click All Types, which shows a reverse chronological list of all recently uploaded files (older files can be found through the Search Media field). I then click on the Show link associated with a given file (most likely, the most recent upload, which is the first in the list).

Second Attach Button (Screenshot)
Screenshot of the second “Attach” Button

Then, finally, the final Attach button shows up.

Clicking it, the file is attached to the current post, which was the reason behind the whole process. Thanks to both gde and Attachments, that file is then displayed along with the rest of the syllabus entry.

It only takes a matter of seconds to minutes, to attach a file (depending on filesize, connection speed, etc.). Not that long. And the media library can be very useful in many ways. But I just imagine myself explaining the process to instructors and other people submitting syllabi for inclusion the the database.

Far from ideal.

A much easier process is the one of adding files by pasting a file URL in a field. Which is exactly what I’ve added as a possibility for a syllabus’s main document (say, the PDF version of the syllabus).

Course Data Screenshot
Screenshot of the Course Data Box

Passing that URL to gde, I can automatically display the document in the document page, as I’m doing with attachments from the media library.  The problem with this, obviously, is that it requires a public URL for the document. The very same “media library” can be used to upload documents. In fact, copying the URL from an uploaded file is easier than finding the “Attach” button as explained previously. But it makes the upload a separate process on the main site. A process which can be taught fairly easily, but a process which isn’t immediately obvious.

I might make use of a DropBox account for just this kind of situation. It’s also a separate process, but it’s one which may be easier for some people.

In the end, I’ll have to see with users what makes the most sense for them.

In the past, I’ve used plugins like  Contact Form 7 (CF7), by Takayuki Miyoshi, and Fast Secure Contact Form (FSCF)  by Mike Challis to try and implement something similar. A major advantage is that they allow for submissions by users who aren’t logged in. This might be a dealmaking feature for either FSCF or CF7, as I don’t necessarily want to create accounts for everyone who might submit a syllabus. Had issues with user registration, in the past. Like attachments, onboarding remains an issue for a lot of people. Also, thanks to yet other plugins like Michael Simpson’s Contact Form to Database (CFDB), it should be possible to make form submissions into pending items in the syllabus database. I’ll be looking into this.

Another solution might be Gravity Forms. Unlike the plugins I’ve mentioned so far, it’s a commercial product. But it sounds like it might offer some rather neat features which may make syllabus submission a much more interesting process. However, it’s meant for a very different use case, which has more to do with “lead data management” and other business-focused usage. I could innovate through its use. But there might be more appropriate solutions.

As is often the case with WordPress, the “There’s a plugin for that” motto can lead to innovation.  Even documenting the process (by blogging it) can be a source of neat ideas.

A set of ideas I’ve had, for this syllabus database, came from looking into the Pods CMS Framework for WordPress. Had heard about Pods CMS through the WordCast Conversations podcast. For several reasons, it sent me on an idea spree and, for days, I was taking copious notes about what could be done. Not only about this syllabus database but about a full “learning object repository” built on top of WordPress. The reason I want to use WordPress is that, not only am I a “fanboi” of Automattic (the organization behind WordPress) but I readily plead guilty to using WordPress as a Golden Hammer. There are multiple ways to build a learning object repository. (Somehow, I’m convinced that some of my Web developing friends that Ruby on Rails is the ideal solution.) But I’ve got many of my more interesting ideas through looking into Pods CMS, a framework for WordPress and I don’t know the first thing about RoR.

Overall, Pods CMS sounds like a neat approach. Its pros and cons make it sound like an interesting alternative to WordPress’s custom post types for certain projects, as well as a significant shift from the main ways WordPress is used. During WordCamp Montreal, people I asked about it were wary of Pods. I eventually thought I would wait for version 2.0 to come out before investing significant effort in it.

In the meantime, what I’ve built is a useful base knowledge of how to use WordPress as a content database.

Can’t wait to finish adding features and fixing bugs, so I can release it to the academic organization. I’m sure they’ll enjoy it.

Even if they don’t ever use it, I’ve gained a lot of practical insight into how to do such things. It may be obvious to others but it does wonders to my satisfaction levels.

I’m truly in flow!

No Office Export in Keynote/Numbers for iPad?

To be honest, I’m getting even more excited about the iPad. Not that we get that much more info about it, but:

For one thing, the Pages for iPad webpage is explicitly stating Word support:

Attach them to an email as Pages files for Mac, Microsoft Word files, or PDF documents.

Maybe this is because Steve Jobs himself promised it to Walt Mossberg?
Thing is, the equivalent pages about Keynote for iPad and about Numbers for iPad aren’t so explicit:

The presentations you create in Keynote on your iPad can be exported as Keynote files for Mac or PDF documents

and…

To share your work, export your spreadsheet as a Numbers file for Mac or PDF document

Not a huge issue, but it seems strange that Apple would have such an “export to Microsoft Office” feature on only one of the three “iWork for iPad” apps. Now, the differences in the way exports are described may not mean that Keynote won’t be able to export to Microsoft PowerPoint or that Numbers won’t be able to export to Microsoft Excel. After all, these texts may have been written at different times. But it does sound like PowerPoint and Excel will be import-only, on the iPad.

Which, again, may not be that big an issue. Maybe iWork.com will work well enough for people’s needs. And some other cloud-based tools do support Keynote. (Though Google Docs and Zoho Show don’t.)

The reason I care is simple: I do share most of my presentation files. Either to students (as resources on Moodle) or to whole wide world (through Slideshare). My desktop outliner of choice, OmniOutliner, exports to Keynote and Microsoft Word. My ideal workflow would be to send, in parallel, presentation files to Keynote for display while on stage and to PowerPoint for sharing. The Word version could also be useful for sharing.

Speaking of presenting “slides” on stage, I’m also hoping that the “iPad Dock Connector to VGA Adapter” will support “presenter mode” at some point (though it doesn’t seem to be the case, right now). I also dream of a way to control an iPad presentation with some kind of remote. In fact, it’s not too hard to imagine it as an iPod touch app (maybe made by Appiction, down in ATX).

To be clear: my “presentation files” aren’t really about presenting so much as they are a way to package and organize items. Yes, I use bullet points. No, I don’t try to make the presentation sexy. My presentation files are acting like cue cards and like whiteboard snapshots. During a class, I use the “slides” as a way to keep track of where I planned the discussion to go. I can skip around, but it’s easier for me to get at least some students focused on what’s important (the actual depth of the discussion) because they know the structure (as “slides”) will be available online. Since I also podcast my lectures, it means that they can go back to all the material.

I also use “slides” to capture things we build in class, such as lists of themes from the readings or potential exam questions.  Again, the “whiteboard” idea. I don’t typically do the same thing during a one-time talk (say, at an unconference). But I still want to share my “slides,” at some point.

So, in all of these situations, I need a file format for “slides.” I really wish there were a format which could work directly out of the browser and could be converted back and forth with other formats (especially Keynote, OpenOffice, and PowerPoint). I don’t need anything fancy. I don’t even care about transitions, animations, or even inserting pictures. But, despite some friends’ attempts at making me use open solutions, I end up having to use presentation files.

Unfortunately, at this point, PowerPoint is the de facto standard for presentation files. So I need it, somehow. Not that I really need PowerPoint itself. But it’s still the only format I can use to share “slides.”

So, if Keynote for iPad doesn’t export directly to PowerPoint, it means that I’ll have to find another way to make my workflow fit.

Ah, well…

Personal Devices

Still thinking about touch devices, such as the iPod touch and the rumoured “Apple Tablet.”

Thinking out loud. Rambling even more crazily than usual.

Something important about those devices is the need for a real “Personal Digital Assistant.” I put PDAs as a keyword for my previous post because I do use the iPod touch like I was using my PalmOS and even NewtonOS devices. But there’s more to it than that, especially if you think about cloud computing and speech technologies.
I mentioned speech recognition in that previous post. SR tends to be a pipedream of the computing world. Despite all the hopes put into realtime dictation, it still hasn’t taken off in a big way. One reason might be that it’s still somewhat cumbersome to use, in current incarnations. Another reason is that it’s relatively expensive as a standalone product which requires some getting used to. But I get the impression that another set of reasons has to do with the fact that it’s mostly fitting on a personal device. Partly because it needs to be trained. But also because voice itself is a personal thing.

Cloud computing also takes a new meaning with a truly personal device. It’s no surprise that there are so many offerings with some sort of cloud computing feature in the App Store. Not only do Apple’s touch devices have limited file storage space but the notion of accessing your files in the cloud go well with a personal device.
So, what’s the optimal personal device? I’d say that Apple’s touch devices are getting close to it but that there’s room for improvement.

Some perspective…

Originally, the PC was supposed to be a “personal” computer. But the distinction was mostly with mainframes. PCs may be owned by a given person, but they’re not so tied to that person, especially given the fact that they’re often used in a single context (office or home, say). A given desktop PC can be important in someone’s life, but it’s not always present like a personal device should be. What’s funny is that “personal computers” became somewhat more “personal” with the ‘Net and networking in general. Each computer had a name, etc. But those machines remained somewhat impersonal. In many cases, even when there are multiple profiles on the same machine, it’s not so safe to assume who the current user of the machine is at any given point.

On paper, the laptop could have been that “personal device” I’m thinking about. People may share a desktop computer but they usually don’t share their laptop, unless it’s mostly used like a desktop computer. The laptop being relatively easy to carry, it’s common for people to bring one back and forth between different sites: work, home, café, school… Sounds tautological, as this is what laptops are supposed to be. But the point I’m thinking about is that these are still distinct sites where some sort of desk or table is usually available. People may use laptops on their actual laps, but the form factor is still closer to a portable desktop computer than to the kind of personal device I have in mind.

Then, we can go all the way to “wearable computing.” There’s been some hype about wearable computers but it has yet to really be part of our daily lives. Partly for technical reasons but partly because it may not really be what people need.

The original PDAs (especially those on NewtonOS and PalmOS) were getting closer to what people might need, as personal devices. The term “personal digital assistant” seemed to encapsulate what was needed. But, for several reasons, PDAs have been having a hard time. Maybe there wasn’t a killer app for PDAs, outside of “vertical markets.” Maybe the stylus was the problem. Maybe the screen size and bulk of the device weren’t getting to the exact points where people needed them. I was still using a PalmOS device in mid-2008 and it felt like I was among the last PDA users.
One point was that PDAs had been replaced by “smartphones.” After a certain point, most devices running PalmOS were actually phones. RIM’s Blackberry succeeded in a certain niche (let’s use the vague term “professionals”) and is even beginning to expand out of it. And devices using other OSes have had their importance. It may not have been the revolution some readers of Pen Computing might have expected, but the smartphone has been a more successful “personal device” than the original PDAs.

It’s easy to broaden our focus from smartphones and think about cellphones in general. If the 3.3B figure can be trusted, cellphones may already be outnumbering desktop and laptop computers by 3:1. And cellphones really are personal. You bring them everywhere; you don’t need any kind of surface to use them; phone communication actually does seem to be a killer app, even after all this time; there are cellphones in just about any price range; cellphone carriers outside of Canada and the US are offering plans which are relatively reasonable; despite some variation, cellphones are rather similar from one manufacturer to the next… In short, cellphones already were personal devices, even before the smartphone category really emerged.

What did smartphones add? Basically, a few PDA/PIM features and some form of Internet access or, at least, some form of email. “Whoa! Impressive!”

Actually, some PIM features were already available on most cellphones and Internet access from a smartphone is in continuity with SMS and data on regular cellphones.

What did Apple’s touch devices add which was so compelling? Maybe not so much, apart from the multitouch interface, a few games, and integration with desktop/laptop computers. Even then, most of these changes were an evolution over the basic smartphone concept. Still, it seems to have worked as a way to open up personal devices to some new dimensions. People now use the iPhone (or some other multitouch smartphone which came out after the iPhone) as a single device to do all sorts of things. Around the World, multitouch smartphones are still much further from being ubiquitous than are cellphones in general. But we could say that these devices have brought the personal device idea to a new phase. At least, one can say that they’re much more exciting than the other personal computing devices.

But what’s next for personal devices?

Any set of buzzphrases. Cloud computing, speech recognition, social media…

These things can all come together, now. The “cloud” is mostly ready and personal devices make cloud computing more interesting because they’re “always-on,” are almost-wearable, have batteries lasting just about long enough, already serve to keep some important personal data, and are usually single-user.

Speech recognition could go well with those voice-enabled personal devices. For one thing, they already have sound input. And, by this time, people are used to seeing others “talk to themselves” as cellphones are so common. Plus, voice recognition is already understood as a kind of security feature. And, despite their popularity, these devices could use a further killer app, especially in terms of text entry and processing. Some of these devices already have voice control and it’s not so much of a stretch to imagine them having what’s needed for continuous speech recognition.

In terms of getting things onto the device, I’m also thinking about such editing features as a universal rich-text editor (à la TinyMCE), predictive text, macros, better access to calendar/contact data, ubiquitous Web history, multiple pasteboards, data detectors, Automator-like processing, etc. All sorts of things which should come from OS-level features.

“Social media” may seem like too broad a category. In many ways, those devices already take part in social networking, user-generated content, and microblogging, to name a few areas of social media. But what about a unified personal profile based on the device instead of the usual authentication method? Yes, all sorts of security issues. But aren’t people unconcerned about security in the case of social media? Twitter accounts are being hacked left and right yet Twitter doesn’t seem to suffer much. And there could be added security features on a personal device which is meant to really integrate social media. Some current personal devices already work well as a way to keep login credentials to multiple sites. The next step, there, would be to integrate all those social media services into the device itself. We maybe waiting for OpenSocial, OpenID, OAuth, Facebook Connect, Google Connect, and all sorts of APIs to bring us to an easier “social media workflow.” But a personal device could simplify the “social media workflow” even further, with just a few OS-based tweaks.

Unlike my previous, I’m not holding my breath for some specific event which will bring us the ultimate personal device. After all, this is just a new version of my ultimate handheld device blogpost. But, this time, I was focusing on what it means for a device to be “personal.” It’s even more of a drafty draft than my blogposts usually have been ever since I decided to really RERO.

So be it.

Sharing Tool Wishlist

The following is an edited version of a wishlist I had been keeping on the side. The main idea is to define what would be, in my mind, the “ultimate social bookmarking system.” Which, obviously, goes way beyond social bookmarking. In a way, I even conceive of it as the ultimate tool for sharing online content. Yes, it’s that ambitious. Will it ever exist? Probably not. Should it exist? I personally think so. But I may be alone in this. Surely, you’ll tell me that I am indeed alone, which is fine. As long as you share your own wishlist items.

The trigger for my posting this is that someone contacted me, asking for what I’d like in a social bookmarking system. I find this person’s move quite remarkable, as a thoughtful strategy. Not only because this person contacted me directly (almost flattering), but because such a request reveals an approach to listening and responding to people’s needs that I find lacking in some software development circles.

This person’s message served as a prompt for my blogging this, but I’ve been meaning to blog this for a while. In fact, my guess is that I created a first version of this wishlist in 2007 after having it on my mind for a while before that. As such, it represents a type of “diachronic” or “longitudinal” view of social bookmarking and the way it works in the broader scheme of social media.

Which also means that I wrote this before I heard about Google Wave. In fact, I’m still unclear about Google Wave and I’ll need to blog about that. Not that I expect Wave to fulfill all the needs I set up for a sharing tool, but I get the impression that Google is finally putting some cards on the table.

The main part of this post is in outline form. I often think through outlines, especially with such a type of notes. I fully realize that it may not be that clear, as a structure, for other people to understand. Some of these bullet points cover a much broader issue than what they look like. But the overall idea might be fairly obvious to grasp, even if it may sound crazy to other people.

I’m posting this to the benefit of anyone who may wish to build the killer app for social media. Of course, it’s just one man’s opinion. But it’s my entitled opinion.

Concepts

What do we share online?

  • “Link”
  • “Page”
  • Identified content
  • Text
    • Narrative
    • Contact information
    • Event description
  • Contact information
  • Event invitation
  • Image
  • Recording
  • Structured content
  • Snippet
  • Access to semi-private content
  • Site’s entry point

Selective sharing

Private
  • Archiving
  • Cloud access
Individually shared
  • “Check this out”
  • Access to address book
  • Password protection
  • Specialization/expertise
  • Friendship
Group shared
  • Shared interests (SIG)
  • Collaboration (task-based)
Shared through network
  • Define identity in network
  • Semi-public
Public
  • Publishing
  • Processed
  • Reading lists

Notetaking

  • Active reading
  • Anchoring text
  • Ad hoc list of bookmarks
  • “Empty URL”
    • Create container/page
    • Personal notes

Todos

  • To read
  • To blog
  • To share
  • To update
  • Projects
    • GTD
    • Contexts
  • Add to calendar (recognized as event)

Outlining/Mindmapping

  • Manage lists of links
  • Prioritize
  • Easily group

Social aspects of sharing

  • Gift economy
  • Personal interaction
  • Trust
  • Hype
  • Value
  • Customized

Cloud computing

  • Webware
  • “Online disk”
  • Without download
  • Touch devices
  • Edit online

Personal streaming

  • Activities through pages
  • Logging
  • Flesh out personal profile

Tagging

  • “Folksonomy”
  • Enables non-hierarchical structure
  • Semantic fields
  • Related tags
  • Can include hierarchy
  • Tagclouds define concept map

Required Features

Crossplatform, crossbrowser

  • Browser-specific tools
  • Bookmarklets
  • Complete access through cloud
Keyboard shortcuts
  • Quick add (to account)
  • Vote
  • Bookmark all tabs (à la Flock)
  • Quick tags

Related pages

Recommended
  • Based on social graph
  • Based on tags
  • Based on content
  • Based on popularity
  • Pointing to this page

Quickly enter links

  • Add in place (while editing)
  • Similar to “spell as you type”
  • Incremental search
  • Add full link (title, URL, text, metadata)

Archiving

  • Prevent linkrot
  • Prepare for post-processing (offline reading, blogging…)
  • Enable bulk processing
  • Maintain version history
  • Internet Archive

Automatic processing

  • Tags
  • Summary
  • Wordcount
  • Reading time
  • Language(s)
  • Page structure analysis
  • Geotagging
  • Vote

Thread following

  • Blog comments
  • Forum comments
  • Trackbacks
  • Pings

Exporting

All
  • Archiving
  • Prepare for import
  • Maintain hierarchy
Selected
  • Tag
  • Category
  • Recently used
  • Shared
  • Site homepage
  • Blogroll
  • Blogs
Formats
  • Other services
  • HTML
  • RSS
  • OPML
  • Widget
Features
  • Comments
  • Tags
  • Statistics
  • Content

Offline processing

  • Browser-based
  • Device based
  • Offline archiving
  • Include content
  • Synchronization

Microblogging support

  • Laconi.ca/Identi.ca
  • Twitter
  • Ping.fm
  • Jaiku

Fixed/Static URL

  • Prevent linkrot
  • Maintain list for same page
  • Short URLs
  • Automatically generated
  • Expansion on mouseover
  • Statistics

Authentication

  • Use of resources
  • Identify
  • Privacy
  • Unnecessary for basic processing
  • Sticks (no need to login frequently)
  • Access to contacts and social graph
  • Multiple accounts
    • Personal/professional
    • Contexts
    • Group accounts
  • Premium accounts
    • Server space
    • Usage statistics
    • Promotion
  • Support
    • OpenID
      • As group login
    • Google Accounts
    • Facebook Connect
    • OAuth

Integration

  • Web history
  • Notebook
  • Blogging platform
  • Blog editor
  • Microblogging platform
  • Logbook
  • General purpose content editor
  • Toolbar
  • URL shortening
  • Address book
  • Social graph
  • Personal profile
  • Browser
    • Bookmarks
    • History
    • Autocomplete
  • Analytics
  • Email
  • Search
    • Online
    • Offline

Related Tools

  • Diigo
  • WebCitation
  • Ping.fm
  • BackType
  • Facebook share
  • Blog This
  • Link This
  • Share this
  • Digg
  • Plum
  • Spurl
  • CoComments
  • MyBlogLog
  • TwtVite
  • Twistory
  • Windows Live Writer
  • Magnolia
  • Stumble Upon
  • Delicious
  • Google Reader
  • Yahoo Pipes
  • Google Notebook
  • Zoho Notebook
  • Google Browser Sync
  • YouTube
  • Flock
  • Zotero

Relevant Blogposts

Waiting for Other Touch Devices?

Though I’m interpreting Apple’s current back-to-school special to imply that we might not see radically new iPod touch models until September, I’m still hoping that there will be a variety of touch devices available in the not-so-distant future, whether or not Apple makes them.

Turns out, the rumour mill has some items related to my wish, including this one:

AppleInsider | Larger Apple multi-touch devices move beyond prototype stage

This could be excellent news for the device category as a whole and for Apple itself. As explained before, I’m especially enthusiastic about touch devices in educational contexts.

I’ve been lusting over an iPod touch since it was announced. I sincerely think that an iPod touch will significantly enhance my life. As strange as it may sound, especially given the fact I’m no gadget freak, I think frequently about the iPod touch. Think Wayne, in Wayne’s World 2, going to a music store to try a guitar (and being denied the privilege to play Stairway to Heaven). That’s almost me and the iPod touch. When I go to an Apple Store, I spend precious minutes with a touch.

Given my current pattern of computer use, the fact that I have no access to a laptop at this point, and the availability of WiFi connections at some interesting spots, I think an iPod touch will enable me to spend much less time in front of this desktop, spend much more time outside, and focus on my general well-being.

One important feature the touch has, which can have a significant effect on my life, is instant-on. My desktop still takes minutes to wake up from “Stand by.” Several times during the day, the main reason I wake my desktop is to make sure I haven’t received important email messages. (I don’t have push email.) For a number of reasons, what starts out as simple email-checking frequently ends up being a more elaborate browsing session. An iPod touch would greatly reduce the need for those extended sessions and let me “do other things with my life.”

Another reason a touch would be important in my life at this point is that I no longer have access to a working MP3 player. While I don’t technically need any portable media player to be happy, getting my first iPod just a few years ago was an important change in my life. I’ll still miss my late iRiver‘s recording capabilities, but it’s now possible to get microphone input on the iPod touch. Eventually, the iPod touch could become a very attractive tool for fieldwork recordings. Or for podcasting. Given my audio orientation, a recording-capable iPod touch could be quite useful. Even more so than iPod Classic with recording capabilities.

There are a number of other things which should make the iPod touch very useful in my life. A set of them have to do with expected features and applications. One is Omni Group’s intention to release their OmniFocus task management software through the iPhone SDK. As an enthusiastic user of OmniOutliner for most of the time I’ve spent on Mac OS X laptops, I can just imagine how useful OmniFocus could be on an iPod touch. Getting Things Done, the handheld version. It could help me streamline my whole workflow, the way OO used to do. In other words: OF on an iPod touch could be this fieldworker’s dream come true.

There are also applications to be released for Apple’s Touch devices which may be less “utilitarian” but still quite exciting. Including the Trism game. In terms of both “appropriate use of the platform” and pricing, Trism scores high on my list. I see it as an excellent example of what casual gaming can be like. One practical aspect of casual gaming, especially on such a flexible device as the iPod touch, is that it can greatly decrease stress levels by giving users “something to do while they wait.” I’ve had that experience with other handhelds. Whether it’s riding the bus or waiting for a computer to wake up from stand by, having something to do with your hands makes the situation just a tad bit more pleasant.

I’m also expecting some new features to eventually be released through software, including some advanced podcatching features like wireless synchronization of podcasts and, one can dream, a way to interact directly with podcast content. Despite having been an avid podcast listener for years, I think podcasts aren’t nearly “interactive” enough. Software on a touch device could solve this. But that part is wishful thinking. I tend to do a lot of wishlists. Sometimes, my daydreams become realities.

The cool thing is, it looks as though I’ll be able to get my own touch device in the near future. w00t! 😀

Even if Apple does release new Touch devices, the device I’m most likely to get is an iPod touch. Chances are that I might be able to get a used 8MB touch for a decent price. Especially if, as is expected for next Monday, Apple officially announces the iPhone for Canada (possibly with a very attractive data plan) As a friend was telling me, once Canadians are able to get their hands on an iPhone directly in Canada, there’ll likely be a number of used iPod touches for sale. With a larger supply of used iPod touches and a presumably lower demand for the same, we ca
n expect a lower price.

Another reason I might get an iPod touch is that a friend of mine has been talking about helping me with this purchase. Though I feel a bit awkward about accepting this kind of help, I’m very enthusiastic at the prospect.

Watch this space for more on my touch life. 😉

To a Newbie Blogger

 

Lisamm, who just commented on two of my own blog entries, is asking about blogging:How to Increase Your Blog Hits « Books on the Brain

Blogging is new to me. I haven’t learned the lingo. I don’t know the etiquette. I don’t know what a meme is (Do I want one? Do I need one? Is it fattening?) What is the deal with bloggers giving other bloggers awards? No one has challenged me, or tagged me, or whatever it is people do. I’m totally winging it.Someone told me recently that I could increase my blog hits with an intriguing title on my entries. Hmmmm. This one might get noticed. I guess we’ll see how it works.Speaking of blog hits, I seem to be getting a lot (I guess). What is a lot? How many do other people get?What is up with my obsessive desire to check my stats? How I love to see the blog stat graph go up, up, up. Is this normal? Why do I care? Do other bloggers do that? Will the obsession wear off soon????Experienced bloggers, I would love to hear from you. I’m hoping my insanity is only temporary.

My answers:Simply put, meme is an idea which propagates itself. Think “viral marketing.” Among bloggers, it often refers to a kind of tag-like game by which one blogger asks other blogger to post about something (say, eight random things about yourself) and to do the same with other people. It’s a fun (and non-fattening) way to connect with fellow bloggers.Awards are a bit similar. Bloggers tend to enjoy kudos, praises, marks of recognition, etc. Some awards (the “thinking blog” one is an example) are given as a way to connect bloggers who perceive to be of the same calibre, in one dimension or another.Intriguing titles do help increase traffic and bloggers are often (semi-secretly) proud of their clever titles. In this sense, we’re no different from journalists! An issue with titles, though, is that the type of traffic it increases might be the type of headline-reading which does relatively little good to a blog. My best example is my Facebook Celebs and Fakes post which is getting good traffic, apparently for the wrong reasons… ;-)As anyone can guess, “a lot” of blog hits is a really relative measure. Some bloggers get thousands of hits every single day, others get a few hundreds a month. From November, 2006 to February, 2007, I was getting an average of about 180 hits a day (with a peak at 307 hits in a single day). Since then, I’ve been down to about 100 to 130 hits a day. I still consider this to be a lot of hits, especially when I compare it to the number of comments I get. I also notice (by looking at the WordPress.com statistics page) that many of the hits I get come from Web searches about terms for which my entries aren’t that relevant (cf. “celebs and fakes” above).Many bloggers are obsessed by stats even if they know that they don’t tell much of a story. Bloggers often discuss measurement tools, especially if their blogging has a financial impact. Personally, I do check my blog stats regularly but I don’t really care about the numbers. It’s more of a way to observe tendencies, to learn more about effects of blogging, and as a way to assess differences between blog entries. Besides, the way WordPress.com works, the stats page is where incoming links are displayed. Now, having said all this, it’s probably true that I get a pleasant feeling when I see my numbers going up and I probably was slightly disappointed when they dropped. But those feelings are really transient.Speaking of graphs going up. It seems to be a common effect among bloggers that a site’s traffic will increase pretty regularly, regardless of what the blogger does. At least, that’s what I figured until my March, 2007 drop. I’m still a bit puzzled about this, actually.As for insanity, I think it comes with the territory.Main point of blogging is: blog the way you want to blog. Have fun, experiment with things, don’t take yourself too seriously. Blogging is just a system for making content available publicly. There aren’t set rules about blogging. In other words, don’t listen to any piece of advice.Now, a few words of advice. ;-)It’s probably a good idea not to make too much of stats. They’re fun to look at but they don’t say much about blogs. A blog with a small but dynamic reader-base is often better than a blog getting a lot of hits. Technorati and other measures of influence are similarly misleading as blogging isn’t “about that,” for most people. Yes, there are “A-list bloggers” out there (blogging celebrities, very influential bloggers). But starting a blog to become an A-list blogger is like learning a new language to become a best-selling author in that language.Use the bookmarklet in your blogging system. I can’t paste the WordPress.com one because WordPress.com doesn’t accept JavaScript in blog entries (for security reasons, allegedly), but it’s the one at the bottom of the blog writing page. I personally find those bookmarklets to be among the best features available anywhere. When you see a web page you want to blog about, select a piece of text and click on the bookmarklet from your bookmark bar. You then have a new blog entry with the title of the page, a link to that page, and the portion of text you selected. This part is so ingrained in my blogging habits that I often look for a page to start an entry from instead of creating a blank entry. That part may sound silly but it makes sense in my workflow.Speaking of workflow, it’s probably a good idea to take on tabbed browsing if you haven’t done so already. One blogging use of browser tabs is as placeholders for would-be blog entries. Kind of like a “to do” list for blogging. Notice something potentially bloggable? Keep that tab open so you can come back to it when you have time. I know other bloggers are doing this too because some talk about the number of tabs remaining in their browsers.Which leads me to one of the main hazards of blogging: you end up thinking about all the things you could say and you never find time to do much of it. As a general concept, “Information Overload” refers to something similar. Hence the need to adopt a blogging strategy. Personally, I haven’t find the best way to do it yet but I am decreasing my “blogload,” somehow. In fact, blogging itself does make me more efficient as it provides a central place for putting things I would otherwise repeat. (Though I end up with something like seven blogs…) So, my advice here would be something like: think about ways to control the number of things you want to blog about.One way to think about it is that, with “big issues,” other people have certainly blogged about them. Though there’s something intimidating about this, it also means that you may not need to blog about something if it’s likely to become common knowledge soon.Many bloggers seem to crave the latest thing. They want to “scoop” a story, be the first to blog it. Though it pains me to do so, I must say that I’m probably as guilty of this as the next blogger. Problem with this is that it requires a lot of effort to keep up with everything which is happening. And while being the first to blog about something might be the best way to get incredible traffic, the outcome may not be worth the effort.I try to take a longer view on things. If I can, I like to bring multiple items together in the same blog entry. Kind of like a “roundup,” if I can. It’s also a lot of effort, but it’s less likely to make you crazy than the quest for the first post.This all reminds me of a blog post I read about types of blog posts. IIRC, it was a presentation file and it had some things to say about the effectiveness of those posts. Though this kind of thinking makes a lot of sense for media-oriented bloggers, there’s a lot more to blogging than trying to build readership.Which leads me to the more social aspects of blogging. In the past several months, my blogging activities have probably decreased as my Facebook (Fb) activities increased. While Fb and blogging are quite different from one another, connections are quite clear. Posting notes or other items on Fb is almost exactly like a simplified form of blogging.There are disadvantages to posting things on Facebook.com, by comparison with blogging. There aren’t (AFAICT) RSS feeds for Fb Notes and Posted Items. Only your Fb friends can see (and comment on) things you post on Facebook. There isn’t a WYSIWYG editor for Fb notes (though you can use basic HTML). Fb notes don’t have categories or tags (though you can tag Fb friends). And you don’t get neat stats.But there are nice things about Fb notes and posted items. Since those items are seen by people who already know you, it’s often easier to get feedback through Facebook posted items than through a (public) blog. And because posted items are put on your Facebook profile, there’s a special connection between your items and your Facebook persona. Not to mention that blog entries can be posted directly on Facebook, which kills two birds with one stone.To get back to social dimensions of blogging… No matter how much bloggers like to talk about blogging as a social form of writing, it tends to be one-to-many, not many-to-many. In fact, most people who leave comments on blog entries are bloggers themselves. Though blogging is very “democratic,” it’s not the most efficient community-building tool available online.Anyhoo…I do tend to ramble a lot. There’s a lesson about blogging, somewhere… ;-)

Back in Mac: GTD Edition

Part of the series.
(Series created on August 13, 2011, and applied retroactively…)

Catherine got a MacBook (Combo Drive) last week. Though it’s her computer, I’ve been using it pretty extensively in the past few days. And it’s changing my life for the better.

Long story short. My iBook (Dual USB) from 2001 went kaput in December 2005. In a hurry to get a new computer and being a bit short on cash, I ended up a few weeks later with a refurbished eMachines desktop running XP. Though my original dissatisfaction with the machine probably had to do with the lack of RAM, I still thought fondly of my Mac OS X days and was longing for the day I could use a Mac again. Now that I can, I know why I missed Mac OS X so much.

At this point, I come to think that those people who love XP machines are those who like to play fast-paced games and/or to pirate software. I love computers for other reasons so these don’t apply to me.

Contrary to what is said in the Justin Long and John Hodgman ads, I tend to see Mac OS X as a way to get things done.

Yes, Getting Things Done is the title of a best-selling book by David Allen and has become a buzzphrase in recent years. I was indirectly influenced by some ideas from the book but I prefer to use my own methods of time-management. Still, I can easily associate the Mac with GTD the concept, if not GTD the book (which I haven’t had the time to read).

This past weekend, I read a “Final Assessment” on a Mac OS X application called iGTD. It’s a rather straightforward tool for managing tasks. Kind of a “to-do list on steroids.”

I tried iGTD for a few minutes last night. Neat app and it might end up being useful. I’ll give it more thought as time goes on but as I need to switch between different computers, I don’t think it’ll become my ultimate solution.

Trying iGTD was also a chance for me to try QuickSilver again, after all this time spent on an XP machine. I really like QS and I can really see how it fits in the GTD frame. It’s a convenient way to accomplish a large number of tasks very efficiently. It’s not the fact that it saves you a few seconds at a time which matters. It’s the fact that it makes it easy to not think about what you want to accomplish. Kind of what the QuickSilver people call “Wei Wu Wei – Act Without Doing.” QS is really a Mac OS X thing. It only works on Macs and it really fits in the Mac-based methodology for computer use.

Another example of Mac OS X apps to get things done: OmniOutliner. This is probably the single app which I most missed on XP. Sure, there are outliners on XP. But none of them made my workflow as smooth as OO did. I tried NetManage EccoPro and eventually abandoned it. EccoPro is very powerful and it was an ok replacement for the actual outlining functions but the fact that it hasn’t been developed in ages means that it lacks the kind of features which really make things go smoothly.  In other words, EccoPro is not that compatible with the Mac way of just doing things.

Things are so easy in my OO workflow! For instance, while preparing for courses, I would use OO to take rough notes while reading course material. (Actually, I took many of these notes on a PalmOS device to transfer to OO. That part was never so seamless and I tried everything to improve it but it was a vain attempt. Transferring from Palm to EccoPro is a bit simpler.) In OO, transforming raw notes into course outlines was extremely easy and efficient. I could then easily transform those outlines into printable lesson plans and slides using LaTeX, Keynote, PowerPoint, or RTF. All told, I could transform rough notes into course material in less than 10 minutes without thinking much about what I was doing. Made everything so easy that it really took me a while to adapt my workflow to XP. In fact, I can’t say I ever did. Sure, XP people will say that I could in fact do the same thing thing on XP, that I’m just an Apple fanboy. The fact that the PalmOS integration with OS X wasn’t so smooth seems to prove that point. But the key point here is not about my ability to do things. It’s about the flow part of workflow. Every method I used on XP to accomplish the same tasks eventually worked and I became quite good at them. I probably ended up spending just a few minutes more on any of these tasks. But nothing was really smooth. I could never be mindless about the process. I constantly had to make sure everything was working.

As it turns out OO also fits in the GTD frame. In fact, the first time I heard of GTD was probably on the OO user mailing-list. Some people there wanted the ultimate GTD solution based on OO. OO didn’t have a lot of GTD-savvy features but it seems that it could fit in the GTD methodology overall.

One step further, I think Mac OS X as a whole fits in the GTD frame.

But I probably will never jump on the GTD bandwagon. AFAICT, GTD is mostly based on sorting tasks and tracking them. Again, “to-do list on steroids.” But, contrary to my mother and to my wife, I’m usually no good with to-do lists. I keep accumulating stuff in them and end up more frustrating. Centralized systems work better for me so I do a lot on Gmail. Those who don’t know me extremely well certainly think that I’m completely disorganized. But I’ve found ways to organize myself through apparent chaos. In short, I’m messy and I’m proud of it. But I do respond to the very concept of “just getting things done already” which seems to be associated with GTD-friendly applications. In this case: iGTD, QS, OO, and… Mac OS X.

It sure is good to be back in Mac!

For Those Who Don't Grok Blogging

A friend sent me this link:

How to Dissuade Yourself from Becoming a Blogger – WikiHow
Cute, but not that insightful. Continue reading For Those Who Don't Grok Blogging

Blogging Spree

Weeeeee!

My, oh my!

It might be the Back to School mood, or it might be something (I was advised to write more, for personal reasons) but it seems like I’m going through an intense blogging phase!

Man!

You know what? It feels gooood!

Several of my latest entries were in fact drafted a while ago.

And this one is a collection of short entries that could have been expanded entries.
Late August Quickies

So, all of these aren’t new entries. But publishing them helps me in many ways. As silly as it may sound, these drafted entries were starting to become a burden on me. So, publishing them feels like lifting that burden. This feeling is behind many people’s “to do” lists. My mother talks about that feeling you get when you cross out an item in your “to do” list. It’s hard to describe but it’s easy to understand if you’ve ever felt it. In my family, “to do” lists are called “vélo (faire du),” an example of our oikolect. It comes from the French “bike (to do).” My older brother noticed that item on one of my mother’s “to do” lists lying around and found it pretty funny. It stuck. My family also has a term for the opposite of procrastination, “fullfur” (/fUlfyr/ in IPA). It comes from English “full,” which has been used by young French-speakers in Eastern Quebec to mean pretty much the same thing as “totally” as used by U.S. youths, and “au fur et à mesure” in French, which means pretty much the same thing as English “as you go.” Both of these terms go well with my family’s ideas about time-management. Not that we all follow these ideas. But I have been enculturated into these ideas.

Anyhoo (!), back to blogging sprees.

They’re quite therapeutic. Maybe because they stimulate da buh-rain.

And I notice a number of things about writing and blogging strategies. Seems like blogging really works best if it’s kept spontaneous. But going back to previous entries can be pretty satisfying too.

There’s pretty much no reason to wait before posting an entry. RERO!

As I expected, writing a lot without too much self-censorship really helps to develop writing abilities. Not I’m necessarily that proud of my writing but I do write a lot and some people have complimented me for my writing style. Especially as a non-native speaker of N-guh-lish.

Editing can be easy and fun if enough time has passed since the last revision. It can be a b*tch when it’s done right away.

The entries I’m most proud of (yes, there are some) don’t tend to be the most read ones or the ones garnering comments. But they feel really good to write. In a way, the fact that they’re not read so much encourages me to stay humble, which is helpful to any writer.

Linking is fun. So is playing with categories/labels/tags. Actually, it’s quite likely that nobody notices my use of categories as counterpoint to my entries, but I do it for fun anyway.

My growing obsession with getting more comments might die out pretty soon. And as soon as it does, I will be getting so many comments that I’ll have to moderate my blogs!

There’s a chain reaction or domino effect to blogging. You write about one thing which makes you want to blog about another thing, etc.  So you go on a blogging spree during which you want to post 25 entries a day. Eventually, your blogging fervor peters out and you only blog a few times a month. It’s quite likely that getting comments has a large influence on whether you’re on a blogging spree or not.

Given the way blog entries are read, it doesn’t seem to matter much if an entry’s structure is tidy or “chevelue.” Good thing too as my thoughts tend to be pretty scattered. (Yes, really!)

Erm, and, it’s actually hard to press that publish button, sometimes.