-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
kshep
committed
Jan 4, 2009
1 parent
2e0f927
commit faf0b96
Showing
67 changed files
with
535 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | ||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||
|
||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us"> | ||
<head> | ||
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
<title>{{ page.title }}</title> | ||
<meta name="author" content="Microblog.org" /> | ||
|
||
<!-- syntax highlighting CSS --> | ||
<link rel="stylesheet" href="/css/syntax.css" type="text/css" /> | ||
|
||
<!-- Homepage CSS --> | ||
<link rel="stylesheet" href="/css/screen.css" type="text/css" media="screen, projection" /> | ||
</head> | ||
<body> | ||
|
||
<div class="header"> | ||
<div class="title"> | ||
<a class="name" href="/">Microblog.org</a> | ||
<a class="right" href="/">home</a> | ||
</div> | ||
</div> | ||
|
||
<div class="content"> | ||
{{ content }} | ||
</div> | ||
|
||
<div class="footer"> | ||
<div class="footer_content"> | ||
<!-- Creative Commons License --> | ||
<span style="float: left;">All content on this site is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/2.5/">Creative Commons License</a></span> | ||
<!-- /Creative Commons License --> | ||
<span style="float: right;">Powered by <a href="http://github.com/mojombo/jekyll" title="Powered by Jekyll">Jekyll</a></span> | ||
|
||
</div> | ||
</div> | ||
|
||
<script type="text/javascript"> | ||
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); | ||
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); | ||
</script> | ||
<script type="text/javascript"> | ||
var pageTracker = _gat._getTracker("UA-363173-1"); | ||
pageTracker._trackPageview(); | ||
</script> | ||
|
||
</body> | ||
<script type="text/javascript"> | ||
//<![CDATA[ | ||
(function() { | ||
var links = document.getElementsByTagName('a'); | ||
var query = '?'; | ||
for(var i = 0; i < links.length; i++) { | ||
if(links[i].href.indexOf('#disqus_thread') >= 0) { query += 'url' + i + '=' + encodeURIComponent(links[i].href) + '&'; } } | ||
document.write('<script type="text/javascript" src="http://disqus.com/forums/kshep/get_num_replies.js' + query + '"></' + 'script>'); | ||
})(); | ||
//]]> | ||
</script> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,210 @@ | ||
/*****************************************************************************/ | ||
/* | ||
/* Common | ||
/* | ||
/*****************************************************************************/ | ||
|
||
/* Global Reset */ | ||
|
||
* { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
body { | ||
background-color: white; | ||
font: 10pt helvetica, arial, clean, sans-serif; | ||
text-align: center; | ||
line-height: 1.5em; | ||
} | ||
|
||
h1, h2, h3, h4, h5, h6 { | ||
font-size: 100%; | ||
} | ||
|
||
h1 { | ||
font-size: 1.5em; | ||
margin-top: 1.5em; | ||
margin-bottom: 1em; | ||
} | ||
|
||
h2 { | ||
font-size: 1.1em; | ||
margin-top: 1.5em; | ||
margin-bottom: 1em; | ||
border-bottom: 1px solid #ccc; | ||
} | ||
|
||
h3 { | ||
font-weight: normal; | ||
font-style: italic; | ||
margin-top: 1.5em; | ||
margin-bottom: 0.5em; | ||
} | ||
|
||
p { | ||
margin: 1em 0 1em 0; | ||
} | ||
|
||
blockquote { | ||
margin: 20px 20px 20px 20px; | ||
padding: 10px 10px 10px 20px; | ||
border-left: 3px solid #eeeeee; | ||
color: #666; | ||
} | ||
|
||
a img { border: 0px; } | ||
img.tl { float: left; margin: 0px 20px 20px 0px; } | ||
img.l { float: left; margin: 20px 20px 20px 0px; } | ||
img.tr { float: right; margin: 0px 0px 20px 20px; } | ||
img.r { float: right; margin: 20px 0px 20px 20px; } | ||
|
||
img#feed { padding-top: 3px; } | ||
|
||
a { | ||
color: #00a; | ||
} | ||
|
||
a:hover { | ||
color: black; | ||
} | ||
|
||
a:visited { | ||
color: #a0a; | ||
} | ||
|
||
table { | ||
font-size: inherit; | ||
font: 100%; | ||
} | ||
|
||
/*****************************************************************************/ | ||
/* | ||
/* Home | ||
/* | ||
/*****************************************************************************/ | ||
|
||
ul { | ||
line-height:1.5em; | ||
list-style-image:url("/images/bullet.gif"); | ||
list-style-type:square; | ||
margin-bottom: 2em; | ||
} | ||
|
||
ul li { | ||
padding-left: 5px; | ||
margin-left: 20px; | ||
} | ||
|
||
/*****************************************************************************/ | ||
/* | ||
/* Site | ||
/* | ||
/*****************************************************************************/ | ||
|
||
/* | ||
.site { | ||
font-size: 110%; | ||
width: 40em; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
*/ | ||
|
||
div.header { | ||
width: 100%; | ||
background-color: #5A6F8E; | ||
color: #ffffff; | ||
font-weight: bold; | ||
margin: 0px 0px 2em 0px; | ||
font-size: 1em; | ||
padding: 1em 0px 1em 0px; | ||
text-align: center; | ||
height: 2em; | ||
} | ||
|
||
.title, .content, .footer { | ||
text-align: left; | ||
width: 40em; | ||
margin: 0em auto 0em auto; | ||
padding: 0em; | ||
} | ||
|
||
.title a { | ||
color: #5A6F8E; | ||
text-decoration: none; | ||
} | ||
|
||
.title a:hover { | ||
color: black; | ||
} | ||
|
||
.title .name { | ||
float: left; | ||
color: #ffffff; | ||
font-size: 1.3em; | ||
line-height: 1.5em; | ||
} | ||
|
||
.title .right { | ||
float: right; | ||
line-height: 1.5em; | ||
} | ||
|
||
.title a.right { | ||
color: #ccc; | ||
text-decoration: none; | ||
margin-left: 1em; | ||
font-size: 1em; | ||
} | ||
|
||
.title a.right:hover { | ||
color: black; | ||
} | ||
|
||
.meta { | ||
color: #aaa; | ||
padding: 0px; | ||
margin: 0.5em 0em 1.5em 0em; | ||
font-size: 0.9em; | ||
} | ||
|
||
.sites { | ||
font-size: 0.8em; | ||
color: #666; | ||
margin-top: 2em; | ||
} | ||
|
||
.site { | ||
padding: 0px 2px 10px; position: relative; float: left; | ||
} | ||
|
||
.footer { | ||
border-top: 2px solid #eee; | ||
margin-top: 3em; | ||
text-align: center; | ||
} | ||
|
||
.footer_content { | ||
padding-top: 1em; | ||
color: #666; | ||
width: 100%; | ||
font-size: 0.8em; | ||
margin-right: 3em; | ||
} | ||
|
||
.footer_content a { | ||
color: #8085C1; | ||
} | ||
|
||
table { | ||
margin: 10px 10px 10px 20px; | ||
} | ||
td { | ||
padding: 5px; | ||
vertical-align: top; | ||
} | ||
code { | ||
font-weight: bold; | ||
color: #5A6F8E; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
.highlight { background: #ffffff; } | ||
.highlight .c { color: #999988; font-style: italic } /* Comment */ | ||
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ | ||
.highlight .k { font-weight: bold } /* Keyword */ | ||
.highlight .o { font-weight: bold } /* Operator */ | ||
.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */ | ||
.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */ | ||
.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */ | ||
.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */ | ||
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ | ||
.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */ | ||
.highlight .ge { font-style: italic } /* Generic.Emph */ | ||
.highlight .gr { color: #aa0000 } /* Generic.Error */ | ||
.highlight .gh { color: #999999 } /* Generic.Heading */ | ||
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ | ||
.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */ | ||
.highlight .go { color: #888888 } /* Generic.Output */ | ||
.highlight .gp { color: #555555 } /* Generic.Prompt */ | ||
.highlight .gs { font-weight: bold } /* Generic.Strong */ | ||
.highlight .gu { color: #aaaaaa } /* Generic.Subheading */ | ||
.highlight .gt { color: #aa0000 } /* Generic.Traceback */ | ||
.highlight .kc { font-weight: bold } /* Keyword.Constant */ | ||
.highlight .kd { font-weight: bold } /* Keyword.Declaration */ | ||
.highlight .kp { font-weight: bold } /* Keyword.Pseudo */ | ||
.highlight .kr { font-weight: bold } /* Keyword.Reserved */ | ||
.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */ | ||
.highlight .m { color: #009999 } /* Literal.Number */ | ||
.highlight .s { color: #d14 } /* Literal.String */ | ||
.highlight .na { color: #008080 } /* Name.Attribute */ | ||
.highlight .nb { color: #0086B3 } /* Name.Builtin */ | ||
.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */ | ||
.highlight .no { color: #008080 } /* Name.Constant */ | ||
.highlight .ni { color: #800080 } /* Name.Entity */ | ||
.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */ | ||
.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */ | ||
.highlight .nn { color: #555555 } /* Name.Namespace */ | ||
.highlight .nt { color: #000080 } /* Name.Tag */ | ||
.highlight .nv { color: #008080 } /* Name.Variable */ | ||
.highlight .ow { font-weight: bold } /* Operator.Word */ | ||
.highlight .w { color: #bbbbbb } /* Text.Whitespace */ | ||
.highlight .mf { color: #009999 } /* Literal.Number.Float */ | ||
.highlight .mh { color: #009999 } /* Literal.Number.Hex */ | ||
.highlight .mi { color: #009999 } /* Literal.Number.Integer */ | ||
.highlight .mo { color: #009999 } /* Literal.Number.Oct */ | ||
.highlight .sb { color: #d14 } /* Literal.String.Backtick */ | ||
.highlight .sc { color: #d14 } /* Literal.String.Char */ | ||
.highlight .sd { color: #d14 } /* Literal.String.Doc */ | ||
.highlight .s2 { color: #d14 } /* Literal.String.Double */ | ||
.highlight .se { color: #d14 } /* Literal.String.Escape */ | ||
.highlight .sh { color: #d14 } /* Literal.String.Heredoc */ | ||
.highlight .si { color: #d14 } /* Literal.String.Interpol */ | ||
.highlight .sx { color: #d14 } /* Literal.String.Other */ | ||
.highlight .sr { color: #009926 } /* Literal.String.Regex */ | ||
.highlight .s1 { color: #d14 } /* Literal.String.Single */ | ||
.highlight .ss { color: #990073 } /* Literal.String.Symbol */ | ||
.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */ | ||
.highlight .vc { color: #008080 } /* Name.Variable.Class */ | ||
.highlight .vg { color: #008080 } /* Name.Variable.Global */ | ||
.highlight .vi { color: #008080 } /* Name.Variable.Instance */ | ||
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
--- | ||
layout: default | ||
title: Microblog.org | ||
--- | ||
|
||
<b>Microblog.org</b> is a neutral venue for discussion about microblogging and messaging platforms and services and the clients used to access those services. Please register and edit any and all pages. This is an open source, community effort. | ||
|
||
h2. Issues & Conversations | ||
|
||
* "BearHugCamp":/wiki/BearHugCamp - An "unconference" microblogging conference happening in San Francisco on 9/12/2008. | ||
* "FLOSS podcast on Laconica with Evan":http://twit.tv/floss37 | ||
* "TWiT Army Aftershow with Dustin of Twitterspy":http://ur1.ca/3p9 | ||
* "IT Conversations interview with Evan of Laconica":http://itc.conversationsnetwork.org/shows/detail3791.html | ||
|
||
h2. Other Groups | ||
* "laconica-dev":http://mail.laconi.ca/mailman/listinfo/laconica-dev is a mailing list for Laconi.ca developers | ||
|
||
h2. Proposed & Established Standards | ||
|
||
* "OpenMicroBlogging Standard":http://www.openmicroblogging.org -- A standard implemented by Laconi.ca and Identi.ca | ||
* "XEP-xxxx: Microblogging Over XMPP":http://www.xmpp.org/extensions/inbox/microblogging.html including "XEP-0077 XHTML-IM":http://www.xmpp.org/extensions/xep-0071.html, "XEP-0060 PubSub":http://www.xmpp.org/extensions/xep-0060.html and "BOSH":http://www.xmpp.org/extensions/xep-0124.html | ||
|
||
h2. Services & Servers | ||
|
||
h3. Commercial | ||
|
||
* "Twitter":http://www.twitter.com - A venture funded service (http://www.twitter.com) | ||
* "Jaiku":http://www.jaiku.com - Purchased by Google (http://www.jaiku.com) | ||
* "Pownce":http://www.pownce.com - A service started by Kevin Rose et al (http://www.pownce.com) | ||
* "Plurk":http://www.plurk.com - (http://www.plurk.com) | ||
* "Friendfeed":http://www.friendfeed.com - (http://friendfeed.com/) | ||
|
||
h3. Open Source | ||
|
||
* "Identica":http://www.identi.ca - A service running the "Laconi.ca":http://www.laconi.ca software (http://www.identi.ca) | ||
* "Laconi.ca":http://www.laconi.ca - An open source microblogging platform (http://www.laconi.ca) | ||
* "OpenMicroBlogger":http://openmicroblogger.org/ | ||
* "bleeper.de":http://bleeper.de - Largest Laconica-Site outside North-America, though all in German (http://bleeper.de) | ||
|
||
h2. Clients & Tools | ||
|
||
* Twhirl | ||
* "TwitterSpy":http://dustin.github.com/twitterspy | ||
* "IdentiSpy":/wiki/IdentiSpy | ||
* "Spaz":http://funkatron.com/spaz (http://funkatron.com/spaz) | ||
* "Gnip":http://www.gnipcentral.com (http://www.gnipcentral.com/) | ||
* "Gwibber":https://launchpad.net/gwibber (https://launchpad.net/gwibber) | ||
|
||
h2. XMPP | ||
* "XMPP Protocol":http://en.wikipedia.org/wiki/Xmpp - Wikipedia article | ||
* "XMPP Standards Foundation":http://www.xmpp.org/ | ||
|
||
h3. XMPP Servers | ||
* "Citadel":http://www.citadel.org/doku.php/doku.php?id=start | ||
* "Ejabberd":http://www.process-one.net/en/ejabberd - "BOSH":http://www.xmpp.org/tech/bosh.shtml support, Erlang, cross-platform, packaged in many Linux distros | ||
* "Jabberd 14":http://jabberd.org/ | ||
* "OpenFire":http://www.igniterealtime.org/projects/openfire/index.jsp OpenFire - "BOSH":http://www.xmpp.org/tech/bosh.shtml support, Java | ||
* "OpenIM":http://www.openim.techlab.smk.fr/en/ | ||
* "Psyced":http://www.psyced.org/ | ||
* "Tigase":http://www.tigase.org/ - PubSub support, "BOSH":http://www.xmpp.org/tech/bosh.shtml support, Java - used by Seesmic/Twhirl | ||
* "DJabberD":http://danga.com/djabberd/ - open source, perl, by Brad Fitzpatrick / danga.com, in use at livejournal.com |
Oops, something went wrong.