The Second Order Effect

Author Archive

Designing a new workflow for reading/saving links.

by Rizwan Kassim on May.09, 2010, under Being a better me

It’s been a crazy time in my head, reading tons of Merlin Mann, and thinking bit thoughts as to who I want to be, what kind of work I want to do, and how I want to do it over this next five years.

It’s still all a jumble, but I’m slowly getting it down, written, for examination.

One workflow that has to be managed somehow : My links.

Each browser on my Macbook Pro (yippie! New MBP!) has at least thirty links saved. Firefox, with it’s impressive profile support, has seven profiles, most of which have a flood of links of some sort. My increasing desperation at opening a browser group should explain the names of my later profiles, including “Lean & Mean”, “Don’t keep any tabs open” and my favorite “Jesus!”. (This last profile is my current one, and is numbering about 60 tabs in 7 windows.)

Tab explosions come from the following :

  • Visiting Daring Fireball, Hacker News, Slashdot, 43 Folders. Gizmodo and Lifehacker add to the linkspam as well, but I do a decent job of ignoring those sites, especially after reading Mann’s essay Better. [This essay, I think, was the final push to actually focus my thinking on the big change.]
  • Any Google attempt of a problem I’m trying to solve. (Since I switch tasks so often, when a task is *somewhat done,* I’ll often move to something else, and stale tabs are left over)
  • Email processing.
  • Any Google attempt on anything interesting to me at the time.

One of the effects of the ‘Next Step,’ as I’m calling whatever set of discrete changes I’m contemplating now, is that I’m going to try to be a lot more disciplined about my curiousity, and stopping the constant indulging of “Oh, that looks neat!” and “Ooh, I want to know that!” (There are reasons, and this isn’t as simple of an idea as it sounds, perhaps more on that later.)

My tab workflow is a symptom of my overall workflow problems, and investing a lot of time fixing this symptom rather than the major problem (now that I’m focusing on that problem) is a distraction, not an advantage. So I’m not going to. But I do need a few more endpoints for the tabs that *do* get opened. Below, a chart of the types of data in my tabs, and what I’ve decided to do with them. (EDIT : I resisted the temptation to make a flowchart here. It’d be nice and all, I could put it up on my wall, but it’d be next to my GTD Workflow map, which is the domintant flowchart in my office, and I want to keep it this way. This data is fine in a table.)

(Hmm. I left this draft at 3:56pm. I return to it at 6:20pm. I’ve sent ten emails, upgraded the backup system for a client, done network debugging, uninstalled a few plugins (and done browser restarts), added plugins to WordPress to allow table editing, called family and purchased Choosy and iStat Menus. *headdesk*)

Anyhow, a chart of links that I can’t act on immediately.

Longer items to read in the future Instapaper
Sites that I think I should watch in the future Google Reader/NetNewsWire
Research for a specific project Evernote file for that particular project
A specific thing I want to do in the short/medium term Omnifocus task
Something I want to hold onto longer – inspiring or important Evernote file
Software/Projects/Articles I’ll find useful for projects in the future (but that aren’t active projects) ?????

So, the big question – what’s the ?????.

I used to use delicious. It’s gone stale, and I fear the data that’s in there now, I kind of feel like starting for scratch. The social functions of it worry me however – it’s a great way of having me be exposed to *more* new links – and I really just don’t need that.

I used to use browser bookmarks all synced by XMarks, but when I dumped in my backlogs of links to sort, and tried to start sorting them, the taxonomy was … massively draining, as well as annoyed at the hybrid tree/tag structure of most browsers bookmarks.

I’m going to start throwing away more links. While I think it’s *awesome* that there’s an HTML5 VNC client, and while I’m never going to remember it’s name, Googling those two words got me there pretty quickly. (I fear that I’ll forget that there’s an HTML5 VNC client in the long term – but I can’t imagine any workflow that has me going to my bookmarks *before* Google … I may have to get used to “if I forget it, I forget it” – a throughly disturbing idea personally, but one that might just be necessary.

Anyhow – anyone love their method of bookmarking/storing links?

1 Comment :, more...

Getting chan_gtalk and res_jabber to work on AsteriskNOW 1.50

by Rizwan Kassim on Apr.23, 2010, under Tech Articles

Some of my Asterisk servers (against all reason, it seems) are AsteriskNOW servers – which recently updated their asterisk16 branch to 1.6.2.6.

chan_gtalk, and res_jabber – modules for installing Jabber and Gtalk access are missing. As I’ve learned, Asterisk Modules have to be built on the exact same platform/compile time switches as the asterisk executable, so the only way I could get these modules was to recompile by source.

I had planned to ditch the AsteriskNOW packages, but I ended up modifying the packages to include these modules instead. These should install (somewhat seamlessly) over your current AsteriskNOW release. (The biggest issue is if you have other modules installed – they’ll have to be rebuilt. For Skype, install the -devel package, then rebuilt Skype from source direct from Digiums site.)

This repackage is a bit of a kludge, and will break ODBC or Speex.

Checkout my Repository – http://mirrors.geekymedia.com/centos/ – for the packages.

Below is a diff of the SPEC file. I told you it was kludgy.

19c19
< %define arelease 1_centos5 --- > %define arelease 2_centos5
23a24,28
> # Disable non functioning modules for -2 arch build
> %define _without_odbc 1
> %define _without_speex 1
>
>
314a320,338
> #  Chan Gtalk/Jabber subpackage
> #
> %{?_without_gtalk:%if 0}
> %{!?_without_gtalk:%if 1}
> %package gtalk
> Summary: Gtalk Jabber Channel module for Asterisk
> Group: Utilities/System
> Provides: asterisk-gtalk
> Provides: asterisk%{astapi}-gtalk
> BuildRequires: iksemel-devel
> Requires: iksemel
> Requires: %{name}-core = %{actversion}-%{release}
>
> %description gtalk
> Asterisk channel plugin for Google Talk, and res plugin for Jabber
> %endif
>
>
> #
539a564
> # from source/contrib/scripts
1038a1064,1076
> #  Chan Gtalk/Jabber subpackage
> #
> %{?_without_gtalk:%if 0}
> %{!?_without_gtalk:%if 1}
> %files gtalk
> %defattr(-, root, root)
> %{_libdir}/asterisk/modules/chan_console.so
> %{_libdir}/asterisk/modules/chan_gtalk.so
> %{_libdir}/asterisk/modules/chan_jingle.so
> %{_libdir}/asterisk/modules/res_jabber.so
> %endif
>
> #
1120a1159,1168
> * Fri Apr 23 2010 Rizwan Kassim  - 1.6.2.6-2
> - Created additional package for Google Talk/Jabber client
> - Because these binaries don't match up with the Asterisk Released ones - will need to upgrade as many packages as possible
> - No spec file released for skype4asterisk, so just install manually form http://downloads.digium.com/pub/telephony/skypeforasterisk/asterisk-1.6.2.0/x86-32/ after asterisk-16-devel is updated.
> - Grep asterisk log for 'compile-time' for other possible module errors.
>
> * Thu Apr 13 2010 Jason Parker  - 1.6.2.6-1
> - Update to 1.6.2.6
> - Assuming same details as in the past - Date is from SRPM http://packages.asterisk.org/centos/5/current/SRPMS/
>
Leave a Comment more...

Twitter Weekly Updates for 2010-03-28

by Rizwan Kassim on Mar.28, 2010, under Uncategorized

  • Somehow I'm missing my house keys, my MLS keyfob, my favorite scarf and a pair of jeans. Last seen on Thurs.In Boston. I think I'm going mad #
  • Feel a little bit like the Doctor. I have a fab coat, a companion, and am exploring a strange land. (Vegas) #
  • @egradman Skype uses wideband codecs past the 8khz range that the PSTN supports. It's not your carrier or iPhone sucks,it's that phones suck in reply to egradman #
  • I have yet to find an ailment that can't be mended by 80s clubbing in New Orleans. And absinthe. #
  • Frenchman St in NOLA suffering a power outage. Live music and bartenders just kept on going, barely skipping a beat. Love it here. #
  • @stevenswei was in Vegas as an overnight stay on my way to NOLA. We should hang out next week whenever I finally decide to come home. in reply to stevenswei #
  • @Colleenky yay! in reply to Colleenky #

Powered by Twitter Tools

Leave a Comment : more...

Twitter Weekly Updates for 2010-03-21

by Rizwan Kassim on Mar.21, 2010, under Uncategorized

Powered by Twitter Tools

Leave a Comment : more...

Twitter Weekly Updates for 2010-03-14

by Rizwan Kassim on Mar.14, 2010, under Uncategorized

  • Anyone *love* their 3G data plan? Turns out AT&T requires a 2yr commitment, even if I use old equipment – not interested… #
  • Loving Intercon J – Setting up the set for Limbo now, then gaming all day! #
  • Man, I really want to sit down and write a game now. #
  • I'm thankful that the challenges in my life stem from an abundance of opportunities/ideas/directions rather than a lack of them. #
  • @randbot man, I thought you were referring to something that happened in game. in reply to randbot #

Powered by Twitter Tools

Leave a Comment : more...

Twitter Weekly Updates for 2010-03-07

by Rizwan Kassim on Mar.07, 2010, under Uncategorized

Powered by Twitter Tools

Leave a Comment : more...

Twitter Weekly Updates for 2010-02-28

by Rizwan Kassim on Feb.28, 2010, under Uncategorized

Powered by Twitter Tools

Leave a Comment : more...

Twitter Weekly Updates for 2010-02-21

by Rizwan Kassim on Feb.21, 2010, under Uncategorized

Powered by Twitter Tools

Leave a Comment : more...

RHEL5 / CentOS 5 Python 2.62 RPMs

by Rizwan Kassim on Feb.15, 2010, under Tech Articles

I created a repository at Geekymedia RPMs that contains :

Bashton’s EL5 Python 2.5
My EL5 Python 2.6
Chris Lea’s EL5 Python 2.62 (http://yum.chrislea.com/centos/5/SRPMS/)

Projects to do:
Python 2.64
Asterisk 1.62 for AsteriskNOW!

Download this repo file and place in /etc/yum.repos.d.

Enjoy.

15 Comments more...

Twitter Weekly Updates for 2010-02-16

by Rizwan Kassim on Feb.14, 2010, under Uncategorized

Powered by Twitter Tools

Leave a Comment : more...

Looking for something?

Use the form below to search the site:

Still not finding what you're looking for? Drop a comment on a post or contact us so we can take care of it!

Visit our friends!

A few highly recommended friends...

Archives

All entries, chronologically...