git ssb

2+

ev / mvd



Tree: 1e9994726f2118a824d6e041144b60cc1643fac0

Files: 1e9994726f2118a824d6e041144b60cc1643fac0 / about.js

3101 bytesRaw
1var h = require('hyperscript')
2
3module.exports = function () {
4 var content = h('div.message',
5 h('p', 'Hi! Welcome to Decent.'),
6 h('p', h('strong', 'Decent'), ' is a decent(ralized) social network for business and development, built on ', h('a', {href: 'http://scuttlebot.io/'}, 'secure-scuttlebutt' ), '. Decent is maintained by ', h('a', {href: 'http://evbogue.com/'}, 'Everett Bogue'), '.'),
7 h('p', h('strong', 'The code is open source:')),
8 h('ul',
9 h('li', h('a', {href: 'http://github.com/evbogue/decent'}, 'Decent'), ' [Github]'),
10 h('li', h('a', {href: 'http://github.com/evbogue/mvd'}, 'mvd'), ' [Github]')
11 ),
12 h('p', h('strong', 'secure-scuttlebutt'), ' (ssb) is a protocol for creating off-grid social networks using a gossip network to sync signed secure data from your friends (and their friends) to your local machine. ssb was invented by ', h('a', {href: 'http://dominictarr.com/'}, 'Dominic Tarr'), ' and is maintained by the ', h('a', {href: 'http://github.com/ssbc/'}, 'secure-scuttlebutt consortium (ssbc)'), '.'),
13 h('p', h('strong', 'Press for ssb:')),
14 h('ul',
15 h('li', h('a', {href: 'https://staltz.com/an-off-grid-social-network.html'}, 'An Off-Grid Social Network'), ' [Andre Staltz]'),
16 h('li', h('a', {href: 'https://www.theatlantic.com/technology/archive/2017/05/meet-the-counterantidisintermediationists/527553/'}, '...Exploding the Internet into Pieces'), ' [The Atlantic]'),
17 h('li', 'Ev presents Decent at Chicago Node.js: ',
18 h('a', {href: 'http://evbogue.com/decent1.webm'}, 'Part 1'), ' ',
19 h('a', {href: 'http://evbogue.com/decent2.webm'}, 'Part 2'), ' ',
20 h('a', {href: 'http://evbogue.com/decent3.webm'}, 'Part 3'), ' ',
21 h('a', {href: 'http://evbogue.com/decent4.webm'}, 'Part 4'), ' '
22 )
23 ),
24 h('p', h('strong', 'Use Decent'), ' on your local machine by cloning the repository and building the software. Or, use a public Decent Pub to try Decent over websockets.'),
25 h('p', h('strong', 'Save your ', h('a', {href:'#key'} , 'key')), ' somewhere safe(!) to write to your append-only log. Decent will share your log with your friends (and their friends) using the gossip network. While you can edit messages by appending new messages to your log, any message you post will always exist on your secure log. Only use your key on one Decent instance at a time to avoid forking your log.'),
26 h('p', 'Decent Pubs:'),
27 h('ul',
28 h('li', h('a', {href: 'http://decent.evbogue.com/'}, 'decent.evbogue.com')),
29 h('li', h('a', {href: 'http://decent.gwenbell.com'}, 'decent.gwenbell.com')),
30 h('li', 'Add your Decent ', h('a', {href: 'http://github.com/evbogue/mvd/'}, 'here'))
31 ),
32 h('p', 'The best way to use Decent is on your local machine, because you can read and write to your Decent without an Internet connection. Your messages will sync when you come online! Contact a Decent pub owner to request an invite to connect from your local machine.'),
33 h('p', 'glhf and remember the first rule of Decent: be decent. -Ev')
34 )
35
36 return content
37}
38

Built with git-ssb-web