ostatus 0.0.11 → 0.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/ostatus/feed.rb +2 -1
- data/lib/ostatus/version.rb +1 -1
- data/spec/feed_spec.rb +28 -19
- data/test/mime_type_bug_feed.atom +874 -0
- metadata +4 -2
    
        data/lib/ostatus/feed.rb
    CHANGED
    
    | @@ -46,7 +46,8 @@ module OStatus | |
| 46 46 | 
             
                        {:type => el.attributes['type'].to_s,
         | 
| 47 47 | 
             
                         :href => el.attributes['href'].to_s}
         | 
| 48 48 | 
             
                      }.sort {|a, b|
         | 
| 49 | 
            -
                        MIME_ORDER.index(b[:type]) <=> | 
| 49 | 
            +
                        MIME_ORDER.index(b[:type]) || -1 <=>
         | 
| 50 | 
            +
                        MIME_ORDER.index(a[:type]) || -1
         | 
| 50 51 | 
             
                      }
         | 
| 51 52 |  | 
| 52 53 | 
             
                      # Resolve relative links
         | 
    
        data/lib/ostatus/version.rb
    CHANGED
    
    
    
        data/spec/feed_spec.rb
    CHANGED
    
    | @@ -2,9 +2,6 @@ require_relative '../lib/ostatus/feed.rb' | |
| 2 2 | 
             
            require_relative '../lib/ostatus/entry.rb'
         | 
| 3 3 |  | 
| 4 4 | 
             
            describe OStatus::Feed do
         | 
| 5 | 
            -
              before(:each) do
         | 
| 6 | 
            -
                @feed = OStatus::Feed.from_url('test/example_feed.atom')
         | 
| 7 | 
            -
              end
         | 
| 8 5 |  | 
| 9 6 | 
             
              describe "#initialize" do
         | 
| 10 7 | 
             
                it "should detect a feed URI in an HTML page" do
         | 
| @@ -13,29 +10,41 @@ describe OStatus::Feed do | |
| 13 10 | 
             
                end
         | 
| 14 11 | 
             
              end
         | 
| 15 12 |  | 
| 16 | 
            -
              describe " | 
| 17 | 
            -
                 | 
| 18 | 
            -
                  @feed. | 
| 13 | 
            +
              describe "with example_feed.atom" do
         | 
| 14 | 
            +
                before(:each) do
         | 
| 15 | 
            +
                  @feed = OStatus::Feed.from_url('test/example_feed.atom')
         | 
| 19 16 | 
             
                end
         | 
| 20 | 
            -
              end
         | 
| 21 17 |  | 
| 22 | 
            -
             | 
| 23 | 
            -
             | 
| 24 | 
            -
             | 
| 18 | 
            +
                describe "#atom" do
         | 
| 19 | 
            +
                  it "should return a String containing the atom information" do
         | 
| 20 | 
            +
                    @feed.atom.start_with?("<?xml").should eql(true)
         | 
| 21 | 
            +
                  end
         | 
| 25 22 | 
             
                end
         | 
| 26 | 
            -
              end
         | 
| 27 23 |  | 
| 28 | 
            -
             | 
| 29 | 
            -
             | 
| 30 | 
            -
             | 
| 24 | 
            +
                describe "#hubs" do
         | 
| 25 | 
            +
                  it "should return a String containing the hub url given in the link tag" do
         | 
| 26 | 
            +
                    @feed.hubs.should eql(['http://identi.ca/main/push/hub', 'http://identi.ca/main/push/hub2'])
         | 
| 27 | 
            +
                  end
         | 
| 31 28 | 
             
                end
         | 
| 32 | 
            -
              end
         | 
| 33 29 |  | 
| 34 | 
            -
             | 
| 35 | 
            -
             | 
| 36 | 
            -
             | 
| 37 | 
            -
                    entry.instance_of?(OStatus::Entry).should eql(true)
         | 
| 30 | 
            +
                describe "#salmon" do
         | 
| 31 | 
            +
                  it "should return a String containing the salmon url given in the link tag" do
         | 
| 32 | 
            +
                    @feed.salmon.should eql('http://identi.ca/main/salmon/user/141464')
         | 
| 38 33 | 
             
                  end
         | 
| 39 34 | 
             
                end
         | 
| 35 | 
            +
             | 
| 36 | 
            +
                describe "#entries" do
         | 
| 37 | 
            +
                  it "should return an Array of Entry instances" do
         | 
| 38 | 
            +
                    @feed.entries.each do |entry|
         | 
| 39 | 
            +
                      entry.instance_of?(OStatus::Entry).should eql(true)
         | 
| 40 | 
            +
                    end
         | 
| 41 | 
            +
                  end
         | 
| 42 | 
            +
                end
         | 
| 43 | 
            +
              end
         | 
| 44 | 
            +
             | 
| 45 | 
            +
              describe "#from_url" do
         | 
| 46 | 
            +
                it "should be able to sort link elements with unknown MIME types" do
         | 
| 47 | 
            +
                  @feed = OStatus::Feed.from_url('test/mime_type_bug_feed.atom')
         | 
| 48 | 
            +
                end
         | 
| 40 49 | 
             
              end
         | 
| 41 50 | 
             
            end
         | 
| @@ -0,0 +1,874 @@ | |
| 1 | 
            +
            <!DOCTYPE html
         | 
| 2 | 
            +
            PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
         | 
| 3 | 
            +
                   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
         | 
| 4 | 
            +
            <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
         | 
| 5 | 
            +
             <head>
         | 
| 6 | 
            +
              <title>otakukuma - Identi.ca</title>
         | 
| 7 | 
            +
              <link rel="shortcut icon" href="https://identi.ca/favicon.ico"/>
         | 
| 8 | 
            +
              <link rel="stylesheet" type="text/css" href="https://theme2.status.net/base/css/display.css?version=1.1.0-release" media="screen, projection, tv, print"/>
         | 
| 9 | 
            +
              <link rel="stylesheet" type="text/css" href="https://theme2.status.net/neo/css/display.css?version=1.1.0-release" media="screen, projection, tv, print"/>
         | 
| 10 | 
            +
              <link rel="stylesheet" type="text/css" href="https://plugins2.status.net/OStatus/theme/base/css/ostatus.css" media=""/>
         | 
| 11 | 
            +
              <link rel="stylesheet" type="text/css" href="https://plugins2.status.net/ModPlus/modplus.css" media=""/>
         | 
| 12 | 
            +
              <link rel="stylesheet" type="text/css" href="https://plugins2.status.net/Realtime/realtimeupdate.css" media="screen, projection, tv"/>
         | 
| 13 | 
            +
              <link rel="stylesheet" type="text/css" href="https://identi.ca/js/css/smoothness/jquery-ui.css" media=""/>
         | 
| 14 | 
            +
              <!--[if IE]><link rel="stylesheet" type="text/css" href="https://theme2.status.net/base/css/ie.css?version=1.1.0-release" /><![endif]-->
         | 
| 15 | 
            +
              <!--[if lte IE 6]><link rel="stylesheet" type="text/css" href="https://theme2.status.net/base/css/ie6.css?version=1.1.0-release" /><![endif]-->
         | 
| 16 | 
            +
              <!--[if lte IE 7]><link rel="stylesheet" type="text/css" href="https://theme2.status.net/base/css/ie7.css?version=1.1.0-release" /><![endif]-->
         | 
| 17 | 
            +
              <style>#site_notice { width: 100% }</style>
         | 
| 18 | 
            +
              <style>.form-train-spam input.submit { background: url(https://plugins2.status.net/ActivitySpam/icons/bullet_black.png) no-repeat 0px 0px }
         | 
| 19 | 
            +
            .form-train-ham input.submit { background: url(https://plugins2.status.net/ActivitySpam/icons/exclamation.png) no-repeat 0px 0px } </style>
         | 
| 20 | 
            +
              <link rel="stylesheet" type="text/css" href="https://plugins2.status.net/Bookmark/bookmark.css" media=""/>
         | 
| 21 | 
            +
              <link rel="stylesheet" type="text/css" href="https://plugins2.status.net/Event/event.css" media=""/>
         | 
| 22 | 
            +
              <link rel="stylesheet" type="text/css" href="https://plugins2.status.net/Poll/poll.css" media=""/>
         | 
| 23 | 
            +
              <link rel="stylesheet" type="text/css" href="https://plugins2.status.net/QnA/css/qna.css" media=""/>
         | 
| 24 | 
            +
              <link rel="search" type="application/opensearchdescription+xml" href="http://identi.ca/opensearch/people" title="Identi.ca People Search"/>
         | 
| 25 | 
            +
              <link rel="search" type="application/opensearchdescription+xml" href="http://identi.ca/opensearch/notice" title="Identi.ca Notice Search"/>
         | 
| 26 | 
            +
              <link rel="alternate" href="http://identi.ca/api/statuses/user_timeline/184603.as" type="application/stream+json" title="Notice feed for otakukuma (Activity Streams JSON)"/>
         | 
| 27 | 
            +
              <link rel="alternate" href="http://identi.ca/otakukuma/rss" type="application/rdf+xml" title="Notice feed for otakukuma (RSS 1.0)"/>
         | 
| 28 | 
            +
              <link rel="alternate" href="http://identi.ca/api/statuses/user_timeline/184603.rss" type="application/rss+xml" title="Notice feed for otakukuma (RSS 2.0)"/>
         | 
| 29 | 
            +
              <link rel="alternate" href="http://identi.ca/api/statuses/user_timeline/184603.atom" type="application/atom+xml" title="Notice feed for otakukuma (Atom)"/>
         | 
| 30 | 
            +
              <link rel="meta" href="http://identi.ca/otakukuma/foaf" type="application/rdf+xml" title="FOAF for otakukuma"/>
         | 
| 31 | 
            +
              <meta name="description" content="command line user on a GNU-Linux system"/>
         | 
| 32 | 
            +
              <meta name="microid" content="mailto+http:sha1:ec8d60e34f4fcc1357b5168aea78d78da52d0a00"/>
         | 
| 33 | 
            +
              <link rel="microsummary" href="http://identi.ca/otakukuma/microsummary"/>
         | 
| 34 | 
            +
              <link rel="EditURI" type="application/rsd+xml" href="http://identi.ca/rsd.xml"/>
         | 
| 35 | 
            +
              <link rel="openid2.provider" href="http://identi.ca/main/openidserver"/>
         | 
| 36 | 
            +
              <link rel="openid2.local_id" href="http://identi.ca/otakukuma"/>
         | 
| 37 | 
            +
              <link rel="openid.server" href="http://identi.ca/main/openidserver"/>
         | 
| 38 | 
            +
              <link rel="openid.delegate" href="http://identi.ca/otakukuma"/>
         | 
| 39 | 
            +
             </head>
         | 
| 40 | 
            +
             <body id="showstream">
         | 
| 41 | 
            +
              <div id="wrap">
         | 
| 42 | 
            +
               <div id="fb-root"></div>
         | 
| 43 | 
            +
               <div id="header">
         | 
| 44 | 
            +
                <address id="site_contact" class="vcard">
         | 
| 45 | 
            +
                 <a class="url home bookmark" href="http://identi.ca/">
         | 
| 46 | 
            +
                  <img class="logo photo" src="https://file.status.net/i/identica/jordanc-20110919T224313-xycjlk9.png" alt="Identi.ca"/>
         | 
| 47 | 
            +
                   <span class="fn org">Identi.ca</span>
         | 
| 48 | 
            +
                 </a>
         | 
| 49 | 
            +
                </address>
         | 
| 50 | 
            +
                <div id="site_nav_global_primary">
         | 
| 51 | 
            +
                 <form id="header-search" class="form" method="get" action="http://identi.ca/search/notice">
         | 
| 52 | 
            +
                  <fieldset>
         | 
| 53 | 
            +
                   <input name="q" size="20" id="search-q"/>
         | 
| 54 | 
            +
                   <input type="submit" value="Search"/>
         | 
| 55 | 
            +
                  </fieldset>
         | 
| 56 | 
            +
                 </form>
         | 
| 57 | 
            +
                 <ul class="nav">
         | 
| 58 | 
            +
                  <li id="nav_login">
         | 
| 59 | 
            +
                   <a href="https://identi.ca/main/login" title="Login to the site.">Login</a>
         | 
| 60 | 
            +
                  </li>
         | 
| 61 | 
            +
                 </ul>
         | 
| 62 | 
            +
                </div>
         | 
| 63 | 
            +
               </div>
         | 
| 64 | 
            +
               <div id="core">
         | 
| 65 | 
            +
                <div id="aside_primary_wrapper">
         | 
| 66 | 
            +
                 <div id="content_wrapper">
         | 
| 67 | 
            +
                  <div id="site_nav_local_views_wrapper">
         | 
| 68 | 
            +
                   <div id="site_nav_local_views">
         | 
| 69 | 
            +
                    <ul id="nav_local_default">
         | 
| 70 | 
            +
                     <li>
         | 
| 71 | 
            +
                      <h3>Public</h3>
         | 
| 72 | 
            +
                      <ul class="nav">
         | 
| 73 | 
            +
                       <li id="nav_timeline_public">
         | 
| 74 | 
            +
                        <a href="http://identi.ca/" title="Public timeline">Public</a>
         | 
| 75 | 
            +
                       </li>
         | 
| 76 | 
            +
                       <li id="nav_groups">
         | 
| 77 | 
            +
                        <a href="http://identi.ca/group/" title="User groups">Groups</a>
         | 
| 78 | 
            +
                       </li>
         | 
| 79 | 
            +
                       <li id="nav_featured">
         | 
| 80 | 
            +
                        <a href="http://identi.ca/featured/" title="Featured users">Featured</a>
         | 
| 81 | 
            +
                       </li>
         | 
| 82 | 
            +
                       <li id="nav_timeline_favorited">
         | 
| 83 | 
            +
                        <a href="http://identi.ca/favorited/" title="Popular notices">Popular</a>
         | 
| 84 | 
            +
                       </li>
         | 
| 85 | 
            +
                      </ul>
         | 
| 86 | 
            +
                     </li>
         | 
| 87 | 
            +
                    </ul>
         | 
| 88 | 
            +
                   </div>
         | 
| 89 | 
            +
                   <div id="content">
         | 
| 90 | 
            +
                    <h1>otakukuma</h1>
         | 
| 91 | 
            +
                    <div id="content_inner">
         | 
| 92 | 
            +
                     <div id="notices_primary">
         | 
| 93 | 
            +
                      <ol class="notices xoxo">
         | 
| 94 | 
            +
                       <li class="hentry notice notice-source-web" id="notice-95975798">
         | 
| 95 | 
            +
                        <div class="entry-title">
         | 
| 96 | 
            +
                         <div class="author">
         | 
| 97 | 
            +
                          <span class="vcard author">
         | 
| 98 | 
            +
                           <a href="http://identi.ca/otakukuma" class="url" title="otakukuma">
         | 
| 99 | 
            +
                            <img src="http://avatar3.status.net/i/identica/184603-48-20110731211144.png" class="avatar photo" width="48" height="48" alt="otakukuma"/>
         | 
| 100 | 
            +
                             <span class="fn">otakukuma</span>
         | 
| 101 | 
            +
                           </a>
         | 
| 102 | 
            +
                          </span>
         | 
| 103 | 
            +
                          <span class="addressees">
         | 
| 104 | 
            +
                           <a href="http://identi.ca/group/debian" title="debian" class="addressee group">Debian</a>
         | 
| 105 | 
            +
            ,                <a href="http://identi.ca/psep" title="psep" class="addressee account">Pablo Sepulveda P.</a>
         | 
| 106 | 
            +
                          </span>
         | 
| 107 | 
            +
                         </div>
         | 
| 108 | 
            +
                         <p class="entry-content">No thanks. I want something perfectly stable and squeeze is very good for that.</p>
         | 
| 109 | 
            +
                        </div>
         | 
| 110 | 
            +
                        <div class="entry-content">
         | 
| 111 | 
            +
                         <a rel="bookmark" class="timestamp" href="http://identi.ca/notice/95975798">
         | 
| 112 | 
            +
                          <abbr class="published" title="2012-08-10T19:44:09+00:00">about 3 days ago</abbr>
         | 
| 113 | 
            +
                         </a>
         | 
| 114 | 
            +
                          <span class="source">from               <span class="device">web</span>
         | 
| 115 | 
            +
                         </span>
         | 
| 116 | 
            +
                          <a href="http://identi.ca/conversation/95179414#notice-95975798" class="response">in context</a>
         | 
| 117 | 
            +
                        </div>
         | 
| 118 | 
            +
                       </li>
         | 
| 119 | 
            +
                       <li class="hentry notice notice-source-web" id="notice-95975404">
         | 
| 120 | 
            +
                        <div class="entry-title">
         | 
| 121 | 
            +
                         <div class="author">
         | 
| 122 | 
            +
                          <span class="vcard author">
         | 
| 123 | 
            +
                           <a href="http://identi.ca/otakukuma" class="url" title="otakukuma">
         | 
| 124 | 
            +
                            <img src="http://avatar3.status.net/i/identica/184603-48-20110731211144.png" class="avatar photo" width="48" height="48" alt="otakukuma"/>
         | 
| 125 | 
            +
                             <span class="fn">otakukuma</span>
         | 
| 126 | 
            +
                           </a>
         | 
| 127 | 
            +
                          </span>
         | 
| 128 | 
            +
                          <span class="addressees">
         | 
| 129 | 
            +
                           <a href="http://identi.ca/psep" title="psep" class="addressee account">Pablo Sepulveda P.</a>
         | 
| 130 | 
            +
                          </span>
         | 
| 131 | 
            +
                         </div>
         | 
| 132 | 
            +
                         <p class="entry-content">for more recent versions of mplayer and ffmpeg which display webm contents. too old on squeeze</p>
         | 
| 133 | 
            +
                        </div>
         | 
| 134 | 
            +
                        <div class="entry-content">
         | 
| 135 | 
            +
                         <a rel="bookmark" class="timestamp" href="http://identi.ca/notice/95975404">
         | 
| 136 | 
            +
                          <abbr class="published" title="2012-08-10T19:20:12+00:00">about 3 days ago</abbr>
         | 
| 137 | 
            +
                         </a>
         | 
| 138 | 
            +
                          <span class="source">from               <span class="device">web</span>
         | 
| 139 | 
            +
                         </span>
         | 
| 140 | 
            +
                          <a href="http://identi.ca/conversation/95179414#notice-95975404" class="response">in context</a>
         | 
| 141 | 
            +
                        </div>
         | 
| 142 | 
            +
                       </li>
         | 
| 143 | 
            +
                       <li class="hentry notice notice-source-puduku" id="notice-95975254">
         | 
| 144 | 
            +
                        <div class="entry-title">
         | 
| 145 | 
            +
                         <div class="author">
         | 
| 146 | 
            +
                          <span class="vcard author">
         | 
| 147 | 
            +
                           <a href="http://identi.ca/otakukuma" class="url" title="otakukuma">
         | 
| 148 | 
            +
                            <img src="http://avatar3.status.net/i/identica/184603-48-20110731211144.png" class="avatar photo" width="48" height="48" alt="otakukuma"/>
         | 
| 149 | 
            +
                             <span class="fn">otakukuma</span>
         | 
| 150 | 
            +
                           </a>
         | 
| 151 | 
            +
                          </span>
         | 
| 152 | 
            +
                         </div>
         | 
| 153 | 
            +
                         <p class="entry-content">more than a million torrent files from the Internet Archive online <a href="http://ur1.ca/9xhzf" title="http://torrentfreak.com/internet-archive-starts-seeding-1398635-torrents-120807" rel="external">http://ur1.ca/9xhzf</a></p>
         | 
| 154 | 
            +
                        </div>
         | 
| 155 | 
            +
                        <div class="entry-content thumbnails"></div>
         | 
| 156 | 
            +
                        <div class="entry-content">
         | 
| 157 | 
            +
                         <a rel="bookmark" class="timestamp" href="http://identi.ca/notice/95975254">
         | 
| 158 | 
            +
                          <abbr class="published" title="2012-08-10T19:14:38+00:00">about 3 days ago</abbr>
         | 
| 159 | 
            +
                         </a>
         | 
| 160 | 
            +
                          <span class="source">from               <span class="device">puduku</span>
         | 
| 161 | 
            +
                         </span>
         | 
| 162 | 
            +
                        </div>
         | 
| 163 | 
            +
                       </li>
         | 
| 164 | 
            +
                       <li class="hentry notice notice-source-puduku" id="notice-95973696">
         | 
| 165 | 
            +
                        <div class="entry-title">
         | 
| 166 | 
            +
                         <div class="author">
         | 
| 167 | 
            +
                          <span class="vcard author">
         | 
| 168 | 
            +
                           <a href="http://identi.ca/otakukuma" class="url" title="otakukuma">
         | 
| 169 | 
            +
                            <img src="http://avatar3.status.net/i/identica/184603-48-20110731211144.png" class="avatar photo" width="48" height="48" alt="otakukuma"/>
         | 
| 170 | 
            +
                             <span class="fn">otakukuma</span>
         | 
| 171 | 
            +
                           </a>
         | 
| 172 | 
            +
                          </span>
         | 
| 173 | 
            +
                          <span class="addressees">
         | 
| 174 | 
            +
                           <a href="http://identi.ca/group/php" title="php" class="addressee group">PHP</a>
         | 
| 175 | 
            +
                          </span>
         | 
| 176 | 
            +
                         </div>
         | 
| 177 | 
            +
                         <p class="entry-content">!<span class="vcard"><a href="http://identi.ca/group/240/id" class="url" title="PHP (php)"><span class="fn nickname group">php</span></a></span> shell detector <a href="http://ur1.ca/9xhjr" title="https://github.com/emposha/PHP-Shell-Detector" rel="external">http://ur1.ca/9xhjr</a></p>
         | 
| 178 | 
            +
                        </div>
         | 
| 179 | 
            +
                        <div class="entry-content">
         | 
| 180 | 
            +
                         <a rel="bookmark" class="timestamp" href="http://identi.ca/notice/95973696">
         | 
| 181 | 
            +
                          <abbr class="published" title="2012-08-10T17:54:08+00:00">about 3 days ago</abbr>
         | 
| 182 | 
            +
                         </a>
         | 
| 183 | 
            +
                          <span class="source">from               <span class="device">puduku</span>
         | 
| 184 | 
            +
                         </span>
         | 
| 185 | 
            +
                        </div>
         | 
| 186 | 
            +
                       </li>
         | 
| 187 | 
            +
                       <li class="hentry notice notice-source-puduku" id="notice-95963775">
         | 
| 188 | 
            +
                        <div class="entry-title">
         | 
| 189 | 
            +
                         <div class="author">
         | 
| 190 | 
            +
                          <span class="vcard author">
         | 
| 191 | 
            +
                           <a href="http://identi.ca/otakukuma" class="url" title="otakukuma">
         | 
| 192 | 
            +
                            <img src="http://avatar3.status.net/i/identica/184603-48-20110731211144.png" class="avatar photo" width="48" height="48" alt="otakukuma"/>
         | 
| 193 | 
            +
                             <span class="fn">otakukuma</span>
         | 
| 194 | 
            +
                           </a>
         | 
| 195 | 
            +
                          </span>
         | 
| 196 | 
            +
                         </div>
         | 
| 197 | 
            +
                         <p class="entry-content">#<span class="tag"><a href="http://identi.ca/tag/santoku" rel="tag">santoku</a></span> #<span class="tag"><a href="http://identi.ca/tag/mobileforensics" rel="tag">mobileforensics</a></span> <a href="http://ur1.ca/9xef0" title="https://santoku-linux.com/" rel="external">http://ur1.ca/9xef0</a></p>
         | 
| 198 | 
            +
                        </div>
         | 
| 199 | 
            +
                        <div class="entry-content thumbnails"></div>
         | 
| 200 | 
            +
                        <div class="entry-content">
         | 
| 201 | 
            +
                         <a rel="bookmark" class="timestamp" href="http://identi.ca/notice/95963775">
         | 
| 202 | 
            +
                          <abbr class="published" title="2012-08-10T07:53:13+00:00">about 4 days ago</abbr>
         | 
| 203 | 
            +
                         </a>
         | 
| 204 | 
            +
                          <span class="source">from               <span class="device">puduku</span>
         | 
| 205 | 
            +
                         </span>
         | 
| 206 | 
            +
                        </div>
         | 
| 207 | 
            +
                       </li>
         | 
| 208 | 
            +
                       <li class="hentry notice notice-source-puduku" id="notice-95898805">
         | 
| 209 | 
            +
                        <div class="entry-title">
         | 
| 210 | 
            +
                         <div class="author">
         | 
| 211 | 
            +
                          <span class="vcard author">
         | 
| 212 | 
            +
                           <a href="http://identi.ca/otakukuma" class="url" title="otakukuma">
         | 
| 213 | 
            +
                            <img src="http://avatar3.status.net/i/identica/184603-48-20110731211144.png" class="avatar photo" width="48" height="48" alt="otakukuma"/>
         | 
| 214 | 
            +
                             <span class="fn">otakukuma</span>
         | 
| 215 | 
            +
                           </a>
         | 
| 216 | 
            +
                          </span>
         | 
| 217 | 
            +
                         </div>
         | 
| 218 | 
            +
                         <p class="entry-content">nmap -n -sP <a href="http://192.168.10.0/24" title="http://192.168.10.0/24" rel="external">192.168.10.0/24</a> # know all IP addresses of alive hosts on the LAN</p>
         | 
| 219 | 
            +
                        </div>
         | 
| 220 | 
            +
                        <div class="entry-content thumbnails"></div>
         | 
| 221 | 
            +
                        <div class="entry-content">
         | 
| 222 | 
            +
                         <a rel="bookmark" class="timestamp" href="http://identi.ca/notice/95898805">
         | 
| 223 | 
            +
                          <abbr class="published" title="2012-08-07T10:13:13+00:00">about 6 days ago</abbr>
         | 
| 224 | 
            +
                         </a>
         | 
| 225 | 
            +
                          <span class="source">from               <span class="device">puduku</span>
         | 
| 226 | 
            +
                         </span>
         | 
| 227 | 
            +
                        </div>
         | 
| 228 | 
            +
                       </li>
         | 
| 229 | 
            +
                       <li class="hentry notice notice-source-puduku" id="notice-95803076">
         | 
| 230 | 
            +
                        <div class="entry-title">
         | 
| 231 | 
            +
                         <div class="author">
         | 
| 232 | 
            +
                          <span class="vcard author">
         | 
| 233 | 
            +
                           <a href="http://identi.ca/otakukuma" class="url" title="otakukuma">
         | 
| 234 | 
            +
                            <img src="http://avatar3.status.net/i/identica/184603-48-20110731211144.png" class="avatar photo" width="48" height="48" alt="otakukuma"/>
         | 
| 235 | 
            +
                             <span class="fn">otakukuma</span>
         | 
| 236 | 
            +
                           </a>
         | 
| 237 | 
            +
                          </span>
         | 
| 238 | 
            +
                         </div>
         | 
| 239 | 
            +
                         <p class="entry-content">canto left for newsbeuter</p>
         | 
| 240 | 
            +
                        </div>
         | 
| 241 | 
            +
                        <div class="entry-content">
         | 
| 242 | 
            +
                         <a rel="bookmark" class="timestamp" href="http://identi.ca/notice/95803076">
         | 
| 243 | 
            +
                          <abbr class="published" title="2012-08-02T07:35:49+00:00">about 12 days ago</abbr>
         | 
| 244 | 
            +
                         </a>
         | 
| 245 | 
            +
                          <span class="source">from               <span class="device">puduku</span>
         | 
| 246 | 
            +
                         </span>
         | 
| 247 | 
            +
                        </div>
         | 
| 248 | 
            +
                       </li>
         | 
| 249 | 
            +
                       <li class="hentry notice notice-source-puduku" id="notice-95802816">
         | 
| 250 | 
            +
                        <div class="entry-title">
         | 
| 251 | 
            +
                         <div class="author">
         | 
| 252 | 
            +
                          <span class="vcard author">
         | 
| 253 | 
            +
                           <a href="http://identi.ca/otakukuma" class="url" title="otakukuma">
         | 
| 254 | 
            +
                            <img src="http://avatar3.status.net/i/identica/184603-48-20110731211144.png" class="avatar photo" width="48" height="48" alt="otakukuma"/>
         | 
| 255 | 
            +
                             <span class="fn">otakukuma</span>
         | 
| 256 | 
            +
                           </a>
         | 
| 257 | 
            +
                          </span>
         | 
| 258 | 
            +
                         </div>
         | 
| 259 | 
            +
                         <p class="entry-content">debian-multimedia changes its domain name into deb-multimedia. !<span class="vcard"><a href="http://identi.ca/group/14/id" class="url" title="Debian (debian)"><span class="fn nickname group">debian</span></a></span> users, update your apt sources.list</p>
         | 
| 260 | 
            +
                        </div>
         | 
| 261 | 
            +
                        <div class="entry-content">
         | 
| 262 | 
            +
                         <a rel="bookmark" class="timestamp" href="http://identi.ca/notice/95802816">
         | 
| 263 | 
            +
                          <abbr class="published" title="2012-08-02T07:12:24+00:00">about 12 days ago</abbr>
         | 
| 264 | 
            +
                         </a>
         | 
| 265 | 
            +
                          <span class="source">from               <span class="device">puduku</span>
         | 
| 266 | 
            +
                         </span>
         | 
| 267 | 
            +
                          <a href="http://identi.ca/conversation/95179414#notice-95802816" class="response">in context</a>
         | 
| 268 | 
            +
                        </div>
         | 
| 269 | 
            +
                       </li>
         | 
| 270 | 
            +
                       <li class="hentry notice notice-source-puduku" id="notice-95802709">
         | 
| 271 | 
            +
                        <div class="entry-title">
         | 
| 272 | 
            +
                         <div class="author">
         | 
| 273 | 
            +
                          <span class="vcard author">
         | 
| 274 | 
            +
                           <a href="http://identi.ca/otakukuma" class="url" title="otakukuma">
         | 
| 275 | 
            +
                            <img src="http://avatar3.status.net/i/identica/184603-48-20110731211144.png" class="avatar photo" width="48" height="48" alt="otakukuma"/>
         | 
| 276 | 
            +
                             <span class="fn">otakukuma</span>
         | 
| 277 | 
            +
                           </a>
         | 
| 278 | 
            +
                          </span>
         | 
| 279 | 
            +
                         </div>
         | 
| 280 | 
            +
                         <p class="entry-content">debian-multimedia changes its domain name into deb-multimedia</p>
         | 
| 281 | 
            +
                        </div>
         | 
| 282 | 
            +
                        <div class="entry-content">
         | 
| 283 | 
            +
                         <a rel="bookmark" class="timestamp" href="http://identi.ca/notice/95802709">
         | 
| 284 | 
            +
                          <abbr class="published" title="2012-08-02T07:04:18+00:00">about 12 days ago</abbr>
         | 
| 285 | 
            +
                         </a>
         | 
| 286 | 
            +
                          <span class="source">from               <span class="device">puduku</span>
         | 
| 287 | 
            +
                         </span>
         | 
| 288 | 
            +
                        </div>
         | 
| 289 | 
            +
                       </li>
         | 
| 290 | 
            +
                       <li class="hentry notice notice-source-puduku" id="notice-95740331">
         | 
| 291 | 
            +
                        <div class="entry-title">
         | 
| 292 | 
            +
                         <div class="author">
         | 
| 293 | 
            +
                          <span class="vcard author">
         | 
| 294 | 
            +
                           <a href="http://identi.ca/otakukuma" class="url" title="otakukuma">
         | 
| 295 | 
            +
                            <img src="http://avatar3.status.net/i/identica/184603-48-20110731211144.png" class="avatar photo" width="48" height="48" alt="otakukuma"/>
         | 
| 296 | 
            +
                             <span class="fn">otakukuma</span>
         | 
| 297 | 
            +
                           </a>
         | 
| 298 | 
            +
                          </span>
         | 
| 299 | 
            +
                          <span class="addressees">
         | 
| 300 | 
            +
                           <a href="http://identi.ca/group/cli" title="cli" class="addressee group">Command Line Interface</a>
         | 
| 301 | 
            +
                          </span>
         | 
| 302 | 
            +
                         </div>
         | 
| 303 | 
            +
                         <p class="entry-content">add EXIF timestamps to photos <a href="http://ur1.ca/9uua9" title="http://blog.iandexter.net/2012/07/add-exif-timestamps-to-photos.html" rel="external">http://ur1.ca/9uua9</a> !<span class="vcard"><a href="http://identi.ca/group/676/id" class="url" title="Command Line Interface (cli)"><span class="fn nickname group">cli</span></a></span></p>
         | 
| 304 | 
            +
                        </div>
         | 
| 305 | 
            +
                        <div class="entry-content">
         | 
| 306 | 
            +
                         <a rel="bookmark" class="timestamp" href="http://identi.ca/notice/95740331">
         | 
| 307 | 
            +
                          <abbr class="published" title="2012-07-30T07:31:17+00:00">about 15 days ago</abbr>
         | 
| 308 | 
            +
                         </a>
         | 
| 309 | 
            +
                          <span class="source">from               <span class="device">puduku</span>
         | 
| 310 | 
            +
                         </span>
         | 
| 311 | 
            +
                        </div>
         | 
| 312 | 
            +
                       </li>
         | 
| 313 | 
            +
                       <li class="hentry notice notice-source-puduku" id="notice-95709705">
         | 
| 314 | 
            +
                        <div class="entry-title">
         | 
| 315 | 
            +
                         <div class="author">
         | 
| 316 | 
            +
                          <span class="vcard author">
         | 
| 317 | 
            +
                           <a href="http://identi.ca/otakukuma" class="url" title="otakukuma">
         | 
| 318 | 
            +
                            <img src="http://avatar3.status.net/i/identica/184603-48-20110731211144.png" class="avatar photo" width="48" height="48" alt="otakukuma"/>
         | 
| 319 | 
            +
                             <span class="fn">otakukuma</span>
         | 
| 320 | 
            +
                           </a>
         | 
| 321 | 
            +
                          </span>
         | 
| 322 | 
            +
                         </div>
         | 
| 323 | 
            +
                         <p class="entry-content">the statusnet API is not complete and the Twitter API is difficult to find and read on twitter site</p>
         | 
| 324 | 
            +
                        </div>
         | 
| 325 | 
            +
                        <div class="entry-content">
         | 
| 326 | 
            +
                         <a rel="bookmark" class="timestamp" href="http://identi.ca/notice/95709705">
         | 
| 327 | 
            +
                          <abbr class="published" title="2012-07-28T16:21:09+00:00">about 16 days ago</abbr>
         | 
| 328 | 
            +
                         </a>
         | 
| 329 | 
            +
                          <span class="source">from               <span class="device">puduku</span>
         | 
| 330 | 
            +
                         </span>
         | 
| 331 | 
            +
                        </div>
         | 
| 332 | 
            +
                       </li>
         | 
| 333 | 
            +
                       <li class="hentry notice notice-source-puduku" id="notice-95709672">
         | 
| 334 | 
            +
                        <div class="entry-title">
         | 
| 335 | 
            +
                         <div class="author">
         | 
| 336 | 
            +
                          <span class="vcard author">
         | 
| 337 | 
            +
                           <a href="http://identi.ca/otakukuma" class="url" title="otakukuma">
         | 
| 338 | 
            +
                            <img src="http://avatar3.status.net/i/identica/184603-48-20110731211144.png" class="avatar photo" width="48" height="48" alt="otakukuma"/>
         | 
| 339 | 
            +
                             <span class="fn">otakukuma</span>
         | 
| 340 | 
            +
                           </a>
         | 
| 341 | 
            +
                          </span>
         | 
| 342 | 
            +
                         </div>
         | 
| 343 | 
            +
                         <p class="entry-content">source parameter changed</p>
         | 
| 344 | 
            +
                        </div>
         | 
| 345 | 
            +
                        <div class="entry-content">
         | 
| 346 | 
            +
                         <a rel="bookmark" class="timestamp" href="http://identi.ca/notice/95709672">
         | 
| 347 | 
            +
                          <abbr class="published" title="2012-07-28T16:18:48+00:00">about 16 days ago</abbr>
         | 
| 348 | 
            +
                         </a>
         | 
| 349 | 
            +
                          <span class="source">from               <span class="device">puduku</span>
         | 
| 350 | 
            +
                         </span>
         | 
| 351 | 
            +
                        </div>
         | 
| 352 | 
            +
                       </li>
         | 
| 353 | 
            +
                       <li class="hentry notice notice-source-api" id="notice-95709269">
         | 
| 354 | 
            +
                        <div class="entry-title">
         | 
| 355 | 
            +
                         <div class="author">
         | 
| 356 | 
            +
                          <span class="vcard author">
         | 
| 357 | 
            +
                           <a href="http://identi.ca/otakukuma" class="url" title="otakukuma">
         | 
| 358 | 
            +
                            <img src="http://avatar3.status.net/i/identica/184603-48-20110731211144.png" class="avatar photo" width="48" height="48" alt="otakukuma"/>
         | 
| 359 | 
            +
                             <span class="fn">otakukuma</span>
         | 
| 360 | 
            +
                           </a>
         | 
| 361 | 
            +
                          </span>
         | 
| 362 | 
            +
                         </div>
         | 
| 363 | 
            +
                         <p class="entry-content">awk script to play random tones <a href="http://ur1.ca/9ul5z" title="http://kmkeen.com/awk-music/" rel="external">http://ur1.ca/9ul5z</a></p>
         | 
| 364 | 
            +
                        </div>
         | 
| 365 | 
            +
                        <div class="entry-content thumbnails"></div>
         | 
| 366 | 
            +
                        <div class="entry-content">
         | 
| 367 | 
            +
                         <a rel="bookmark" class="timestamp" href="http://identi.ca/notice/95709269">
         | 
| 368 | 
            +
                          <abbr class="published" title="2012-07-28T15:49:30+00:00">about 16 days ago</abbr>
         | 
| 369 | 
            +
                         </a>
         | 
| 370 | 
            +
                          <span class="source">from               <span class="device">api</span>
         | 
| 371 | 
            +
                         </span>
         | 
| 372 | 
            +
                        </div>
         | 
| 373 | 
            +
                       </li>
         | 
| 374 | 
            +
                       <li class="hentry notice notice-source-api" id="notice-95709210">
         | 
| 375 | 
            +
                        <div class="entry-title">
         | 
| 376 | 
            +
                         <div class="author">
         | 
| 377 | 
            +
                          <span class="vcard author">
         | 
| 378 | 
            +
                           <a href="http://identi.ca/otakukuma" class="url" title="otakukuma">
         | 
| 379 | 
            +
                            <img src="http://avatar3.status.net/i/identica/184603-48-20110731211144.png" class="avatar photo" width="48" height="48" alt="otakukuma"/>
         | 
| 380 | 
            +
                             <span class="fn">otakukuma</span>
         | 
| 381 | 
            +
                           </a>
         | 
| 382 | 
            +
                          </span>
         | 
| 383 | 
            +
                          <span class="addressees">
         | 
| 384 | 
            +
                           <a href="http://identi.ca/group/cli" title="cli" class="addressee group">Command Line Interface</a>
         | 
| 385 | 
            +
                          </span>
         | 
| 386 | 
            +
                         </div>
         | 
| 387 | 
            +
                         <p class="entry-content">!<span class="vcard"><a href="http://identi.ca/group/676/id" class="url" title="Command Line Interface (cli)"><span class="fn nickname group">cli</span></a></span> #<span class="tag"><a href="http://identi.ca/tag/awk" rel="tag">awk</a></span> filters <a href="http://ur1.ca/9ul5c" title="http://www.acc.umu.se/~saasha/filters/" rel="external">http://ur1.ca/9ul5c</a></p>
         | 
| 388 | 
            +
                        </div>
         | 
| 389 | 
            +
                        <div class="entry-content thumbnails"></div>
         | 
| 390 | 
            +
                        <div class="entry-content">
         | 
| 391 | 
            +
                         <a rel="bookmark" class="timestamp" href="http://identi.ca/notice/95709210">
         | 
| 392 | 
            +
                          <abbr class="published" title="2012-07-28T15:44:32+00:00">about 16 days ago</abbr>
         | 
| 393 | 
            +
                         </a>
         | 
| 394 | 
            +
                          <span class="source">from               <span class="device">api</span>
         | 
| 395 | 
            +
                         </span>
         | 
| 396 | 
            +
                        </div>
         | 
| 397 | 
            +
                       </li>
         | 
| 398 | 
            +
                       <li class="hentry notice notice-source-web" id="notice-95709196">
         | 
| 399 | 
            +
                        <div class="entry-title">
         | 
| 400 | 
            +
                         <div class="author">
         | 
| 401 | 
            +
                          <span class="vcard author">
         | 
| 402 | 
            +
                           <a href="http://identi.ca/otakukuma" class="url" title="otakukuma">
         | 
| 403 | 
            +
                            <img src="http://avatar3.status.net/i/identica/184603-48-20110731211144.png" class="avatar photo" width="48" height="48" alt="otakukuma"/>
         | 
| 404 | 
            +
                             <span class="fn">otakukuma</span>
         | 
| 405 | 
            +
                           </a>
         | 
| 406 | 
            +
                          </span>
         | 
| 407 | 
            +
                          <span class="addressees">
         | 
| 408 | 
            +
                           <a href="http://identi.ca/group/cli" title="cli" class="addressee group">Command Line Interface</a>
         | 
| 409 | 
            +
            ,                <a href="http://identi.ca/chr" title="chr" class="addressee account">chr</a>
         | 
| 410 | 
            +
                          </span>
         | 
| 411 | 
            +
                         </div>
         | 
| 412 | 
            +
                         <p class="entry-content">Oops, sorry, it's always a problem for me to paste links <a href="http://www.acc.umu.se/~saasha/filters/" title="http://www.acc.umu.se/~saasha/filters/" rel="external">http://www.acc.umu.se/~saasha/filters/</a></p>
         | 
| 413 | 
            +
                        </div>
         | 
| 414 | 
            +
                        <div class="entry-content thumbnails"></div>
         | 
| 415 | 
            +
                        <div class="entry-content">
         | 
| 416 | 
            +
                         <a rel="bookmark" class="timestamp" href="http://identi.ca/notice/95709196">
         | 
| 417 | 
            +
                          <abbr class="published" title="2012-07-28T15:43:33+00:00">about 16 days ago</abbr>
         | 
| 418 | 
            +
                         </a>
         | 
| 419 | 
            +
                          <span class="source">from               <span class="device">web</span>
         | 
| 420 | 
            +
                         </span>
         | 
| 421 | 
            +
                          <a href="http://identi.ca/conversation/95057551#notice-95709196" class="response">in context</a>
         | 
| 422 | 
            +
                        </div>
         | 
| 423 | 
            +
                       </li>
         | 
| 424 | 
            +
                       <li class="hentry notice notice-source-api" id="notice-95708849">
         | 
| 425 | 
            +
                        <div class="entry-title">
         | 
| 426 | 
            +
                         <div class="author">
         | 
| 427 | 
            +
                          <span class="vcard author">
         | 
| 428 | 
            +
                           <a href="http://identi.ca/otakukuma" class="url" title="otakukuma">
         | 
| 429 | 
            +
                            <img src="http://avatar3.status.net/i/identica/184603-48-20110731211144.png" class="avatar photo" width="48" height="48" alt="otakukuma"/>
         | 
| 430 | 
            +
                             <span class="fn">otakukuma</span>
         | 
| 431 | 
            +
                           </a>
         | 
| 432 | 
            +
                          </span>
         | 
| 433 | 
            +
                         </div>
         | 
| 434 | 
            +
                         <p class="entry-content">evilvte 0.5.2 adds the #<span class="tag"><a href="http://identi.ca/tag/solarized" rel="tag">solarized</a></span> color style option. pre-release out now</p>
         | 
| 435 | 
            +
                        </div>
         | 
| 436 | 
            +
                        <div class="entry-content">
         | 
| 437 | 
            +
                         <a rel="bookmark" class="timestamp" href="http://identi.ca/notice/95708849">
         | 
| 438 | 
            +
                          <abbr class="published" title="2012-07-28T15:21:59+00:00">about 16 days ago</abbr>
         | 
| 439 | 
            +
                         </a>
         | 
| 440 | 
            +
                          <span class="source">from               <span class="device">api</span>
         | 
| 441 | 
            +
                         </span>
         | 
| 442 | 
            +
                        </div>
         | 
| 443 | 
            +
                       </li>
         | 
| 444 | 
            +
                       <li class="hentry notice notice-source-api" id="notice-95705589">
         | 
| 445 | 
            +
                        <div class="entry-title">
         | 
| 446 | 
            +
                         <div class="author">
         | 
| 447 | 
            +
                          <span class="vcard author">
         | 
| 448 | 
            +
                           <a href="http://identi.ca/otakukuma" class="url" title="otakukuma">
         | 
| 449 | 
            +
                            <img src="http://avatar3.status.net/i/identica/184603-48-20110731211144.png" class="avatar photo" width="48" height="48" alt="otakukuma"/>
         | 
| 450 | 
            +
                             <span class="fn">otakukuma</span>
         | 
| 451 | 
            +
                           </a>
         | 
| 452 | 
            +
                          </span>
         | 
| 453 | 
            +
                          <span class="addressees">
         | 
| 454 | 
            +
                           <a href="http://identi.ca/group/debian" title="debian" class="addressee group">Debian</a>
         | 
| 455 | 
            +
            ,                <a href="http://identi.ca/group/cli" title="cli" class="addressee group">Command Line Interface</a>
         | 
| 456 | 
            +
                          </span>
         | 
| 457 | 
            +
                         </div>
         | 
| 458 | 
            +
                         <p class="entry-content">#<span class="tag"><a href="http://identi.ca/tag/smxi" rel="tag">smxi</a></span> script for !<span class="vcard"><a href="http://identi.ca/group/14/id" class="url" title="Debian (debian)"><span class="fn nickname group">debian</span></a></span> <a href="http://smxi.org/" title="http://smxi.org/" rel="external">http://smxi.org</a> useful !<span class="vcard"><a href="http://identi.ca/group/676/id" class="url" title="Command Line Interface (cli)"><span class="fn nickname group">cli</span></a></span> tool</p>
         | 
| 459 | 
            +
                        </div>
         | 
| 460 | 
            +
                        <div class="entry-content thumbnails"></div>
         | 
| 461 | 
            +
                        <div class="entry-content">
         | 
| 462 | 
            +
                         <a rel="bookmark" class="timestamp" href="http://identi.ca/notice/95705589">
         | 
| 463 | 
            +
                          <abbr class="published" title="2012-07-28T10:56:48+00:00">about 16 days ago</abbr>
         | 
| 464 | 
            +
                         </a>
         | 
| 465 | 
            +
                          <span class="source">from               <span class="device">api</span>
         | 
| 466 | 
            +
                         </span>
         | 
| 467 | 
            +
                        </div>
         | 
| 468 | 
            +
                       </li>
         | 
| 469 | 
            +
                       <li class="hentry notice notice-source-api" id="notice-95704917">
         | 
| 470 | 
            +
                        <div class="entry-title">
         | 
| 471 | 
            +
                         <div class="author">
         | 
| 472 | 
            +
                          <span class="vcard author">
         | 
| 473 | 
            +
                           <a href="http://identi.ca/otakukuma" class="url" title="otakukuma">
         | 
| 474 | 
            +
                            <img src="http://avatar3.status.net/i/identica/184603-48-20110731211144.png" class="avatar photo" width="48" height="48" alt="otakukuma"/>
         | 
| 475 | 
            +
                             <span class="fn">otakukuma</span>
         | 
| 476 | 
            +
                           </a>
         | 
| 477 | 
            +
                          </span>
         | 
| 478 | 
            +
                         </div>
         | 
| 479 | 
            +
                         <p class="entry-content">#<span class="tag"><a href="http://identi.ca/tag/surf" rel="tag">surf</a></span> the #<span class="tag"><a href="http://identi.ca/tag/suckless" rel="tag">suckless</a></span> browser has a new release (0.5) out !</p>
         | 
| 480 | 
            +
                        </div>
         | 
| 481 | 
            +
                        <div class="entry-content">
         | 
| 482 | 
            +
                         <a rel="bookmark" class="timestamp" href="http://identi.ca/notice/95704917">
         | 
| 483 | 
            +
                          <abbr class="published" title="2012-07-28T10:05:01+00:00">about 16 days ago</abbr>
         | 
| 484 | 
            +
                         </a>
         | 
| 485 | 
            +
                          <span class="source">from               <span class="device">api</span>
         | 
| 486 | 
            +
                         </span>
         | 
| 487 | 
            +
                        </div>
         | 
| 488 | 
            +
                       </li>
         | 
| 489 | 
            +
                       <li class="hentry notice notice-source-api" id="notice-95661447">
         | 
| 490 | 
            +
                        <div class="entry-title">
         | 
| 491 | 
            +
                         <div class="author">
         | 
| 492 | 
            +
                          <span class="vcard author">
         | 
| 493 | 
            +
                           <a href="http://identi.ca/otakukuma" class="url" title="otakukuma">
         | 
| 494 | 
            +
                            <img src="http://avatar3.status.net/i/identica/184603-48-20110731211144.png" class="avatar photo" width="48" height="48" alt="otakukuma"/>
         | 
| 495 | 
            +
                             <span class="fn">otakukuma</span>
         | 
| 496 | 
            +
                           </a>
         | 
| 497 | 
            +
                          </span>
         | 
| 498 | 
            +
                          <span class="addressees">
         | 
| 499 | 
            +
                           <a href="http://identi.ca/group/cli" title="cli" class="addressee group">Command Line Interface</a>
         | 
| 500 | 
            +
                          </span>
         | 
| 501 | 
            +
                         </div>
         | 
| 502 | 
            +
                         <p class="entry-content">!<span class="vcard"><a href="http://identi.ca/group/676/id" class="url" title="Command Line Interface (cli)"><span class="fn nickname group">cli</span></a></span> #<span class="tag"><a href="http://identi.ca/tag/awk" rel="tag">awk</a></span> filters <a href="http://ur1.ca/9u6x7" title="http://s.s/qc_redir?q=html" rel="external">http://ur1.ca/9u6x7</a> entities to txt awk</p>
         | 
| 503 | 
            +
                        </div>
         | 
| 504 | 
            +
                        <div class="entry-content thumbnails"></div>
         | 
| 505 | 
            +
                        <div class="entry-content">
         | 
| 506 | 
            +
                         <a rel="bookmark" class="timestamp" href="http://identi.ca/notice/95661447">
         | 
| 507 | 
            +
                          <abbr class="published" title="2012-07-26T15:49:58+00:00">about 18 days ago</abbr>
         | 
| 508 | 
            +
                         </a>
         | 
| 509 | 
            +
                          <span class="source">from               <span class="device">api</span>
         | 
| 510 | 
            +
                         </span>
         | 
| 511 | 
            +
                          <a href="http://identi.ca/conversation/95057551#notice-95661447" class="response">in context</a>
         | 
| 512 | 
            +
                        </div>
         | 
| 513 | 
            +
                       </li>
         | 
| 514 | 
            +
                       <li class="hentry notice notice-source-api" id="notice-95661441">
         | 
| 515 | 
            +
                        <div class="entry-title">
         | 
| 516 | 
            +
                         <div class="author">
         | 
| 517 | 
            +
                          <span class="vcard author">
         | 
| 518 | 
            +
                           <a href="http://identi.ca/otakukuma" class="url" title="otakukuma">
         | 
| 519 | 
            +
                            <img src="http://avatar3.status.net/i/identica/184603-48-20110731211144.png" class="avatar photo" width="48" height="48" alt="otakukuma"/>
         | 
| 520 | 
            +
                             <span class="fn">otakukuma</span>
         | 
| 521 | 
            +
                           </a>
         | 
| 522 | 
            +
                          </span>
         | 
| 523 | 
            +
                         </div>
         | 
| 524 | 
            +
                         <p class="entry-content">#<span class="tag"><a href="http://identi.ca/tag/awk" rel="tag">awk</a></span> filters <a href="http://s.s/qc_redir?q=html" title="http://s.s/qc_redir?q=html" rel="external">http://s.s/qc_redir?q=html</a> entities to txt awk</p>
         | 
| 525 | 
            +
                        </div>
         | 
| 526 | 
            +
                        <div class="entry-content thumbnails"></div>
         | 
| 527 | 
            +
                        <div class="entry-content">
         | 
| 528 | 
            +
                         <a rel="bookmark" class="timestamp" href="http://identi.ca/notice/95661441">
         | 
| 529 | 
            +
                          <abbr class="published" title="2012-07-26T15:49:41+00:00">about 18 days ago</abbr>
         | 
| 530 | 
            +
                         </a>
         | 
| 531 | 
            +
                          <span class="source">from               <span class="device">api</span>
         | 
| 532 | 
            +
                         </span>
         | 
| 533 | 
            +
                        </div>
         | 
| 534 | 
            +
                       </li>
         | 
| 535 | 
            +
                      </ol>
         | 
| 536 | 
            +
                     </div>
         | 
| 537 | 
            +
                     <ul class="nav" id="pagination">
         | 
| 538 | 
            +
                      <li class="nav_next">
         | 
| 539 | 
            +
                       <a href="http://identi.ca/otakukuma?page=2" rel="next">Before</a>
         | 
| 540 | 
            +
                      </li>
         | 
| 541 | 
            +
                     </ul>
         | 
| 542 | 
            +
                    </div>
         | 
| 543 | 
            +
                   </div>
         | 
| 544 | 
            +
                   <div id="aside_primary" class="aside">
         | 
| 545 | 
            +
                    <div class="profile_block account_profile_block section">
         | 
| 546 | 
            +
                     <div class="entity_actions">
         | 
| 547 | 
            +
                      <h2>User actions</h2>
         | 
| 548 | 
            +
                      <ul>
         | 
| 549 | 
            +
                       <li class="entity_subscribe">
         | 
| 550 | 
            +
                        <a href="http://identi.ca/main/ostatus/nickname/otakukuma" class="entity_remote_subscribe">Subscribe</a>
         | 
| 551 | 
            +
                       </li>
         | 
| 552 | 
            +
                       <li class="entity_tag">
         | 
| 553 | 
            +
                        <a href="http://identi.ca/main/ostatustag" class="entity_remote_tag">List</a>
         | 
| 554 | 
            +
                       </li>
         | 
| 555 | 
            +
                      </ul>
         | 
| 556 | 
            +
                     </div>
         | 
| 557 | 
            +
                     <img src="http://avatar3.status.net/i/identica/184603-96-20110731211144.png" class="ur_face" alt="otakukuma" width="96" height="96"/>
         | 
| 558 | 
            +
                     <p class="profile_block_name">
         | 
| 559 | 
            +
                      <a href="http://identi.ca/otakukuma">otakukuma</a>
         | 
| 560 | 
            +
                     </p>
         | 
| 561 | 
            +
                     <p class="profile_block_location">Kadath</p>
         | 
| 562 | 
            +
                     <a href="http://skingrapher.legtux.org" rel="me" class="profile_block_homepage">http://skingrapher.legtux.org</a>
         | 
| 563 | 
            +
                     <ul class="profile_block_otherprofile_list">
         | 
| 564 | 
            +
                      <li>
         | 
| 565 | 
            +
                       <a href="https://me.yahoo.com/skingrapher" rel="me" class="profile_block_otherprofile" title="OpenID">
         | 
| 566 | 
            +
                        <img src="https://plugins2.status.net/OpenID/icons/openid-16x16.gif" class="profile_block_otherprofile_icon"/>
         | 
| 567 | 
            +
                       </a>
         | 
| 568 | 
            +
                      </li>
         | 
| 569 | 
            +
                     </ul>
         | 
| 570 | 
            +
                     <p class="profile_block_description">command line user on a GNU-Linux system</p>
         | 
| 571 | 
            +
                     <dl class="entity_tags user_profile_tags">
         | 
| 572 | 
            +
                      <dt>Tags</dt>
         | 
| 573 | 
            +
                      <dd>
         | 
| 574 | 
            +
                       <ul class="tags">
         | 
| 575 | 
            +
                        <li>(None)</li>
         | 
| 576 | 
            +
                       </ul>
         | 
| 577 | 
            +
                      </dd>
         | 
| 578 | 
            +
                     </dl>
         | 
| 579 | 
            +
                    </div>
         | 
| 580 | 
            +
                    <div id="generic_section" class="section">
         | 
| 581 | 
            +
                     <h2>Site notice</h2>
         | 
| 582 | 
            +
            <ul>
         | 
| 583 | 
            +
            <li><a href="http://ur1.ca/3j037">API</a></li>
         | 
| 584 | 
            +
            <li><a href="http://ur1.ca/gklg">Status</a></li>
         | 
| 585 | 
            +
            <li><a href="http://status.net/2012/08/04/problems-with-ur1-ca">ur1.ca</a></li>
         | 
| 586 | 
            +
            </ul></div>
         | 
| 587 | 
            +
                    <div id="entity_subscriptions" class="section">
         | 
| 588 | 
            +
                     <h2>
         | 
| 589 | 
            +
                      <a href="http://identi.ca/otakukuma/subscriptions" class="">Following</a>
         | 
| 590 | 
            +
             67</h2>
         | 
| 591 | 
            +
                     <ul class="entities users xoxo">
         | 
| 592 | 
            +
                      <li class="vcard">
         | 
| 593 | 
            +
                       <a href="http://identi.ca/sylvaind" class="url" rel="contact member" title="Sylvain Delafoy">
         | 
| 594 | 
            +
                        <img src="http://avatar3.status.net/i/identica/141675-24-20100305195710.jpeg" width="24" height="24" class="avatar photo" alt="Sylvain Delafoy"/>
         | 
| 595 | 
            +
                        <span class="fn nickname">sylvaind</span>
         | 
| 596 | 
            +
                       </a>
         | 
| 597 | 
            +
                      </li>
         | 
| 598 | 
            +
                      <li class="vcard">
         | 
| 599 | 
            +
                       <a href="http://identi.ca/thimbl" class="url" rel="contact member" title="Thimbl Network">
         | 
| 600 | 
            +
                        <img src="https://secure.gravatar.com/avatar.php?gravatar_id=d53e3e2792268658c30c6f036f4d3111&default=https%3A%2F%2Ftheme2.status.net%2Fneo%2Fdefault-avatar-mini.png&size=24" width="24" height="24" class="avatar photo" alt="Thimbl Network"/>
         | 
| 601 | 
            +
                        <span class="fn nickname">thimbl</span>
         | 
| 602 | 
            +
                       </a>
         | 
| 603 | 
            +
                      </li>
         | 
| 604 | 
            +
                      <li class="vcard">
         | 
| 605 | 
            +
                       <a href="http://identi.ca/lolosailing" class="url" rel="contact member" title="Lolo Sailing">
         | 
| 606 | 
            +
                        <img src="http://avatar3.status.net/i/identica/314626-24-20101103193256.jpeg" width="24" height="24" class="avatar photo" alt="Lolo Sailing"/>
         | 
| 607 | 
            +
                        <span class="fn nickname">lolosailing</span>
         | 
| 608 | 
            +
                       </a>
         | 
| 609 | 
            +
                      </li>
         | 
| 610 | 
            +
                      <li class="vcard">
         | 
| 611 | 
            +
                       <a href="http://identi.ca/pvincent" class="url" rel="contact member" title="pvincent">
         | 
| 612 | 
            +
                        <img src="http://avatar3.status.net/i/identica/66631-24-20111103181846.jpeg" width="24" height="24" class="avatar photo" alt="pvincent"/>
         | 
| 613 | 
            +
                        <span class="fn nickname">pvincent</span>
         | 
| 614 | 
            +
                       </a>
         | 
| 615 | 
            +
                      </li>
         | 
| 616 | 
            +
                      <li class="vcard">
         | 
| 617 | 
            +
                       <a href="http://identi.ca/behuman" class="url" rel="contact member" title="Be Human">
         | 
| 618 | 
            +
                        <img src="http://avatar3.status.net/i/identica/171897-24-20110915142936.png" width="24" height="24" class="avatar photo" alt="Be Human"/>
         | 
| 619 | 
            +
                        <span class="fn nickname">behuman</span>
         | 
| 620 | 
            +
                       </a>
         | 
| 621 | 
            +
                      </li>
         | 
| 622 | 
            +
                      <li class="vcard">
         | 
| 623 | 
            +
                       <a href="http://identi.ca/tmp" class="url" rel="contact member" title="Timothy Patishnock">
         | 
| 624 | 
            +
                        <img src="http://avatar3.status.net/i/identica/485033-24-20110711013944.jpeg" width="24" height="24" class="avatar photo" alt="Timothy Patishnock"/>
         | 
| 625 | 
            +
                        <span class="fn nickname">tmp</span>
         | 
| 626 | 
            +
                       </a>
         | 
| 627 | 
            +
                      </li>
         | 
| 628 | 
            +
                      <li class="vcard">
         | 
| 629 | 
            +
                       <a href="http://identi.ca/fablefou" class="url" rel="contact member" title="fablefou">
         | 
| 630 | 
            +
                        <img src="http://avatar3.status.net/i/identica/142570-24-20100306153921.png" width="24" height="24" class="avatar photo" alt="fablefou"/>
         | 
| 631 | 
            +
                        <span class="fn nickname">fablefou</span>
         | 
| 632 | 
            +
                       </a>
         | 
| 633 | 
            +
                      </li>
         | 
| 634 | 
            +
                      <li class="vcard">
         | 
| 635 | 
            +
                       <a href="http://identi.ca/lopo" class="url" rel="contact member" title="Lopo Lencastre de Almeida">
         | 
| 636 | 
            +
                        <img src="http://avatar3.status.net/i/identica/42184-24-20090304215023.png" width="24" height="24" class="avatar photo" alt="Lopo Lencastre de Almeida"/>
         | 
| 637 | 
            +
                        <span class="fn nickname">lopo</span>
         | 
| 638 | 
            +
                       </a>
         | 
| 639 | 
            +
                      </li>
         | 
| 640 | 
            +
                     </ul>
         | 
| 641 | 
            +
                    </div>
         | 
| 642 | 
            +
                    <div id="entity_subscribers" class="section">
         | 
| 643 | 
            +
                     <h2>
         | 
| 644 | 
            +
                      <a href="http://identi.ca/otakukuma/subscribers" class="">Followers</a>
         | 
| 645 | 
            +
             132</h2>
         | 
| 646 | 
            +
                     <ul class="entities users xoxo">
         | 
| 647 | 
            +
                      <li class="vcard">
         | 
| 648 | 
            +
                       <a href="http://identi.ca/jarabreter" class="url" rel="contact member nofollow" title="Jara Breter">
         | 
| 649 | 
            +
                        <img src="http://avatar3.status.net/i/identica/943748-24-20120809144139.png" width="24" height="24" class="avatar photo" alt="Jara Breter"/>
         | 
| 650 | 
            +
                        <span class="fn nickname">jarabreter</span>
         | 
| 651 | 
            +
                       </a>
         | 
| 652 | 
            +
                      </li>
         | 
| 653 | 
            +
                      <li class="vcard">
         | 
| 654 | 
            +
                       <a href="http://identi.ca/surehybreter" class="url" rel="contact member nofollow" title="Surehy Breter">
         | 
| 655 | 
            +
                        <img src="http://avatar3.status.net/i/identica/914192-24-20120808130921.png" width="24" height="24" class="avatar photo" alt="Surehy Breter"/>
         | 
| 656 | 
            +
                        <span class="fn nickname">surehybreter</span>
         | 
| 657 | 
            +
                       </a>
         | 
| 658 | 
            +
                      </li>
         | 
| 659 | 
            +
                      <li class="vcard">
         | 
| 660 | 
            +
                       <a href="http://identi.ca/jboynyc" class="url" rel="contact member nofollow" title="John">
         | 
| 661 | 
            +
                        <img src="http://avatar3.status.net/i/identica/231663-24-20100811151853.png" width="24" height="24" class="avatar photo" alt="John"/>
         | 
| 662 | 
            +
                        <span class="fn nickname">jboynyc</span>
         | 
| 663 | 
            +
                       </a>
         | 
| 664 | 
            +
                      </li>
         | 
| 665 | 
            +
                      <li class="vcard">
         | 
| 666 | 
            +
                       <a href="http://identi.ca/aracnus" class="url" rel="contact member nofollow" title="Frederico Goncalves Guimaraes">
         | 
| 667 | 
            +
                        <img src="http://avatar3.status.net/i/identica/75-24-20090619102418.png" width="24" height="24" class="avatar photo" alt="Frederico Goncalves Guimaraes"/>
         | 
| 668 | 
            +
                        <span class="fn nickname">aracnus</span>
         | 
| 669 | 
            +
                       </a>
         | 
| 670 | 
            +
                      </li>
         | 
| 671 | 
            +
                      <li class="vcard">
         | 
| 672 | 
            +
                       <a href="http://identi.ca/sylvaind" class="url" rel="contact member nofollow" title="Sylvain Delafoy">
         | 
| 673 | 
            +
                        <img src="http://avatar3.status.net/i/identica/141675-24-20100305195710.jpeg" width="24" height="24" class="avatar photo" alt="Sylvain Delafoy"/>
         | 
| 674 | 
            +
                        <span class="fn nickname">sylvaind</span>
         | 
| 675 | 
            +
                       </a>
         | 
| 676 | 
            +
                      </li>
         | 
| 677 | 
            +
                      <li class="vcard">
         | 
| 678 | 
            +
                       <a href="http://identi.ca/merterrentacar" class="url" rel="contact member nofollow" title="MerterRentACar">
         | 
| 679 | 
            +
                        <img src="https://secure.gravatar.com/avatar.php?gravatar_id=033cae45b317a8fc1ff350a70eb144bf&default=https%3A%2F%2Ftheme2.status.net%2Fneo%2Fdefault-avatar-mini.png&size=24" width="24" height="24" class="avatar photo" alt="MerterRentACar"/>
         | 
| 680 | 
            +
                        <span class="fn nickname">merterrentacar</span>
         | 
| 681 | 
            +
                       </a>
         | 
| 682 | 
            +
                      </li>
         | 
| 683 | 
            +
                      <li class="vcard">
         | 
| 684 | 
            +
                       <a href="http://identi.ca/sofialegentile" class="url" rel="contact member nofollow" title="Sofia">
         | 
| 685 | 
            +
                        <img src="http://avatar3.status.net/i/identica/776550-24-20120615115423.jpeg" width="24" height="24" class="avatar photo" alt="Sofia"/>
         | 
| 686 | 
            +
                        <span class="fn nickname">sofialegentile</span>
         | 
| 687 | 
            +
                       </a>
         | 
| 688 | 
            +
                      </li>
         | 
| 689 | 
            +
                      <li class="vcard">
         | 
| 690 | 
            +
                       <a href="http://identi.ca/tdey" class="url" rel="contact member nofollow" title="Tdey">
         | 
| 691 | 
            +
                        <img src="http://avatar3.status.net/i/identica/650791-24-20120402123557.png" width="24" height="24" class="avatar photo" alt="Tdey"/>
         | 
| 692 | 
            +
                        <span class="fn nickname">tdey</span>
         | 
| 693 | 
            +
                       </a>
         | 
| 694 | 
            +
                      </li>
         | 
| 695 | 
            +
                     </ul>
         | 
| 696 | 
            +
                    </div>
         | 
| 697 | 
            +
                    <div id="entity_groups" class="section">
         | 
| 698 | 
            +
                     <h2>
         | 
| 699 | 
            +
                      <a href="http://identi.ca/otakukuma/groups" class="">Groups</a>
         | 
| 700 | 
            +
             111</h2>
         | 
| 701 | 
            +
                     <ul class="entities groups xoxo">
         | 
| 702 | 
            +
                      <li class="vcard">
         | 
| 703 | 
            +
                       <a title="Command Line Interface" href="http://identi.ca/group/cli" rel="contact group" class="url">
         | 
| 704 | 
            +
                        <img src="https://theme2.status.net/neo/default-avatar-mini.png" width="24" height="24" class="avatar photo" alt="Command Line Interface"/>
         | 
| 705 | 
            +
                        <span class="fn org nickname">cli</span>
         | 
| 706 | 
            +
                       </a>
         | 
| 707 | 
            +
                      </li>
         | 
| 708 | 
            +
                      <li class="vcard">
         | 
| 709 | 
            +
                       <a title="Linux" href="http://identi.ca/group/linux" rel="contact group" class="url">
         | 
| 710 | 
            +
                        <img src="http://avatar.identi.ca/56-24-20090604093321.png" width="24" height="24" class="avatar photo" alt="Linux"/>
         | 
| 711 | 
            +
                        <span class="fn org nickname">linux</span>
         | 
| 712 | 
            +
                       </a>
         | 
| 713 | 
            +
                      </li>
         | 
| 714 | 
            +
                      <li class="vcard">
         | 
| 715 | 
            +
                       <a title="Uzbl Browser" href="http://identi.ca/group/uzbl" rel="contact group" class="url">
         | 
| 716 | 
            +
                        <img src="http://avatar.identi.ca/2718-24-20090508211508.png" width="24" height="24" class="avatar photo" alt="Uzbl Browser"/>
         | 
| 717 | 
            +
                        <span class="fn org nickname">uzbl</span>
         | 
| 718 | 
            +
                       </a>
         | 
| 719 | 
            +
                      </li>
         | 
| 720 | 
            +
                      <li class="vcard">
         | 
| 721 | 
            +
                       <a title="Linux From Scratch" href="http://identi.ca/group/lfs" rel="contact group" class="url">
         | 
| 722 | 
            +
                        <img src="http://avatar.identi.ca/4937-24-20090919033952.png" width="24" height="24" class="avatar photo" alt="Linux From Scratch"/>
         | 
| 723 | 
            +
                        <span class="fn org nickname">lfs</span>
         | 
| 724 | 
            +
                       </a>
         | 
| 725 | 
            +
                      </li>
         | 
| 726 | 
            +
                      <li class="vcard">
         | 
| 727 | 
            +
                       <a title="ELinks" href="http://identi.ca/group/elinks" rel="contact group" class="url">
         | 
| 728 | 
            +
                        <img src="https://theme2.status.net/neo/default-avatar-mini.png" width="24" height="24" class="avatar photo" alt="ELinks"/>
         | 
| 729 | 
            +
                        <span class="fn org nickname">elinks</span>
         | 
| 730 | 
            +
                       </a>
         | 
| 731 | 
            +
                      </li>
         | 
| 732 | 
            +
                      <li class="vcard">
         | 
| 733 | 
            +
                       <a title="SPIP" href="http://identi.ca/group/spip" rel="contact group" class="url">
         | 
| 734 | 
            +
                        <img src="http://avatar.identi.ca/1477-24-20090307134632.png" width="24" height="24" class="avatar photo" alt="SPIP"/>
         | 
| 735 | 
            +
                        <span class="fn org nickname">spip</span>
         | 
| 736 | 
            +
                       </a>
         | 
| 737 | 
            +
                      </li>
         | 
| 738 | 
            +
                      <li class="vcard">
         | 
| 739 | 
            +
                       <a title="The Z SHell Group" href="http://identi.ca/group/zsh" rel="contact group" class="url">
         | 
| 740 | 
            +
                        <img src="http://avatar.identi.ca/22887-original-20090124215156.jpeg" width="24" height="24" class="avatar photo" alt="The Z SHell Group"/>
         | 
| 741 | 
            +
                        <span class="fn org nickname">zsh</span>
         | 
| 742 | 
            +
                       </a>
         | 
| 743 | 
            +
                      </li>
         | 
| 744 | 
            +
                      <li class="vcard">
         | 
| 745 | 
            +
                       <a title="Vim Users" href="http://identi.ca/group/vim" rel="contact group" class="url">
         | 
| 746 | 
            +
                        <img src="http://avatar.identi.ca/283-24-20090207132942.png" width="24" height="24" class="avatar photo" alt="Vim Users"/>
         | 
| 747 | 
            +
                        <span class="fn org nickname">vim</span>
         | 
| 748 | 
            +
                       </a>
         | 
| 749 | 
            +
                      </li>
         | 
| 750 | 
            +
                     </ul>
         | 
| 751 | 
            +
                    </div>
         | 
| 752 | 
            +
                    <div id="entity_statistics" class="section">
         | 
| 753 | 
            +
                     <h2>Statistics</h2>
         | 
| 754 | 
            +
                     <dl class="entity_user-id">
         | 
| 755 | 
            +
                      <dt>User ID</dt>
         | 
| 756 | 
            +
                      <dd>184603</dd>
         | 
| 757 | 
            +
                     </dl>
         | 
| 758 | 
            +
                     <dl class="entity_member-since">
         | 
| 759 | 
            +
                      <dt>Member since</dt>
         | 
| 760 | 
            +
                      <dd>22 May 2010</dd>
         | 
| 761 | 
            +
                     </dl>
         | 
| 762 | 
            +
                     <dl class="entity_notices">
         | 
| 763 | 
            +
                      <dt>Notices</dt>
         | 
| 764 | 
            +
                      <dd>2326</dd>
         | 
| 765 | 
            +
                     </dl>
         | 
| 766 | 
            +
                     <dl class="entity_daily_notices">
         | 
| 767 | 
            +
                      <dt>Daily average</dt>
         | 
| 768 | 
            +
                      <dd>3</dd>
         | 
| 769 | 
            +
                     </dl>
         | 
| 770 | 
            +
                    </div>
         | 
| 771 | 
            +
                    <div id="export_data" class="section">
         | 
| 772 | 
            +
                     <h2>Feeds</h2>
         | 
| 773 | 
            +
                     <ul class="xoxo">
         | 
| 774 | 
            +
                      <li>
         | 
| 775 | 
            +
                       <a href="http://identi.ca/api/statuses/user_timeline/184603.as" class="json" type="application/stream+json" title="Notice feed for otakukuma (Activity Streams JSON)">Activity Streams</a>
         | 
| 776 | 
            +
                      </li>
         | 
| 777 | 
            +
                      <li>
         | 
| 778 | 
            +
                       <a href="http://identi.ca/otakukuma/rss" class="rss" type="application/rdf+xml" title="Notice feed for otakukuma (RSS 1.0)">RSS 1.0</a>
         | 
| 779 | 
            +
                      </li>
         | 
| 780 | 
            +
                      <li>
         | 
| 781 | 
            +
                       <a href="http://identi.ca/api/statuses/user_timeline/184603.rss" class="rss" type="application/rss+xml" title="Notice feed for otakukuma (RSS 2.0)">RSS 2.0</a>
         | 
| 782 | 
            +
                      </li>
         | 
| 783 | 
            +
                      <li>
         | 
| 784 | 
            +
                       <a href="http://identi.ca/api/statuses/user_timeline/184603.atom" class="atom" type="application/atom+xml" title="Notice feed for otakukuma (Atom)">Atom</a>
         | 
| 785 | 
            +
                      </li>
         | 
| 786 | 
            +
                      <li>
         | 
| 787 | 
            +
                       <a href="http://identi.ca/otakukuma/foaf" class="foaf" type="application/rdf+xml" title="FOAF for otakukuma">FOAF</a>
         | 
| 788 | 
            +
                      </li>
         | 
| 789 | 
            +
                     </ul>
         | 
| 790 | 
            +
                    </div>
         | 
| 791 | 
            +
                   </div>
         | 
| 792 | 
            +
                  </div>
         | 
| 793 | 
            +
                 </div>
         | 
| 794 | 
            +
                </div>
         | 
| 795 | 
            +
               </div>
         | 
| 796 | 
            +
               <div id="footer">
         | 
| 797 | 
            +
                <ul class="nav" id="site_nav_global_secondary">
         | 
| 798 | 
            +
                 <li>
         | 
| 799 | 
            +
                  <a href="http://identi.ca/doc/help">Help</a>
         | 
| 800 | 
            +
                 </li>
         | 
| 801 | 
            +
                 <li>
         | 
| 802 | 
            +
                  <a href="http://identi.ca/doc/about">About</a>
         | 
| 803 | 
            +
                 </li>
         | 
| 804 | 
            +
                 <li>
         | 
| 805 | 
            +
                  <a href="http://identi.ca/doc/faq">FAQ</a>
         | 
| 806 | 
            +
                 </li>
         | 
| 807 | 
            +
                 <li>
         | 
| 808 | 
            +
                  <a href="http://identi.ca/doc/tos">TOS</a>
         | 
| 809 | 
            +
                 </li>
         | 
| 810 | 
            +
                 <li>
         | 
| 811 | 
            +
                  <a href="http://identi.ca/doc/privacy">Privacy</a>
         | 
| 812 | 
            +
                 </li>
         | 
| 813 | 
            +
                 <li>
         | 
| 814 | 
            +
                  <a href="http://identi.ca/doc/source">Source</a>
         | 
| 815 | 
            +
                 </li>
         | 
| 816 | 
            +
                 <li>
         | 
| 817 | 
            +
                  <a href="http://identi.ca/main/version">Version</a>
         | 
| 818 | 
            +
                 </li>
         | 
| 819 | 
            +
                 <li>
         | 
| 820 | 
            +
                  <a href="http://identi.ca/doc/contact">Contact</a>
         | 
| 821 | 
            +
                 </li>
         | 
| 822 | 
            +
                </ul>
         | 
| 823 | 
            +
            <p><strong>Identi.ca</strong> is a microblogging service brought to you by <a href="http://status.net/">Status.net</a>. It runs the <a href="http://status.net/">StatusNet</a> microblogging software, version 1.1.0-release, available under the <a href="http://www.fsf.org/licensing/licenses/agpl-3.0.html">GNU Affero General Public License</a>.</p>
         | 
| 824 | 
            +
                <p>
         | 
| 825 | 
            +
                 <img id="license_cc" src="https://i.creativecommons.org/l/by/3.0/80x15.png" alt="Creative Commons Attribution 3.0" width="80" height="15"/>
         | 
| 826 | 
            +
             All Identi.ca content and data are available under the <a class="license" rel="external license" href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0</a> license.</p>
         | 
| 827 | 
            +
                <p>
         | 
| 828 | 
            +
                 <a href="#" id="mobile-toggle-enable">Switch to mobile site layout.</a>
         | 
| 829 | 
            +
                </p>
         | 
| 830 | 
            +
                <div>
         | 
| 831 | 
            +
                 <a href="http://builtinmtl.com/">Built in Montreal</a>
         | 
| 832 | 
            +
                </div>
         | 
| 833 | 
            +
               </div>
         | 
| 834 | 
            +
              </div>
         | 
| 835 | 
            +
              <script type="text/javascript" src="https://js2.status.net/jquery.min.js?version=1.1.0-release"> </script>
         | 
| 836 | 
            +
              <script type="text/javascript" src="https://js2.status.net/jquery.form.min.js?version=1.1.0-release"> </script>
         | 
| 837 | 
            +
              <script type="text/javascript" src="https://js2.status.net/jquery-ui.min.js?version=1.1.0-release"> </script>
         | 
| 838 | 
            +
              <script type="text/javascript" src="https://js2.status.net/jquery.cookie.min.js?version=1.1.0-release"> </script>
         | 
| 839 | 
            +
              <script type="text/javascript">/*<![CDATA[*/ if (typeof window.JSON !== "object") { $.getScript("https://identi.ca/js/json2.min.js"); } /*]]>*/</script>
         | 
| 840 | 
            +
              <script type="text/javascript" src="https://js2.status.net/jquery.joverlay.min.js?version=1.1.0-release"> </script>
         | 
| 841 | 
            +
              <script type="text/javascript" src="https://js2.status.net/jquery.infieldlabel.min.js?version=1.1.0-release"> </script>
         | 
| 842 | 
            +
              <script type="text/javascript" src="https://js2.status.net/util.min.js?version=1.1.0-release"> </script>
         | 
| 843 | 
            +
              <script type="text/javascript">/*<![CDATA[*/ var _peopletagAC = "http://identi.ca/main/peopletagautocomplete"; /*]]>*/</script>
         | 
| 844 | 
            +
              <script type="text/javascript">/*<![CDATA[*/ SN.messages={"showmore_tooltip":"Show more","reply_submit":"Reply","reply_placeholder":"Write a reply...","realtime_play":"Play","realtime_play_tooltip":"Play","realtime_pause":"Pause","realtime_pause_tooltip":"Pause","realtime_popup":"Pop up","realtime_popup_tooltip":"Pop up in a window"} /*]]>*/</script>
         | 
| 845 | 
            +
              <script type="text/javascript">/*<![CDATA[*/ if (window.top !== window.self) { document.write = ""; window.top.location = window.self.location; setTimeout(function () { document.body.innerHTML = ""; }, 1); window.self.onload = function () { document.body.innerHTML = ""; }; } /*]]>*/</script>
         | 
| 846 | 
            +
              <script type="text/javascript" src="https://plugins2.status.net/OStatus/js/ostatus.js"> </script>
         | 
| 847 | 
            +
              <script type="text/javascript">/*<![CDATA[*/
         | 
| 848 | 
            +
                        $(function() {
         | 
| 849 | 
            +
                            $("#mobile-toggle-disable").click(function() {
         | 
| 850 | 
            +
                                $.cookie("MobileOverride", "0", {path: "/"});
         | 
| 851 | 
            +
                                window.location.reload();
         | 
| 852 | 
            +
                                return false;
         | 
| 853 | 
            +
                            });
         | 
| 854 | 
            +
                            $("#mobile-toggle-enable").click(function() {
         | 
| 855 | 
            +
                                $.cookie("MobileOverride", "1", {path: "/"});
         | 
| 856 | 
            +
                                window.location.reload();
         | 
| 857 | 
            +
                                return false;
         | 
| 858 | 
            +
                            });
         | 
| 859 | 
            +
                            $("#navtoggle").click(function () {
         | 
| 860 | 
            +
                                      $("#site_nav_local_views").fadeToggle();
         | 
| 861 | 
            +
                                      var text = $("#navtoggle").text();
         | 
| 862 | 
            +
                                      $("#navtoggle").text(
         | 
| 863 | 
            +
                                      text == "Show Navigation" ? "Hide Navigation" : "Show Navigation");
         | 
| 864 | 
            +
                            });
         | 
| 865 | 
            +
                        }); /*]]>*/</script>
         | 
| 866 | 
            +
              <script type="text/javascript" src="https://plugins2.status.net/Realtime/realtimeupdate.min.js"> </script>
         | 
| 867 | 
            +
              <script type="text/javascript" src="https://d3ds63zw57jt09.cloudfront.net/1.9/pusher.min.js"> </script>
         | 
| 868 | 
            +
              <script type="text/javascript" src="https://identi.ca//local/plugins/Pusher/pusherupdater.js"> </script>
         | 
| 869 | 
            +
              <script type="text/javascript">/*<![CDATA[*/  $(document).ready(function() {  RealtimeUpdate.initActions("http:\/\/identi.ca\/otakukuma?realtime=1", "identica-58c2cc7b5546100b7ec82cb77f546312", "http:\/\/identi.ca\/plugins\/Realtime\/", "http:\/\/identi.ca\/main\/channel\/58c2cc7b5546100b7ec82cb77f546312\/keepalive", "http:\/\/identi.ca\/main\/channel\/58c2cc7b5546100b7ec82cb77f546312\/close"); RealtimeUpdate.init(0, "http://identi.ca/notice/0000000000");  PusherUpdater.init("630df9daf3ac2d981076", "identica-58c2cc7b5546100b7ec82cb77f546312", true);});  /*]]>*/</script>
         | 
| 870 | 
            +
              <script type="text/javascript" src="https://plugins2.status.net/Bookmark/js/bookmark.js"> </script>
         | 
| 871 | 
            +
              <script type="text/javascript" src="https://plugins2.status.net/Event/event.js"> </script>
         | 
| 872 | 
            +
              <script type="text/javascript" src="https://plugins2.status.net/QnA/js/qna.js"> </script>
         | 
| 873 | 
            +
             </body>
         | 
| 874 | 
            +
            <!-- 4717ms --></html>
         | 
    
        metadata
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: ostatus
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.0. | 
| 4 | 
            +
              version: 0.0.12
         | 
| 5 5 | 
             
              prerelease: 
         | 
| 6 6 | 
             
            platform: ruby
         | 
| 7 7 | 
             
            authors:
         | 
| @@ -9,7 +9,7 @@ authors: | |
| 9 9 | 
             
            autorequire: 
         | 
| 10 10 | 
             
            bindir: bin
         | 
| 11 11 | 
             
            cert_chain: []
         | 
| 12 | 
            -
            date: 2012-08- | 
| 12 | 
            +
            date: 2012-08-14 00:00:00.000000000 Z
         | 
| 13 13 | 
             
            dependencies:
         | 
| 14 14 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 15 15 | 
             
              name: ratom
         | 
| @@ -96,6 +96,7 @@ files: | |
| 96 96 | 
             
            - test/example_feed_false_connected.atom
         | 
| 97 97 | 
             
            - test/example_feed_link_without_href.atom
         | 
| 98 98 | 
             
            - test/example_page.html
         | 
| 99 | 
            +
            - test/mime_type_bug_feed.atom
         | 
| 99 100 | 
             
            homepage: http://github.com/hotsh/ostatus
         | 
| 100 101 | 
             
            licenses: []
         | 
| 101 102 | 
             
            post_install_message: 
         | 
| @@ -133,3 +134,4 @@ test_files: | |
| 133 134 | 
             
            - test/example_feed_false_connected.atom
         | 
| 134 135 | 
             
            - test/example_feed_link_without_href.atom
         | 
| 135 136 | 
             
            - test/example_page.html
         | 
| 137 | 
            +
            - test/mime_type_bug_feed.atom
         |