damus.io

damus.io website
git clone git://jb55.com/damus.io
Log | Files | Refs | README | LICENSE

2022-08-02-introducing-damus-log.html (2850B)


      1 
      2 <!DOCTYPE html>
      3 <html lang="en">
      4     <head>
      5         <meta charset="utf-8">
      6         <meta name="viewport" content="width=device-width, initial-scale=1">
      7 
      8         <title>The Damus Log</title>
      9         <link rel="stylesheet" href="log.css?v=29">
     10         <link rel="stylesheet" href="comments.css?v=5">
     11     </head>
     12     <body>
     13 	<section class="header">
     14 		<span class="logo">
     15 			<img src="/img/damus-nobg.svg"/>
     16 		</span>
     17 	</section>
     18 	<div class="container">
     19 		<a href="https://damus.io/log" class="date">&lt; The Damus Log</a>
     20 <h1 id="the-damus-log---powered-by-nostr">The Damus Log - Powered by
     21 #nostr</h1>
     22 <p>Hey there, Welcome to the damus log! A blog powered by… nostr! What
     23 does this mean!? What is nostr? Let’s find out!</p>
     24 <p>nostr is what powers damus, an iOS nostr client we’re working on.
     25 It’s a fancy pants new internet protocol designed to be the email of
     26 social networks. Imagine if email was controlled by a single company.
     27 Everyone would have to use the same email client (probably something
     28 like gmail), and a single company would have complete control over all
     29 your data… everyone’s data!</p>
     30 <p>This isn’t good, this is why the internet today was originally built
     31 on these decentralized protocols. Things like websites and email are all
     32 available on different platforms, clients and servers. This freedom to
     33 pick and choose prevents any single company to have complete control
     34 over our data.</p>
     35 <p>nostr is an attempt to do the same for social networks themselves. It
     36 provides a censorship resistant, real-time database. Anyone can run a
     37 nostr relay and no single relay is in control of the data. It’s quite
     38 ingenious if we say so ourselves.</p>
     39 <p>We like it so much we’ve made our blog nostr-powered! The comments
     40 below are from the nostr network. You can comment on it from the damus
     41 client itself! If you’re interested in trying it out, try out the
     42 testflight at the bottom of our homepage:</p>
     43 <p><a href="https://damus.io">damus.io</a></p>
     44 <p>Looking forward to seeing you on nostr!</p>
     45 
     46 <h3><a id="comment-link" href="nostr:e:">Comments</a></h3>
     47     <div id="comments">
     48     </div>
     49     <script src="nostr.js?v=4" ></script>
     50     <script src="comments.js?v=16" ></script>
     51 	     <script>
     52 		const threads = {
     53 			"the-stuff-loads-better-release": "9941b55c2844f275b7b8714a1c39859088a425ce798f740ea8fea879f9098641",
     54 			"introducing-damus-log": "4e8b44bb43018f79bd3efcdcd71af43814cdf996e0c62adedda1ac33bf5e1371",
     55 			"stop-developing": "7328ba525fba9240a13dc67bc8ccf9248d90fa0c752419ccbe0558e129ea96d5",
     56 		}
     57 		let relay
     58 		for (const key of Object.keys(threads)) {
     59 			if (window.location.href.includes(key)) {
     60 				const id = threads[key]
     61 				relay = comments_init(id)
     62 				document.querySelector("#comment-link").href = 'nostr:e:' + id
     63 				break
     64 			}
     65 		}
     66 	     </script>
     67   </div> <!-- container -->
     68     </body>
     69 </html>