Add a way of seeing other users' chatter
[blerg.git] / www / index.html
1 <!DOCTYPE html>
2 <!-- Blerg is (C) 2011 The Dominion of Awesome, and is distributed under a
3      BSD-style license.  Please see the COPYING file for details.
4   --> 
5 <html>
6 <head>
7 <title>Blërg!</title>
8 <link rel="stylesheet" href="css/blerg.css">
9 <script type="text/javascript" src="js/prototype.js"></script>
10 <script type="text/javascript" src="js/Bytex64.FX.js"></script>
11 <script type="text/javascript" src="js/blerg.js"></script>
12 <meta http-equiv="content-type" content="text/html; charset=utf-8">
13 <meta name="viewport" content="width=device-width, user-scalable=no, maximum-scale=1.0"/>
14 </head>
15 <body onload="init()">
16
17 <div id="header">
18   <div id="siteid">
19     <img src="/images/blerglogo.png" class="logo" width="125" height="122">
20     <h1><a href="/">Blërg!</a></h1>
21     <h2><span name="section">Welcome</span></h2>
22     <div id="usercontrols" style="display:none"><a href="#" name="user.reflink">[chatter]</a></div>
23   </div>
24   <div id="controls">
25     <form style="font-size: small" id="login" onsubmit="loginStatus.login($('login.username').value, $('login.password').value); return false">
26       username: <input type="text" id="login.username" size="10">
27       password: <input type="password" id="login.password" size="10">
28       <input type="submit" value="login">
29       <p style="font-size: large"><a href="#" onclick="$('welcome').hide(); $('items').hide(); $('post').hide(); $('signup').show(); return false;">I want to blërg!</a></p>
30     </form>
31     <div id="logout" style="display: none">
32       Hello, <a href="#" id="userlink"></a>. <a href="#" onclick="loginStatus.logout(); return false">logout</a><br>
33       <a href="#" onclick="postPopup(); return false">Write new entry</a><br>
34       <a href="#" id="reflink">Chatter about me</a>
35     </div>
36     <div id="rss" style="display:none"><a id="rsslink" href=""><img src="/images/rss.png" width="16" height="16"> RSS</a></div>
37   </div>
38   <div style="clear:both"></div>
39   <div id="post" style="display:none">
40     <h2>What's on your mind?</h2>
41     <form onsubmit="loginStatus.post($('post.content').value); return false">
42       <textarea rows="3" id="post.content" onkeydown="resizePostContent()"></textarea>
43       <div id="post.buttons">
44         <input type="submit" value="close" onclick="$('post').hide(); return false">
45         <input type="submit" value="post">
46       </div>
47     </form>
48   </div>
49 </div>
50
51
52 <div id="main">
53   <div id="items" style="display:none">
54   </div>
55
56   <div id="welcome">
57
58   <div id="latest">
59     <h2>Latest tags</h2>
60     <div id="latest-tags"></div>
61     <h2>Latest posts</h2>
62     <div id="latest-posts"></div>
63   </div>
64
65   <h2>I am 12 and what is this</h2>
66
67   <p>Blërg is a microblogging platform.  Or maybe a miniblogging
68   platform.  Blërg is not sure.  Blërg is a lot like <a
69   href="http://twitter.com/">Twitter</a>, but aims to fix some of its
70   idiosyncracies.  Blërg does not want to be a full blogging platform
71   like <a href="http://wordpress.com/">Wordpress</a> or <a
72   href="http://livejournal.com/">Livejournal</a>.  Blërg is also an <a
73   href="/doc/">open source tagged text database engine</a> written in C
74   that does the back-end work. Blërg's author finds it entertaining to
75   anthropomorphize Blërg in the third person.</p>
76
77   <h2>But what's wrong with Twitter?</h2>
78
79   <p>I'M GLAD YOU ASKED. There are two aspects of Twitter that just bug
80   me as an engineer:</p>
81   
82   <ol>
83   <li><strong>Ruby on Rails</strong> - Using rails to prototype a system is
84   fine &mdash; scaling up to a million hits a day with it is just a bad
85   idea. As the service grew, I'm sure it cost them a lot more time than
86   it saved.</li>
87   <li><strong>140 characters is not enough</strong> - I routinely write
88   sentences longer than 140 characters, so I can't even begin to imagine
89   making a point in such a small space.  This textual confinement has
90   led to the rise of URL shorteners, which are <a
91   href="http://bytex64.net/blog/e2256">breaking the internet</a>.
92   </ol>
93
94   <p>Blërg solves these problems by applying absurd reactionary
95   engineering. Blërg's database backend is a custom C program that
96   handles requests over HTTP and stores data in a very small and
97   efficient indexed log-structured database. The frontend is done
98   entirely in client-side Javascript. A single post can be up to 65535
99   bytes in length.</p> 
100
101   <p>Which is not to say that I believe writing your service in C is the
102   solution to all your problems.  Clearly, this approach has just as
103   many hairy problems that will bite you in the ass sooner or later.
104   The best way, as with most things, lies somewhere in the middle of
105   high-level abstraction and ZOMGHARDCORE OPTIMIZATION.</p>
106
107   <h2>Is this a joke?</h2>
108
109   <p>Yes. No. Maybe.  Blërg is an exercise in constructive satire &mdash; a
110   fully functional service created in a fit of hubris to poke fun at Twitter's
111   engineering.  It's just for fun, but no one is going to keep you from using
112   it seriously. :]</p>
113
114   <h2>Tell me more about this database engine.</h2>
115
116   <p>Here, take a look at the <a href="/doc/#design">design docs</a>.</p>
117
118   <h2>I'm a social media whore and I want to share links!</h2>
119
120   <p>I've created a bookmarklet just for you: <a href="javascript:location.href='http://blerg.dominionofawesome.com/?post/'+encodeURIComponent(document.title)+'/'+encodeURIComponent(location.href)">Blërg it!</a></p>
121
122   </div>
123
124   <div id="navigation">
125     <a id="newer_link" href="#" onclick="newer_page(); return false" style="display:none">&lt;&lt; newer</a>
126     <a id="older_link" href="#" onclick="older_page(); return false" style="display:none">older &gt;&gt;</a>
127   </div>
128
129   <div id="signup" style="display:none">
130     <h2>Sign Up</h2>
131     <table>
132       <tr><td>Username:</td><td><input type="text" id="signup.username" width="40"></td>
133       <tr><td>Password:</td><td><input type="password" id="signup.password" width="40"></td>
134     </table>
135     <button onclick="signup()">Signup</button> <button onclick="signup_cancel()">Cancel</button>
136   </div>
137 </div>
138
139 </body>
140 </html>