Wednesday, April 21, 2010
Google multi-calendar CalDAV - did it change recently?
There are two ways to sync an iPhone calendar to Google calendar.
The best method is using ActiveSync (exchange server standard). This lets you edit appointments with invitations and it lets you add invitations. You can sync multiple calendars, but you need to configure this through a fairly obscure mobile-only web page (there's support for both Google standard and Google Apps calendars).
The next best option is to use CalDAV. With iPhone OS 3 you need to do this if you use ActiveSync for another account (such as your corporate calendar). CalDAV works pretty well, but you can't edit items that have guests (this hurts, might be a Google bug) and you can't invite people.
Here's where it gets weird. I feel I used to be able to select which CalDAV calendars to use from my iPhone. Maybe that was in an alternate universe, because it doesn't work now. You have to use another obscure web page, but at least this one is not mobile specific.
Incidentally, there's yet another way to configure iPhone CalDAV support -- use Apple's iPhone Configuration Utility. It apparently works at home as well as in a corporate settings.
--
My Google Reader Shared items (feed)
The best method is using ActiveSync (exchange server standard). This lets you edit appointments with invitations and it lets you add invitations. You can sync multiple calendars, but you need to configure this through a fairly obscure mobile-only web page (there's support for both Google standard and Google Apps calendars).
The next best option is to use CalDAV. With iPhone OS 3 you need to do this if you use ActiveSync for another account (such as your corporate calendar). CalDAV works pretty well, but you can't edit items that have guests (this hurts, might be a Google bug) and you can't invite people.
Here's where it gets weird. I feel I used to be able to select which CalDAV calendars to use from my iPhone. Maybe that was in an alternate universe, because it doesn't work now. You have to use another obscure web page, but at least this one is not mobile specific.
Incidentally, there's yet another way to configure iPhone CalDAV support -- use Apple's iPhone Configuration Utility. It apparently works at home as well as in a corporate settings.
--
My Google Reader Shared items (feed)
Sunday, April 18, 2010
Joys of a modern router
[In a dysfunctional cognitive state I originally titled this "Joys of an all mac network". See comments for my mea culpa]
It's been a while since I've run Gibson Research's free security testing tool ...
GRC ShieldsUP! — Internet Vulnerability ProfilingIt's a nice service, but with most modern routers the default configuration is pretty secure. In my case I have two - a Qwest DSL modem/router and an Airport.... Shields UP! is now attempting to contact the Hidden Internet Server within your PC...Preliminary Internet connection refused!This is extremely favorable for your system's overall Windows File and Printer Sharing security. Most Windows systems, with the Network Neighborhood installed, hold the NetBIOS port 139 wide open to solicit connections from all passing traffic. Either this system has closed this usually-open port, or some equipment or software such as a 'firewall' is preventing external connection and has firmly closed the dangerous port 139 to all passersby.
Unable to connect with NetBIOS to your computer.
All attempts to get any information from your computer have FAILED. (This is very uncommon for a Windows networking-based PC.) Relative to vulnerabilities from Windows networking, this computer appears to be VERY SECURE since it is NOT exposing ANY of its internal NetBIOS networking protocol over the Internet...
OS X Parental Controls: The https bug and our family Google Apps services
OS X has a longstanding bug with parental controls and https connections. In my home with a 10.5 machine I need to use https for Parental Controlled Wikipedia, but other times it doesn't work.
Even things that do work can stop. My son has open access to a tightly locked account. I wanted that access to include his email (hosted on our family domain Google App services - now managed via Dreamhost) so I put our family domain on the allowed list. About two weeks ago it stopped working; I got the inane Apple "couldn’t establish a secure connection to the server" error message.
I'd run into Apple Parental Control's notorious https minefield. Consider this discussion thread that began in 2005 and is still alive in 2010!
--
My Google Reader Shared items (feed)
Even things that do work can stop. My son has open access to a tightly locked account. I wanted that access to include his email (hosted on our family domain Google App services - now managed via Dreamhost) so I put our family domain on the allowed list. About two weeks ago it stopped working; I got the inane Apple "couldn’t establish a secure connection to the server" error message.
I'd run into Apple Parental Control's notorious https minefield. Consider this discussion thread that began in 2005 and is still alive in 2010!
Apple - Support - Discussions - Secure Connections and Parental Controls ...In 2009 "Mango Buzz" commented ...
... I finally got a fix that seems to work, however, it may be cumbersome. It involves finding the IP address of the websites you are wanting to add...Matt Wagner had some interesting background in 5/09, though he's wrong about the fix. Adding https sites to the allowed list doesn't always work ...
... I added both the web address with the prefix http and https for both the domain name and the ip address. So far this has worked.
According to http://support.apple.com/kb/HT2900 , the problem that we have been experiencing is by design. Secured connections are encrypted (obviously). This means that the contents of the website are unreadable by the content filter. Because of this, Apple decided to block all connections to secured connections. Just like zuciello explained above, the only way around this problem is to add secured sites that you do not want blocked to the list of allowed sites.
In Aug 2009 biovizier suggested something odd enough to be credible ...
.."I've got a user that is managed, but allowed unrestricted access to web and applications.[...]If access is unrestricted, the parental controls should not interfere with web communication at all."...
When "parental controls" are enabled, whether web restrictions are in place or not, it somewhat stupidly by default enables logging for internet traffic, passing requests through an internal proxy server to do so. It is at this stage that secure connections are being interfered with.
In your situation, since you don't appear to be interested in restricting web use, just turn the logging off as a workaround, eg.
/usr/bin/sudo /usr/bin/dscl . -mcxset /users/username com.apple.familycontrols.logging web always -bool false
Enter the command using "/Applications" > "Utilities" > "Terminal.app" while logged in to an "admin" account, substituting the managed users "short name" where it says "username".
In March of 2010 Sidney San Martin contributed a monster post ...
We ran into this problem, and a wonderfully helpful Apple technician dug up a solution brought down from engineering ... The problem is that https, by design, keeps the hostname you're trying to access (apple.com, mail.google.com, etc.) secret. The computer can't determine directly whether the connection should be allowed. It does know the IP address, and performs a reverse lookup on that IP address get the hostname it checks against your list of allowed sites.
So, the solution is to add as an allowed site the hostname associated with the IP address. It's not too difficult, but does require that you dive into the Terminal.
As an example, let's try to allow access to the Apple store. Start with the hostname you know: store.apple.com. Head into Terminal, and type:
host store.apple.com
You should get back something like this:
store.apple.com is an alias for store.apple.com.akadns.net.
store.apple.com.akadns.net has address 17.251.201.32
store.x.com.akadns.net mail is handled by 10 cbox-ember01.apple.com.
store.apple.com.akadns.net mail is handled by 10 cbox-ember02.apple.com.
store.apple.com.akadns.net mail is handled by 10 cbox-ember03.apple.com.
You can ignore everything except the address line. Now we know that the Apple Store's IP address is 17.251.201.32. Let's use host again:
host 17.251.201.32
Which returns
32.201.251.17.in-addr.arpa domain name pointer cup-store.apple.com.
Which is the information that we're looking for. The reverse DNS name of the Apple Store's only IP address is cup-store.apple.com. You can add this to allowed sites, or just add apple.com.
Head back over to the store page, reload, and see if everything's loading. You can use the Activity window (in the Window menu) to see what is and isn't loading successfully on the page. In some cases, you may find content that's not loaded from the same domain — in this case, static content like images is coming from a248.e.akamai.net. You can follow the same steps to find the reverse DNS names of these other domains.
If a domain resolves to multiple IP addresses, check a few of them. If you're lucky, they'll all point to the same or similar domains, and you can just add the second level domain to allowed sites. If you're not, they may not have reverse DNS records at all, and you'll get a response like this:
Host 153.234.138.207.in-addr.arpa. not found: 3(NXDOMAIN)
In this case, you may have to add all of the IP addresses individually to allowed sites.
If you're having trouble with this method of finding reverse DNS, try to load a problematic site and check the Parental Controls logs. The site should show up under Websites Blocked. Open one of the history entries in a browser. It should just show up as a hostname or IP address, with nothing after the slash. That's the address you need to add
Finally, if you just want to allow access to GMail, I did the work for you: most of Google's IP addresses resolve to a .1e100.net address. If you add google.com and 1e100.net to allowed sites (Google has lots of IPs, it's not worth trying to add them individually), you should be all set.
I tried several of the above fixes (but not disabling logging - I need logging) and more, but I had no luck [1]. Note that I wasn't trying to provide access to google.com or gmail.com -- just family domain Google Apps.
I did finally get something working. I had to ...
[1] It's so incredibly tedious. You have to log out of the account, make changes from an admin account, log in again, etc. It saves a bit of time if you remotely manage the parental control prefs rather than use a local admin account. If you look at blocked sites in the logs you can get a clue what's going on and you can right click on blocked sites to enable them. When doing remote admin you need to force a write of your changes by switching tabs - I keep forgetting to do that.
I did finally get something working. I had to ...
- Switch from OpenDNS to Google DNS.
- As per San Martin add google.com and 1e100.net to the list of approved sites.
- Instead of using the URL "mail.myfamilydomain.com" I had to use https://mail.google.com/a/myfamilydomain/#inbox .
I would have preferred not to enable access on this account to www.google.com, but I really did need to have google.com as an authorized site.
I didn't used to have to do all this, so it feels like Google and/or OpenDNS or both of them changes something about two weeks ago.
[1] It's so incredibly tedious. You have to log out of the account, make changes from an admin account, log in again, etc. It saves a bit of time if you remotely manage the parental control prefs rather than use a local admin account. If you look at blocked sites in the logs you can get a clue what's going on and you can right click on blocked sites to enable them. When doing remote admin you need to force a write of your changes by switching tabs - I keep forgetting to do that.
Update:
- A series of Google discussions in 10/2009 suggested adding the Google.com IP address to the permitted site list: https://74.125.45.100. I believe this is the "secret sauce".
- Another user was dealing with "try to block adult content automatically" problem of all https being blocked. They used a pattern template in permitted sites: [https://*.*.gmail.*.*]. I am skeptical that this adds anything.
Update 5/5/10:
- From a google help forum Jawl's Dad wrote: I opened a terminal ... and typed the command host mail.google.com. The first four addresses [see San Martin, above] I added to the 'Allowed sites' with https://a.b.c.d and it works fine now....
Ahh, yes. The Host file. Slowly the memories return. I used to edit host files back when we had to make our own electricity. I'd forgotten about using it to block domains, but that method goes back to the very dawn of the net. It was once used to block advertisers, but I think they got around that. Note that editing the Host file impacts ALL users on a machine, and you may need to worry about permission related side effects.
Searching on Parental Controls and "Host file" brought me a few references.
- Road to Mac OS X Leopard: Parental Controls and Directory Services: provides some technical background that might help me work with Apple's awkward control system.
- Block access to websites on a Mac by modifying /etc/hosts - OS X Daily: using sudo and the nano editor, I think most just use terminal.
Update 6/9/10: After a bitter battle, and a review of 3rd party parental control solutions that suggested this was a dying market, I again restored https access to google. So I had to walk through the above post.
I can't say it's the only thing one has to do, but the addition of https://74.125.45.100 to the Parental Controls whitelist did the trick. It resolves, by the way, to a beta trial of encrypted search services. I need to enable this google.com access even when my son is using our Google Apps site -- the authentication step requires an https Google.com connection.
Update 2/7/11: I gave up on using Google web tools. Not at all family friendly. Did come across a tip to add to this thread ...
Update 2/7/11: I gave up on using Google web tools. Not at all family friendly. Did come across a tip to add to this thread ...
One more step is required: after adding https://74.125.45.100 which actually only took me to the google home page (though Parental Controls still restrict any browsing from there) THEN ALSO ADD https://mail.google.com/mail - so the combination of the two additions in the allowed websites does the trick - then when attempting to access Gmail go to gmail.com and the Gmail homepage opens
See also:
My Google Reader Shared items (feed)
Sunday, April 11, 2010
Integrating game consoles, computers: go RCA cable
I love the 70 year old RCA connector.
It was the perfect invention, but the internet does not know who the inventor was. Those were the days when "RCA" was as Apple is now, but companies got credit rather than people. (RCA died in 1986, the name is just a trademark now.)
I renewed my RCA connector appreciation when I decided to move the kids Wii console from the basement to the family room. Downstairs we plugged the Wii into my 1986 stereo receiver, but upstairs we didn't have anything. Somewhat impulsively [1], I bought a Logitech z313 computer stereo to share between the iMac and the Wii.
I renewed my RCA connector appreciation when I decided to move the kids Wii console from the basement to the family room. Downstairs we plugged the Wii into my 1986 stereo receiver, but upstairs we didn't have anything. Somewhat impulsively [1], I bought a Logitech z313 computer stereo to share between the iMac and the Wii.
Since my sound system knowledge ended in 1976 this "sharing" took a bit of figuring. There's no "receiver" to manage the different audio sources; the amplifier function is built into the computer speakers. There's also some mystery about how to connect things; my iMac and the z313 use 3.5 mm stereo connectors, the Wii uses RCA.
The answer is to covert the 3.5 mm connections to RCA, then use a simple RCA A/V switch. Instead of pushing buttons on a complex receiver you need to use a much simpler analog AV switch (I'm not sure this is progress actually).
A prior post reviews the cable connections. You use some mixture of "Y" RCA stereo cables with either male or female 3.5 mm plugs (and an optional 3.5 mm plug join) to convert the 3.5 mm stuff to a nice RCA connector standard.
For a switch you can use something like the RCA VH911 Video Switch Box or the SONY Game and Video Selector (#1 in "selector boxes" - see[2]).
Once you know the above, the rest is easy.
See alo:
- Stereo cable voodoo: Connect game console output to computer speakers (2010)
- The Apple AirTunes vision -- not really ready for primetime (2005 - it started working around 2008)
- Is this the solution to my home amplifier problem? (2005)
[1] I violated Gordon's Laws of acquisition. I could have made this work with a battery powered speaker I already own. I did penance by reorganizing the computer area, donating several items, and tossing more things out. The Logitech sounds much better than I'd expected; for this result I should have paid more to get something that might last longer. It's much better sound that what my old stereo produces at reasonable volumes.
[2] Amazon doesn't have a consistent classification (ontology) for these devices. If you start with this list the "what do customers buy" section should provide good coverage:
- GE 23294 Audio/Video and Game Switch
- RCA VH911 Video Switch Box
- SONY Game and Video Selector
- Sima SVS-14 4 Input Manual A/V Selector
- Audio Video RCA Composite AV Video Game Selector Switch for XBox, XBOX 360, PS1, PS2, PS3, Gamecube, Wii, DVD, VCR
- 3-Play Component Video Digital Audio Selector
- 4-to-1 Audio/Video Switch with Component, Digital Coaxial Audio and Audio RCA Connectors
- Terk VS-4 S-Video/Video/Audio Switch Selector (4 Inputs, 2 Outputs)
As best I can tell only the SONY is shipped through Amazon, so shipping costs on the others are likely to greatly increase costs.
Friday, April 09, 2010
Stereo cable voodoo: Connect game console output to computer speakers
I need to connect a game console to a computer speaker system. This requires some cable voodoo.
Specifically I need to connect a Wii (composite RCA plug output - 2 stereo sound, 1 video) console stereo output to my Logitech (3.5 mm male) computer speakers. This is a fairly common problem, Amazon has two different solutions:
2 x RCA Female / 1 x 3.5mm Stereo Female Adapter (CableWholesale)orboth 3.5mm Stereo Coupler F/F AND 3.5mm Stereo Male To 2X RCA Female Adapter (Cables To Go)
I ordered the second one because I needed a bit more versatility.
Now I'd also like to use my computer with the same speakers. I'm going to try using a headphone splitter in reverse -- so the sound sources will plug into the headphone jacks and the speaker will plug into the input jack. I think it might work ...
PS. The mess of a adapters and cables cost half as much as the Logitech computer stereo system. The profit margin on cables is impressive.
Tuesday, April 06, 2010
How to disable lateral (horizontal) scrolling on a Magic mouse
Things that seem like a good idea at the time but aren't really:
- auto-orientation on my iPhone: Mostly it guesses wrong.
- horizontal scrolling surface on the magic mouse: Mostly it guesses wrong.
There is a way to disable the Magic Mouse horizontal scrolling:
Apple - Support - Discussions - Magic Mouse - Disable horizontal ...
You must either restart your computer or connect and disconnect your mouse for these changes to take effect. To connect/disconnect you power cycle the mouse; it's helpful to have the OS X mouse pref pane open to see when it's disconnected and reconnected. Reconnection can be slow.... This worked for me. It's a relief to disable horizontal scrolling. Just to clarify the previous post:
To turn horizontal scrolling off:defaults write com.apple.driver.AppleBluetoothMultitouch.mouse MouseHorizontalScroll -bool NO
To turn horizontal scrolling on:defaults write com.apple.driver.AppleBluetoothMultitouch.mouse MouseHorizontalScroll -bool YES
These commands are entered on the command line of the Terminal utility application.
It's beautiful to have lateral scrolling disabled. Just beautiful.
Update 6/17/10: Even with lateral scrolling disabled, I still came to despise the Magic Mouse. Finally I gave up on it.
Monday, April 05, 2010
Killjoy review: I so wanted to like the T1i
Amazon reviews can be so cruel.
I really wanted to get a Canon EOS Rebel T1i this summer, but the Amazon reviews are a buzzkill. Like this one.
Too many megapixels. Damn. If only they'd gone for more light sensitivity and 10 megapixels.
PS. I rarely bother with the 4-5 star reviews. The best reviews are always in the 2-3 star range.
Snow Leopard 10.6.3: still not ready for primetime
Apple is having a very hard time getting rid of the really big 10.6 bugs (emphases mine) ...
Macintouch - Snow Leopard: Updates - Matt Neuburg
... Applied the 10.6.3 combo updater to two computers. No issues on either ...
One minor annoyance: I noticed on both computers that my display's custom ColorSync profile setting had been forgotten. I had to go into System Preferences - Displays - Color and select the correct profile.
Please see also the report concerning the three Snow Leopard bugs originally identified and reported in TidBITS. Two of them are fixed by this release (great, that only took 7 months), but one, a serious bug where attempting to Finder-copy a file bundle via File Sharing, is not fixed. http://db.tidbits.com/article/11123"
The Tidbits article link reports fixes to an Apple events bug and a Preview bug.
I still can' recommend upgrading to 10.6 from a happy 10.5 machine. At this rate, it won't be respectable before 10.6.5. Apple is struggling to keep all their balls in the air.
There's been no mention of a fix for the USB/firewire external drive system lockup bug.
See also:
Monday, March 29, 2010
Virgin mobile - Sprint for your laptop, no contract
For $100 it appears you can sign up for Virgin Mobile Broadband Service. From the fine print it looks like they're reselling Sprint, but there's no contract, you pay on demand ...
--
My Google Reader Shared items (feed)
$10 10 Days 100 MB 5 hrs Web Browsing Or 25 minutesI'm interested. Anyone with any customer experience?
Video Or 10,000 Emails (without attachment)
$20 30 Days 300 MB 15 hrs Web Browsing Or 1 hour Video
Or 25,000 Emails (without attachment)
$40 30 Days 1 GB 50 hrs Web Browsing Or 4 hours
Video Or 100,000 Emails (without attachment)
$60 30 Days 5 GB* 250 hrs Web Browsing Or 21 hours Video
Or 500,000 Emails (without attachment)
--
My Google Reader Shared items (feed)
Sunday, March 28, 2010
My slowing 3G iPhone -- and why multitasking will need new hardware
My 3G iPhone feels like it's on its last legs. Rebooting only helps a bit.
Why should it feel so much slower now than the day I bought it?
Perhaps because it's constantly processing two email accounts, two calendars, one file share, and two contacts servers including use of CalDAV, Exchange server, and MobileMe protocols. That's atop whatever else I might be doing with the phone.
My 3G iPhone is doing a lot of multitasking, and it's hurting. It doesn't have the firepower to handle these demands.
Emily's 3GS does a lot better, but if Apple were to enable 3rd party multitasking I suspect it would run out of steam too.
I'm guessing we'll get 3rd party multitasking on the iPhone this year, probably requiring special certification by Apple, but that it will only be enabled on the June 2010 phone. More multitasking will require new hardware.
--
My Google Reader Shared items (feed)
Why should it feel so much slower now than the day I bought it?
Perhaps because it's constantly processing two email accounts, two calendars, one file share, and two contacts servers including use of CalDAV, Exchange server, and MobileMe protocols. That's atop whatever else I might be doing with the phone.
My 3G iPhone is doing a lot of multitasking, and it's hurting. It doesn't have the firepower to handle these demands.
Emily's 3GS does a lot better, but if Apple were to enable 3rd party multitasking I suspect it would run out of steam too.
I'm guessing we'll get 3rd party multitasking on the iPhone this year, probably requiring special certification by Apple, but that it will only be enabled on the June 2010 phone. More multitasking will require new hardware.
--
My Google Reader Shared items (feed)
Tuesday, March 23, 2010
Amazon MP3 download in Safari
I bought an MP3 tune from Amazon, but the download wouldn't work.
Safari OS X kept saving a ".amz" file. The instructions said to "open it", but of course Safari refused. The "help" link took me to a Windows specific help page.
The real answer is that you must first Install the Amazon MP3 Downloader. The downloader is supposed to require that, but it didn't in my case. I migrated my account from a machine that had the downloader installed, so that might explain the bug.
I do wonder, however, how many OS X users ever buy from Amazon. I'm guessing it's a very low number.
Monday, March 22, 2010
When themes corrupt: Fixing a possessed PowerPoint
Twenty minutes before show time, my PowerPoint 2007 presentation (Sorry kittens) was possessed. I tried adding a drawing item to an image and nothing happened. I couldn’t get the the image to display in the normal slide view. I couldn’t fix the problems, so I gave up and went with what I had.
Later I tried to figure out what went wrong. As best I can tell the themes/layout control data had been corrupted. This particular presentation started with a corporate theme as PPT 2003 and had round-tripped between 2003 and 2007 a few times.
Evidently, a few times too many.
Setting a theme on a slide didn’t fix it. The fix was
- To to View – Presentation views – Slide Master
- In this view, choose Themes and apply a theme
- Save
- Go back through presentation and fix everything up
I had to make do with a standard PPT 2007 theme, but I could again edit my presentation.
Sunday, March 21, 2010
LiLi: Windows s/w to create a bootable Linux USB key
My sislaw used Linux Live USB Creator to create a Ubuntu USB key to boot her dead netbook. She pulled her drive data off after booting.
So now she doesn't need to use Gillware data recovery -- though she speaks highly of them.
No personal experience, but worth filing away.
Image Capture - Import to Aperture - deadly bug
I don't remember Image Capture having an "Import to Aperture" and "Import to iPhoto" feature:
Is it new in 10.6?
IC has several advantages over native import. With an iPhone, for example, you can browse your images and choose which to import, and which to delete. There's no other way to mass delete iPhone images on OS X.
Now you can do that during a directed import, no need to save first to the desktop.
Really nasty bug.
Update b: I am geek. Hear me roar. I knew from watching the image capture process that the images had been copied somewhere. So I went looking.
Spotlight couldn't find them, but DevonThink EasyFind is not so limited. I searched on ".AVI" and found the videos in the hidden folder where ImageCapture stores files prior to sending them elsewhere.
/private/tmp/Image Capture_Import.z2G5f9sM
They were all there. Fortunately I thought of this before this cache was emptied.
I love EasyFind.
Is it new in 10.6?
IC has several advantages over native import. With an iPhone, for example, you can browse your images and choose which to import, and which to delete. There's no other way to mass delete iPhone images on OS X.
Now you can do that during a directed import, no need to save first to the desktop.
Update: Sh*t. Don't do this. From my Apple Discussion post of a few moments ago:
Image Capture allows one to specify Aperture as a target.I experimented with FileJuicer and PhotoRescue recovery apps. FileJuicer didn't find ANY AVI files, and it ignored the preference settings I used. PhotoRescue found several of interest, but there's no thumbnail -- I can't tell if they're intact or not. There's no longer a MBG for PhotoRescue, so it would be a real gamble to try. We might just live without the videos.
Nice feature, but Aperture can't handle video.
So what happens when the images you choose to import contain a video, and you've set IC to delete after import?
The videos are deleted, but not imported. If you were to import directly to Aperture they would be saved to the desktop by Aperture, but with this route they are deleted.
Lethal bug.
Really nasty bug.
Update b: I am geek. Hear me roar. I knew from watching the image capture process that the images had been copied somewhere. So I went looking.
Spotlight couldn't find them, but DevonThink EasyFind is not so limited. I searched on ".AVI" and found the videos in the hidden folder where ImageCapture stores files prior to sending them elsewhere.
/private/tmp/Image Capture_Import.z2G5f9sM
They were all there. Fortunately I thought of this before this cache was emptied.
I love EasyFind.
Saturday, March 20, 2010
Google Reader - following vs. reading the feed
Mahendra, who I will now be following, has written a great summary on using Google Reader. It was all familiar to me, but he cleared up a mystery for me ..
How I Live and Breathe Google Reader by @ScepticGeek
... Tip: By adding a person’s shared items to a folder in Reader, you can unfollow the person in Buzz if you wish, while continuing to see their Reader shares....Aha! That explains it. Some of the people I most like to follow, like John Munro, had vanished from my Google Reader "Follow" section but their shared item feed remained in my GR Subscription section. I bet I accidentally clicked "unfollow" (surprisingly easy to do for me).
I just navigated to John's shared item feed as shown in GR and added him back to my follow section. (Oops! He's showing up as "08915834275668816438". Hope this gets fixed soon.)
Like Mahendra I'm abstaining from Buzz. Google Reader "People you follow" is much closer to what I want than Buzz.
--
My Google Reader Shared items (feed)
--
My Google Reader Shared items (feed)
Subscribe to:
Posts (Atom)
