A whole new class of Google+ jokes has sprung up....
Originally shared by Anil Dash
Your moms so fat, she huddle all by herself.
1 min read
A whole new class of Google+ jokes has sprung up....
Originally shared by Anil Dash
Your moms so fat, she huddle all by herself.
1 min read
Welcome aboard Google+!
Invites are still flowing out, so pay attention to your inbox (and hopefully not your spam folder!)
1 min read
Hope you'll take the plunge into Google+ -- It has a lot of the Vox vibe that I miss so much!
Also I'm doing connected sites work (try connecting your yahoo/live account!) there's a lot of cool stuff we can do together. Just let me know at plindner@google.com
2 min read
I've been very fortunate in my career. I've had many opportunities and been successful in making the Internet a better place for end-users and developers. From the early days of Gopher to the mainstreaming of open-source at Red Hat to the rise of blogging at Six Apart and on to forming the social web with Opensocial -- I've been a part of many game-changing technologies first hand. It's one of the most satisfying parts of my work.
That's why I'm happy to announce that I'm joining Google today. My gut tells me that this is the right company, the right team, and the right time to contribute to and help define another major change that betters the internet and the entire world.
The decision to work for Google did not come easy. My time at LinkedIn has been truly amazing. The people are smart, the technology is stellar and the opportunities to learn and contribute are limitless. In the past year and half the company doubled in size while the Platform team launched dozens of great new products and enhancements. I'm especially proud of the small parts that I played in helping launch LinkedIn's open developer program and am equally excited about a number of future projects that will launch in the near future. I cherish the friendships and knowledge gained and will miss everyone there greatly.
I look forward to the exciting things that I'll be able to accomplish soon. Here's to the next evolution and revolution!
1 min read
I just completed exporting my Vox to Typepad. Quite a trip down memory lane; back to the golden age of blogging. I'm thinking kind thoughts for Six Apart right now -- I know this can't be an easy transition they're going through.
3 min read
It appears that Fedora 12 moved to a new boot init system called dracut. Sadly due to a number of odd circumstances this has caused me much pain. Here's my basic config
# dmraid -r
/dev/sdd: sil, "sil_aiabafajfgba", mirror, ok, 488395120 sectors, data@ 0
/dev/sdc: sil, "sil_aiabafajfgba", mirror, ok, 488395120 sectors, data@ 0
fprintf(stderr, Name ": WARNING %s and %s appear"
" to have very similar superblocks.\n"
" If they are really different, "
"please --zero the superblock on one\n"
" If they are the same or overlap,"
" please remove one from %s.\n",
devices[best[i]].devname, devname,
inargv ? "the list" :
"the\n DEVICE list in mdadm.conf"
Drats! the mirrored fake raid had already mangled my second drive by duplicating the superblock! Plus since all this was going on in dracut I couldn't fix it. So I removed the nodmraid option in grub during boot and dug a little deeper. I found that I could keep dracut from doing all this nonsense by adding the following kernel options:
rd_NO_MD rd_NO_DM nodmraid
mdadm --zero-superblock /dev/sdd1
And then rebooting (again!)
# mdadm --manage /dev/md_d0 --add /dev/sdd1
To get rid of the false-positive fake raid setup I found that you can do this with the dmraid tool itself:
[root@mirth ~]# dmraid -E -r /dev/sdd
Do you really want to erase "sil" ondisk metadata on /dev/sdd ? [y/n] :y
[root@mirth ~]# dmraid -E -r /dev/sdc
Do you really want to erase "sil" ondisk metadata on /dev/sdc ? [y/n] :y