Hacker News new | ask | show | jobs
by tomchuk 4798 days ago
$20 for the results of bash one-liner? (by my count there are far more than 40 left)

    for i in `egrep '^[a-z]{3}$' /usr/share/dict/words`
    do
      whois $i.io | grep -q '\- Available' && echo $i.io
    done
Heck, there's still a few two-letter .io domains left

    for i in {a..z}{a..z}.io
    do
      whois $i | grep -q '\- Available' && echo $i
    done

    iz.io
    jy.io
    kf.io
    kq.io
    lq.io
    qf.io
    qg.io
    qj.io
    qo.io
    qs.io
    qy.io
    uj.io
    yd.io
    yl.io
    yz.io
But, yeah, I agree, .io choices are getting a little thinner than they used to be.
1 comments

Yes, $20 for you is too much, but there are lots of people who have no idea how to do a bash one-liner (me being one of them actually).

I worked on this project a while back and posted the list for free for over a year, not sure why it's a sin to charge money for it now.