Initial commit
13
.editorconfig
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
# editorconfig.org
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
indent_size = 2
|
||||||
|
indent_style = space
|
||||||
|
end_of_line = lf
|
||||||
|
charset = utf-8
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
insert_final_newline = true
|
||||||
|
|
||||||
|
[*.md]
|
||||||
|
trim_trailing_whitespace = false
|
10
.gitignore
vendored
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
db.json
|
||||||
|
*.log
|
||||||
|
node_modules/
|
||||||
|
public/
|
||||||
|
_private/
|
||||||
|
.deploy*/
|
||||||
|
themes/starter/source/css/
|
||||||
|
themes/starter/source/js/
|
19
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
|
||||||
|
image: node:6.11.1
|
||||||
|
|
||||||
|
pages:
|
||||||
|
cache:
|
||||||
|
paths:
|
||||||
|
- node_modules/
|
||||||
|
|
||||||
|
script:
|
||||||
|
- npm install gulp -g
|
||||||
|
- npm install hexo-cli -g
|
||||||
|
- npm install
|
||||||
|
- gulp build --cwd ./themes/starter
|
||||||
|
- hexo deploy
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- public
|
||||||
|
only:
|
||||||
|
- master
|
21
LICENSE
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyheart (c)
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
92
_config.yml
Normal file
|
@ -0,0 +1,92 @@
|
||||||
|
# Hexo Configuration
|
||||||
|
## Docs: https://hexo.io/docs/configuration.html
|
||||||
|
## Source: https://github.com/hexojs/hexo/
|
||||||
|
|
||||||
|
# Site
|
||||||
|
title: Fediverse
|
||||||
|
subtitle:
|
||||||
|
description: Fediverse wiki
|
||||||
|
author: lostinlight
|
||||||
|
language:
|
||||||
|
- en
|
||||||
|
timezone:
|
||||||
|
|
||||||
|
# URL
|
||||||
|
url: https://fediverse.party
|
||||||
|
root: /
|
||||||
|
permalink: :lang/:layout/:title/
|
||||||
|
permalink_defaults:
|
||||||
|
|
||||||
|
# Directory
|
||||||
|
source_dir: source
|
||||||
|
public_dir: public
|
||||||
|
tag_dir: tags
|
||||||
|
archive_dir: chronicles
|
||||||
|
category_dir: categories
|
||||||
|
code_dir: downloads/code
|
||||||
|
i18n_dir: :lang
|
||||||
|
skip_render:
|
||||||
|
|
||||||
|
# Writing
|
||||||
|
new_post_name: :title.md # File name of new posts
|
||||||
|
default_layout: post
|
||||||
|
titlecase: false # Transform title into titlecase
|
||||||
|
external_link: true # Open external links in new tab
|
||||||
|
filename_case: 0
|
||||||
|
render_drafts: false
|
||||||
|
post_asset_folder: true
|
||||||
|
relative_link: false
|
||||||
|
future: true
|
||||||
|
highlight:
|
||||||
|
enable: true
|
||||||
|
line_number: true
|
||||||
|
auto_detect: false
|
||||||
|
tab_replace:
|
||||||
|
|
||||||
|
# Category & Tag
|
||||||
|
default_category: uncategorized
|
||||||
|
category_map:
|
||||||
|
tag_map:
|
||||||
|
|
||||||
|
# Date / Time format
|
||||||
|
## Hexo uses Moment.js to parse and display date
|
||||||
|
## You can customize the date format as defined in
|
||||||
|
## http://momentjs.com/docs/#/displaying/format/
|
||||||
|
date_format: DD-MM-YY
|
||||||
|
time_format: HH:mm:ss
|
||||||
|
|
||||||
|
# Pagination
|
||||||
|
## Set per_page to 0 to disable pagination
|
||||||
|
per_page: 10
|
||||||
|
pagination_dir: page
|
||||||
|
|
||||||
|
# Extensions
|
||||||
|
theme: starter
|
||||||
|
|
||||||
|
# Deployment
|
||||||
|
## Docs: https://hexo.io/docs/deployment.html
|
||||||
|
deploy:
|
||||||
|
type:
|
||||||
|
|
||||||
|
# Site settings
|
||||||
|
ogImage: tile.png
|
||||||
|
|
||||||
|
# Plugins
|
||||||
|
nofollow:
|
||||||
|
enable: true
|
||||||
|
include:
|
||||||
|
noreferrer: true
|
||||||
|
noopener: true
|
||||||
|
|
||||||
|
html_minifier:
|
||||||
|
exclude:
|
||||||
|
keepClosingSlash: true
|
||||||
|
removeComments: true
|
||||||
|
collapseWhitespace: true
|
||||||
|
|
||||||
|
feed:
|
||||||
|
type: atom
|
||||||
|
path: atom.xml
|
||||||
|
limit: 42
|
||||||
|
hub:
|
||||||
|
content: true
|
15550
package-lock.json
generated
Normal file
55
package.json
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "Ahoy-Hexo",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"description": "Ahoy - Simple Hexo starter",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://gitlab.com/lostinlight/ahoy-hexo.git"
|
||||||
|
},
|
||||||
|
"author": "lostinlight",
|
||||||
|
"license": "MIT",
|
||||||
|
"hexo": {
|
||||||
|
"version": "3.4.4"
|
||||||
|
},
|
||||||
|
"scripts": {},
|
||||||
|
"dependencies": {
|
||||||
|
"hexo": "^3.4.4",
|
||||||
|
"hexo-autonofollow": "git+https://gitlab.com/lostinlight/hexo-autonofollow.git",
|
||||||
|
"hexo-browsersync": "^0.3.0",
|
||||||
|
"hexo-deployer-git": "^0.3.1",
|
||||||
|
"hexo-generator-archive-i18n": "git+https://gitlab.com/lostinlight/hexo-generator-archive-i18n.git",
|
||||||
|
"hexo-generator-category": "^0.1.3",
|
||||||
|
"hexo-generator-feed": "^1.2.2",
|
||||||
|
"hexo-generator-index": "^0.2.1",
|
||||||
|
"hexo-generator-index-i18n": "^0.2.1",
|
||||||
|
"hexo-generator-tag": "^0.2.0",
|
||||||
|
"hexo-html-minifier": "0.0.2",
|
||||||
|
"hexo-pagination": "^0.1.0",
|
||||||
|
"hexo-processor-static": "^1.0.0",
|
||||||
|
"hexo-renderer-ejs": "^0.3.1",
|
||||||
|
"hexo-renderer-markdown-it": "^3.4.1",
|
||||||
|
"hexo-server": "^0.3.1"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"babel-core": "^6.26.0",
|
||||||
|
"babel-eslint": "^8.2.1",
|
||||||
|
"babel-preset-es2015": "^6.24.1",
|
||||||
|
"gulp": "^3.9.1",
|
||||||
|
"gulp-autoprefixer": "^4.1.0",
|
||||||
|
"gulp-babel": "^7.0.0",
|
||||||
|
"gulp-concat": "^2.6.1",
|
||||||
|
"gulp-cssnano": "^2.1.2",
|
||||||
|
"gulp-eslint": "^4.0.1",
|
||||||
|
"gulp-imagemin": "^4.1.0",
|
||||||
|
"gulp-notify": "^3.2.0",
|
||||||
|
"gulp-plumber": "^1.2.0",
|
||||||
|
"gulp-rename": "^1.2.2",
|
||||||
|
"gulp-sass": "^3.1.0",
|
||||||
|
"gulp-sourcemaps": "^2.6.3",
|
||||||
|
"gulp-stylelint": "^5.0.0",
|
||||||
|
"gulp-typeset": "0.0.2",
|
||||||
|
"gulp-uglify": "^3.0.0",
|
||||||
|
"imagemin-jpeg-recompress": "^5.1.0",
|
||||||
|
"run-sequence": "^2.2.1"
|
||||||
|
}
|
||||||
|
}
|
4
scaffolds/draft.md
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
title: {{ title }}
|
||||||
|
tags:
|
||||||
|
---
|
4
scaffolds/page.md
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
title: {{ title }}
|
||||||
|
date: {{ date }}
|
||||||
|
---
|
5
scaffolds/post.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: {{ title }}
|
||||||
|
date: {{ date }}
|
||||||
|
tags:
|
||||||
|
---
|
3
source/404.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
layout: 404
|
||||||
|
---
|
26
source/_data/aardwolf.json
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
|
||||||
|
{
|
||||||
|
"data":
|
||||||
|
{
|
||||||
|
"title": "aardwolf",
|
||||||
|
"logoClr": "brown",
|
||||||
|
"created": "2017",
|
||||||
|
"official": "aardwolf.social",
|
||||||
|
"license": "AGPL-3.0",
|
||||||
|
"repo": "https://github.com/BanjoFox/aardwolf",
|
||||||
|
"language": "Rust",
|
||||||
|
"protocols":
|
||||||
|
[
|
||||||
|
{"title": "ActivityPub (work in progress)", "url": "https://activitypub.rocks"}
|
||||||
|
],
|
||||||
|
"wiki": "",
|
||||||
|
"servers": "",
|
||||||
|
"mobile": "",
|
||||||
|
"devTutorials": "https://github.com/BanjoFox/aardwolf/blob/master/INSTALL.md",
|
||||||
|
"notable": "",
|
||||||
|
"communities": "",
|
||||||
|
"tracker": "https://github.com/BanjoFox/aardwolf/issues",
|
||||||
|
"bounty": "",
|
||||||
|
"translating": ""
|
||||||
|
}
|
||||||
|
}
|
120
source/_data/common.json
Normal file
|
@ -0,0 +1,120 @@
|
||||||
|
|
||||||
|
{
|
||||||
|
"list":
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"title": "Socialhome",
|
||||||
|
"url" : "https://socialhome.network",
|
||||||
|
"smallImg": "/img/socialhome.png",
|
||||||
|
"descr": "Federated personal profile with social networking functionality, suitable for image based content"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "GangGo",
|
||||||
|
"url" : "https://ggg.social",
|
||||||
|
"smallImg": "/img/ganggo.png",
|
||||||
|
"descr": "Decentralized social network written in GoLang"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Aardwolf",
|
||||||
|
"url" : "https://aardwolf.social",
|
||||||
|
"smallImg": "/img/aardwolf.png",
|
||||||
|
"descr": "New platform for powering communities across the web, written in Rust-lang"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Hubzilla",
|
||||||
|
"url" : " https://project.hubzilla.org",
|
||||||
|
"smallImg": "/img/hubzilla.png",
|
||||||
|
"descr": "Powerful platform for creating sites with a decentralized nomadic identity"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "diaspora",
|
||||||
|
"url" : "https://diaspora.software",
|
||||||
|
"smallImg": "/img/diaspora.png",
|
||||||
|
"descr": "Online world where you are in control. Own your data. Choose your audience. Be who you want to be"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Pleroma",
|
||||||
|
"url" : "https://pleroma.social",
|
||||||
|
"smallImg": "/img/pleroma.png",
|
||||||
|
"descr": "Federated networking platform, compatible with GNU social and OStatus. Light as a feather"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Mastodon",
|
||||||
|
"url" : "https://joinmastodon.org",
|
||||||
|
"smallImg": "/img/mastodon.png",
|
||||||
|
"descr": "Social networking, back in your hands. Find your perfect community. Take control of your content"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "postActiv",
|
||||||
|
"url" : "https://www.postactiv.com",
|
||||||
|
"smallImg": "/img/postactiv.png",
|
||||||
|
"descr": "Social networking platform with many additional features, plugins and an open, free software codebase"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Friendica",
|
||||||
|
"url" : "https://friendi.ca",
|
||||||
|
"smallImg": "/img/friendica.png",
|
||||||
|
"descr": "Personal network with no central authority or ownership. Keep in contact with people you care about"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "GNU Social",
|
||||||
|
"url" : "https://gnu.io/social",
|
||||||
|
"smallImg": "/img/gnusocial.png",
|
||||||
|
"descr": "Connecting free and independent communities across the web"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"protocols":
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"name": "OStatus",
|
||||||
|
"url": "https://github.com/OStatus"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "diaspora",
|
||||||
|
"url": "https://github.com/diaspora/diaspora_federation"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Zot",
|
||||||
|
"url": "https://project.hubzilla.org/help/developer/zot_protocol"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "DFRN",
|
||||||
|
"url": "https://github.com/friendica/friendica/wiki/Protocol"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ActivityPub",
|
||||||
|
"url": "https://activitypub.rocks"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"langs":
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"name": "PHP",
|
||||||
|
"networks": "GNU Social, Friendica, Hubzilla, postActiv"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Ruby",
|
||||||
|
"networks": "diaspora, Mastodon, Libertree"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Python",
|
||||||
|
"networks": "Socialhome"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Elixir",
|
||||||
|
"networks": "Pleroma"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Rust",
|
||||||
|
"networks": "Aardwolf"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "(Node)JS",
|
||||||
|
"networks": "pump.io"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Go",
|
||||||
|
"networks": "GangGo"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
43
source/_data/diaspora.json
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
|
||||||
|
{
|
||||||
|
"data":
|
||||||
|
{
|
||||||
|
"title": "diaspora",
|
||||||
|
"logoClr": "000000",
|
||||||
|
"created": "2010",
|
||||||
|
"official": "diaspora.software",
|
||||||
|
"license": "AGPL-3.0",
|
||||||
|
"repo": "https://github.com/diaspora/diaspora",
|
||||||
|
"language": "Ruby",
|
||||||
|
"protocols":
|
||||||
|
[{"title": "diaspora", "url": "https://github.com/diaspora/diaspora_federation"}],
|
||||||
|
"wiki": "https://wiki.diasporafoundation.org/Main_Page",
|
||||||
|
"servers":
|
||||||
|
[
|
||||||
|
{"num": "1", "url": "https://podupti.me"},
|
||||||
|
{"num": "2", "url": "https://the-federation.info/diaspora"}
|
||||||
|
],
|
||||||
|
"mobile": "https://f-droid.org/packages/com.github.dfa.diaspora_android",
|
||||||
|
"proxy": "https://wiki.diaspora.software/Installation/Camo",
|
||||||
|
"relay": "https://relay.iliketoast.net",
|
||||||
|
"tutorials": "https://diaspora.software/tutorials",
|
||||||
|
"devTutorials": "https://wiki.diasporafoundation.org/FAQ_for_pod_maintainers",
|
||||||
|
"notable":
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"name": "FSF",
|
||||||
|
"url": "https://framasphere.org/u/fsf",
|
||||||
|
"avatar": "/img/avatars/fsf.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FSFE",
|
||||||
|
"url": "https://diasp.eu/u/fsfe",
|
||||||
|
"avatar": "/img/avatars/fsfe.png"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"communities": "",
|
||||||
|
"tracker": "https://github.com/diaspora/diaspora/issues",
|
||||||
|
"bounty": "https://www.bountysource.com/teams/diaspora",
|
||||||
|
"translating": "https://wiki.diasporafoundation.org/Contribute_translations"
|
||||||
|
}
|
||||||
|
}
|
45
source/_data/fediversei18n.json
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
|
||||||
|
{
|
||||||
|
"article":
|
||||||
|
{
|
||||||
|
"definition": "is a portmanteau of two words \"federation\" and \"universe\"",
|
||||||
|
"preamble": "Cupcake ipsum dolor sit amet halvah chocolate bar. Danish macaroon biscuit lemon drops. Marshmallow sugar plum cake macaroon. Marzipan bonbon pudding soufflé. Chocolate cake jelly-o caramels croissant tootsie roll gummies jujubes cheesecake carrot cake. Tart liquorice sesame snaps marshmallow ice cream sweet candy.",
|
||||||
|
"info": "Cupcake ipsum dolor sit amet halvah chocolate bar. Danish macaroon biscuit lemon drops. Marshmallow sugar plum cake macaroon. Marzipan bonbon pudding soufflé. Chocolate cake jelly-o caramels croissant tootsie roll gummies jujubes cheesecake carrot cake. Tart liquorice sesame snaps marshmallow ice cream sweet candy.\n\nCupcake ipsum dolor sit amet halvah chocolate bar. Danish macaroon biscuit lemon drops. Marshmallow sugar plum cake macaroon. Marzipan bonbon pudding soufflé. Chocolate cake jelly-o caramels croissant tootsie roll gummies jujubes cheesecake carrot cake. Tart liquorice sesame snaps marshmallow ice cream sweet candy.\n\nCupcake ipsum dolor sit amet halvah chocolate bar. Danish macaroon biscuit lemon drops. Marshmallow sugar plum cake macaroon. Marzipan bonbon pudding soufflé. Chocolate cake jelly-o caramels croissant tootsie roll gummies jujubes cheesecake carrot cake. Tart liquorice sesame snaps marshmallow ice cream sweet candy.",
|
||||||
|
"history":
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"title": "A brief history of the GNU Social Fediverse and the Federation",
|
||||||
|
"url": "https://www.coactivate.org/projects/disintermedia/blog/2017/04/01/a-brief-history-of-the-gnu-social-fediverse-and-the-federation"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Distributed Social Networks and Public History",
|
||||||
|
"url": "http://publichistory.media/2016/02/21/distributed-social-networks-and-public-history"},
|
||||||
|
{
|
||||||
|
"title": "Mastodon Timeline",
|
||||||
|
"url": "http://ansuz.sooke.bc.ca/entry/335"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "A quick guide to the Free Network",
|
||||||
|
"url": "https://medium.com/we-distribute/a-quick-guide-to-the-free-network-c069309f334"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"projects":
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"title": "Fediverse visualization",
|
||||||
|
"url": "https://kumu.io/wakest/fediverse"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"reading":
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"title": "Wikipedia article",
|
||||||
|
"url": "https://en.wikipedia.org/wiki/Fediverse"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "The blockchain is a threat to the distributed future of the Internet",
|
||||||
|
"url": "https://lasindias.blog/blockchain-is-a-threat-to-the-distributed-future-of-the-internet"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
64
source/_data/friendica.json
Normal file
|
@ -0,0 +1,64 @@
|
||||||
|
|
||||||
|
{
|
||||||
|
"data":
|
||||||
|
{
|
||||||
|
"title": "friendica",
|
||||||
|
"logoClr": "ffb900",
|
||||||
|
"created": "2010",
|
||||||
|
"official": "friendi.ca",
|
||||||
|
"license": "AGPL-3.0",
|
||||||
|
"repo": "https://github.com/friendica/friendica",
|
||||||
|
"language": "PHP",
|
||||||
|
"protocols":
|
||||||
|
[
|
||||||
|
{"title": "DFRN", "url": "https://github.com/friendica/friendica/wiki/Protocol"},
|
||||||
|
{"title": "OStatus", "url": "https://github.com/OStatus"},
|
||||||
|
{"title": "diaspora", "url": "https://github.com/diaspora/diaspora_federation"}
|
||||||
|
],
|
||||||
|
"wiki": "https://github.com/friendica/friendica/wiki",
|
||||||
|
"servers":
|
||||||
|
[
|
||||||
|
{"num": "1", "url": "https://the-federation.info/friendica"},
|
||||||
|
{"num": "2", "url": "https://dir.friendica.social/servers"}
|
||||||
|
],
|
||||||
|
"mobile": "https://github.com/friendica/friendica/wiki/Clients",
|
||||||
|
"tutorials":
|
||||||
|
[
|
||||||
|
{"id": "0", "url": "https://friendi.ca/resources/installation"},
|
||||||
|
{"id": "1", "url": "https://github.com/friendica/friendica/wiki/DreamHost-Friendica-Install-Guide"},
|
||||||
|
{"id": "2", "url": "https://github.com/friendica/friendica/wiki/How-to%3A-Hosting-a-Friendica-site-at-home"}
|
||||||
|
],
|
||||||
|
"devTutorials": "https://github.com/friendica/friendica/tree/master/doc",
|
||||||
|
"utilities":
|
||||||
|
[
|
||||||
|
{"id": "0", "url": "https://github.com/pafcu/RSStoFriendika"}
|
||||||
|
],
|
||||||
|
"notable":
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"name": "FSF",
|
||||||
|
"url": "https://status.fsf.org/fsf",
|
||||||
|
"avatar": "/img/gnusocial.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FSF",
|
||||||
|
"url": "https://www.coactivate.org/projects/disintermedia/blog/2017/04/01/a-brief-history-of-the-gnu-social-fediverse-and-the-federation",
|
||||||
|
"avatar": "/img/gnusocial.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FSF",
|
||||||
|
"url": "https://www.coactivate.org/projects/disintermedia/blog/2017/04/01/a-brief-history-of-the-gnu-social-fediverse-and-the-federation",
|
||||||
|
"avatar": "/img/gnusocial.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FSF",
|
||||||
|
"url": "https://www.coactivate.org/projects/disintermedia/blog/2017/04/01/a-brief-history-of-the-gnu-social-fediverse-and-the-federation",
|
||||||
|
"avatar": "/img/gnusocial.png"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"communities": "https://dir.friendica.social/directory/forums",
|
||||||
|
"tracker": "https://github.com/friendica/friendica/issues",
|
||||||
|
"bounty": "",
|
||||||
|
"translating": "https://www.transifex.com/Friendica/friendica"
|
||||||
|
}
|
||||||
|
}
|
26
source/_data/ganggo.json
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
|
||||||
|
{
|
||||||
|
"data":
|
||||||
|
{
|
||||||
|
"title": "ganggo",
|
||||||
|
"logoClr": "69d7e2",
|
||||||
|
"created": "2017",
|
||||||
|
"official": "ggg.social",
|
||||||
|
"license": "GPL-3.0",
|
||||||
|
"repo": "https://github.com/ganggo/ganggo",
|
||||||
|
"language": "Go",
|
||||||
|
"protocols":
|
||||||
|
[
|
||||||
|
{"title": "diaspora", "url": "https://github.com/ganggo/federation"}
|
||||||
|
],
|
||||||
|
"wiki": "",
|
||||||
|
"servers": "https://the-federation.info/ganggo",
|
||||||
|
"mobile": "https://play.google.com/apps/testing/io.github.ganggo",
|
||||||
|
"devTutorials": "https://ganggo.github.io/development.html",
|
||||||
|
"notable": "",
|
||||||
|
"communities": "",
|
||||||
|
"tracker": "https://github.com/ganggo/ganggo/issues",
|
||||||
|
"bounty": "",
|
||||||
|
"translating": ""
|
||||||
|
}
|
||||||
|
}
|
56
source/_data/gnusocial.json
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
|
||||||
|
{
|
||||||
|
"data":
|
||||||
|
{
|
||||||
|
"title": "gnusocial",
|
||||||
|
"logoClr": "a22430",
|
||||||
|
"created": "2010",
|
||||||
|
"official": "gnu.io/social",
|
||||||
|
"license": "AGPL-3.0",
|
||||||
|
"repo": "https://git.gnu.io/gnu/gnu-social",
|
||||||
|
"language": "PHP",
|
||||||
|
"protocols":
|
||||||
|
[{"title": "OStatus", "url": "https://github.com/OStatus"}],
|
||||||
|
"wiki": "",
|
||||||
|
"servers": "https://fediverse.kranglabs.com",
|
||||||
|
"mobile": "https://wiki.gnusocial.de/en:gnusocial:clients",
|
||||||
|
"tutorials":
|
||||||
|
[
|
||||||
|
{"id": "0", "url": "http://thomask.sdf.org/social/en/user/getting_started.html"},
|
||||||
|
{"id": "1", "url": "https://gnusocial.net/doc/faq"}
|
||||||
|
],
|
||||||
|
"devTutorials": "http://thomask.sdf.org/social/en/admin/installing_gnu_social.html",
|
||||||
|
"utilities":
|
||||||
|
[
|
||||||
|
{"id": "0", "url": "https://github.com/blankoworld/eli"},
|
||||||
|
{"id": "1", "url": "https://github.com/mitchellurgero/fediwiki/blob/master/plugins.md"}
|
||||||
|
],
|
||||||
|
"notable":
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"name": "FSF",
|
||||||
|
"url": "https://status.fsf.org/fsf",
|
||||||
|
"avatar": "/img/avatars/fsf.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "CCC",
|
||||||
|
"url": "https://quitter.se/ccc",
|
||||||
|
"avatar": "/img/avatars/ccc.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "the Vikings",
|
||||||
|
"url": "https://quitter.se/vikings",
|
||||||
|
"avatar": "/img/avatars/vikings.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FSFE",
|
||||||
|
"url": "https://quitter.no/fsfe",
|
||||||
|
"avatar": "/img/avatars/fsfe.png"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"communities": "http://laemeur.sdf.org/gs/group-index.html",
|
||||||
|
"tracker": "https://git.gnu.io/gnu/gnu-social/issues",
|
||||||
|
"bounty": "",
|
||||||
|
"translating": "https://www.transifex.com/gnu-social/gnu-social"
|
||||||
|
}
|
||||||
|
}
|
36
source/_data/hubzilla.json
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
|
||||||
|
{
|
||||||
|
"data":
|
||||||
|
{
|
||||||
|
"title": "hubzilla",
|
||||||
|
"logoClr": "43488a",
|
||||||
|
"created": "2015",
|
||||||
|
"official": "project.hubzilla.org",
|
||||||
|
"license": "MIT",
|
||||||
|
"repo": "https://github.com/redmatrix/hubzilla",
|
||||||
|
"language": "PHP",
|
||||||
|
"protocols":
|
||||||
|
[
|
||||||
|
{"title": "Zot", "url": "https://project.hubzilla.org/help/developer/zot_protocol"},
|
||||||
|
{"title": "OStatus", "url": "https://github.com/OStatus"},
|
||||||
|
{"title": "diaspora", "url": "https://github.com/diaspora/diaspora_federation"},
|
||||||
|
{"title": "ActivityPub", "url": "https://activitypub.rocks"}
|
||||||
|
],
|
||||||
|
"wiki": "https://project.hubzilla.org/wiki/hubzilla/Hubzilla%2BProject/Home",
|
||||||
|
"servers": "https://the-federation.info/hubzilla",
|
||||||
|
"mobile": "",
|
||||||
|
"tutorials":
|
||||||
|
[
|
||||||
|
{"id": "0", "url": "https://project.hubzilla.org/help/member/member_guide"},
|
||||||
|
{"id": "1", "url": "https://project.hubzilla.org/help/admin/administrator_guide"},
|
||||||
|
{"id": "2", "url": "https://project.hubzilla.org/help/tutorials/personal_channel"}
|
||||||
|
|
||||||
|
],
|
||||||
|
"devTutorials": "https://github.com/redmatrix/hubzilla/wiki/Deploying-Hubzilla#install-and-set-up-the-basics",
|
||||||
|
"notable": "",
|
||||||
|
"communities": "",
|
||||||
|
"tracker": "https://github.com/redmatrix/hubzilla/issues",
|
||||||
|
"bounty": "https://salt.bountysource.com/teams/hubzilla",
|
||||||
|
"translating": ""
|
||||||
|
}
|
||||||
|
}
|
21
source/_data/knowledge.json
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
|
||||||
|
{
|
||||||
|
"list":
|
||||||
|
{
|
||||||
|
"links":
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"title": "The Centralization of Power on the Internet",
|
||||||
|
"url": "https://medium.com/tootsuite/the-centralization-of-power-on-the-internet-bfd8841620ee"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Distributed social networking in 2017: a review",
|
||||||
|
"url": "https://iwrotethislive.blogspot.ru/2017/11/distributed-social-networking-in-2017.html"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "How to Block the NSA From Your Friends List",
|
||||||
|
"url": "http://www.slate.com/blogs/future_tense/2013/06/17/identi_ca_diaspora_and_friendica_are_more_secure_alternatives_to_facebook.html"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
95
source/_data/mastodon.json
Normal file
|
@ -0,0 +1,95 @@
|
||||||
|
|
||||||
|
{
|
||||||
|
"data":
|
||||||
|
{
|
||||||
|
"title": "mastodon",
|
||||||
|
"logoClr": "3088d4",
|
||||||
|
"created": "2016",
|
||||||
|
"official": "joinmastodon.org",
|
||||||
|
"license": "AGPL-3.0",
|
||||||
|
"repo": "https://github.com/tootsuite/mastodon",
|
||||||
|
"language": "Ruby",
|
||||||
|
"protocols":
|
||||||
|
[
|
||||||
|
{"title": "OStatus", "url": "https://github.com/tootsuite/ostatus2"},
|
||||||
|
{"title": "ActivityPub", "url": "https://activitypub.rocks"}
|
||||||
|
],
|
||||||
|
"wiki": "",
|
||||||
|
"servers":
|
||||||
|
[
|
||||||
|
{"num": "1", "url": "https://instances.social"},
|
||||||
|
{"num": "2", "url": "https://mnm.social/instances"}
|
||||||
|
],
|
||||||
|
"mobile": "https://github.com/tootsuite/documentation/blob/master/Using-Mastodon/Apps.md#mobile-clients",
|
||||||
|
"twFriends": "https://bridge.joinmastodon.org",
|
||||||
|
"tutorials":
|
||||||
|
[
|
||||||
|
{"id": "0", "url": "https://medium.com/@GinnyMcQueen/toot-how-to-intro-to-mastodon-e5655bfa87d2"},
|
||||||
|
{"id": "1", "url": "https://alexschroeder.ch/wiki/2017-11-16_How_to_Mastodon"},
|
||||||
|
{"id": "2", "url": "https://gist.github.com/joyeusenoelle/74f6e6c0f349651349a0df9ae4582969"}
|
||||||
|
],
|
||||||
|
"devTutorial":
|
||||||
|
[
|
||||||
|
{"id": "0", "url": "https://anystack.xyz/how-to-install-mastodon-ubuntu"}
|
||||||
|
],
|
||||||
|
"devTutorials": "https://github.com/tootsuite/documentation",
|
||||||
|
"metrics":
|
||||||
|
[
|
||||||
|
{"id": "0", "url": "https://mnm.social"},
|
||||||
|
{"id": "1", "url": "http://sp3r4z.fr/mastodon"},
|
||||||
|
{"id": "2", "url": "https://metadon.jemu.name"}
|
||||||
|
],
|
||||||
|
"awesome": "https://github.com/tleb/awesome-mastodon",
|
||||||
|
"backup": "https://github.com/kensanata/mastodon-backup",
|
||||||
|
"services":
|
||||||
|
[
|
||||||
|
{"id": "0", "url": "https://masto.host"},
|
||||||
|
{"id": "1", "url": "https://maastodon.net"}
|
||||||
|
],
|
||||||
|
"utilities":
|
||||||
|
[
|
||||||
|
{"id": "0", "url": "https://www.mastofeed.com"},
|
||||||
|
{"id": "1", "url": "https://crossposter.masto.donte.com.br"},
|
||||||
|
{"id": "2", "url": "http://www.unmung.com/mastoview"},
|
||||||
|
{"id": "3", "url": "https://mastodon.art/gallery/index.html"},
|
||||||
|
{"id": "4", "url": "https://fed.brid.gy"}
|
||||||
|
],
|
||||||
|
"notable":
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"name": "Framasoft",
|
||||||
|
"url": "https://framapiaf.org/@Framasoft",
|
||||||
|
"avatar": "/img/avatars/framasoft.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "YunoHost",
|
||||||
|
"url": "https://mastodon.social/@yunohost",
|
||||||
|
"avatar": "/img/avatars/yunohost.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Ind.ie",
|
||||||
|
"url": "https://mastodon.social/@indie",
|
||||||
|
"avatar": "/img/avatars/indie.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Liberapay",
|
||||||
|
"url": "https://mastodon.rocks/@Liberapay",
|
||||||
|
"avatar": "/img/avatars/liberapay.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "La Quadrature du Net",
|
||||||
|
"url": "https://mamot.fr/@LaQuadrature",
|
||||||
|
"avatar": "/img/avatars/laquadrature.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "David Revoy",
|
||||||
|
"url": "https://framapiaf.org/@davidrevoy",
|
||||||
|
"avatar": "/img/avatars/drevoy.png"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"communities": "https://github.com/distributopia/masto-world-overview",
|
||||||
|
"tracker": "https://github.com/tootsuite/mastodon/issues",
|
||||||
|
"bounty": "",
|
||||||
|
"translating": "https://github.com/tootsuite/documentation/blob/master/Contributing-to-Mastodon/Translating.md"
|
||||||
|
}
|
||||||
|
}
|
67
source/_data/numbers.json
Normal file
|
@ -0,0 +1,67 @@
|
||||||
|
|
||||||
|
{
|
||||||
|
"list":
|
||||||
|
{
|
||||||
|
"lastUpdate": "12/03/18",
|
||||||
|
"diaspora":
|
||||||
|
{
|
||||||
|
"population": "660.394",
|
||||||
|
"activeUsers": "48.000",
|
||||||
|
"podsNum": "187"
|
||||||
|
},
|
||||||
|
"friendica":
|
||||||
|
{
|
||||||
|
"population": "1581",
|
||||||
|
"activeUsers": "947",
|
||||||
|
"podsNum": "43"
|
||||||
|
},
|
||||||
|
"hubzilla":
|
||||||
|
{
|
||||||
|
"population": "895",
|
||||||
|
"activeUsers": "309",
|
||||||
|
"podsNum": "53"
|
||||||
|
},
|
||||||
|
"ganggo":
|
||||||
|
{
|
||||||
|
"population": "42",
|
||||||
|
"activeUsers": "9",
|
||||||
|
"podsNum": "1"
|
||||||
|
},
|
||||||
|
"socialhome":
|
||||||
|
{
|
||||||
|
"population": "388",
|
||||||
|
"activeUsers": "261",
|
||||||
|
"podsNum": "3"
|
||||||
|
},
|
||||||
|
"mastodon":
|
||||||
|
{
|
||||||
|
"population": "1.095.775",
|
||||||
|
"activeUsers": "",
|
||||||
|
"podsNum": "2.044"
|
||||||
|
},
|
||||||
|
"gnusocial":
|
||||||
|
{
|
||||||
|
"population": "?",
|
||||||
|
"activeUsers": "",
|
||||||
|
"podsNum": "?"
|
||||||
|
},
|
||||||
|
"pleroma":
|
||||||
|
{
|
||||||
|
"population": "?",
|
||||||
|
"activeUsers": "",
|
||||||
|
"podsNum": "?"
|
||||||
|
},
|
||||||
|
"postactiv":
|
||||||
|
{
|
||||||
|
"population": "?",
|
||||||
|
"activeUsers": "",
|
||||||
|
"podsNum": "?"
|
||||||
|
},
|
||||||
|
"aardwolf":
|
||||||
|
{
|
||||||
|
"population": "?",
|
||||||
|
"activeUsers": "",
|
||||||
|
"podsNum": "?"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
31
source/_data/pleroma.json
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
|
||||||
|
{
|
||||||
|
"data":
|
||||||
|
{
|
||||||
|
"title": "pleroma",
|
||||||
|
"logoClr": "ff7b6e",
|
||||||
|
"created": "2017",
|
||||||
|
"official": "pleroma.social",
|
||||||
|
"license": "AGPL-3.0",
|
||||||
|
"repo": "https://git.pleroma.social/pleroma",
|
||||||
|
"language": "Elixir",
|
||||||
|
"protocols":
|
||||||
|
[
|
||||||
|
{"title": "OStatus", "url": "https://github.com/tootsuite/ostatus2"},
|
||||||
|
{"title": "ActivityPub", "url": "https://activitypub.rocks"}
|
||||||
|
],
|
||||||
|
"wiki": "",
|
||||||
|
"servers": "",
|
||||||
|
"mobile": "",
|
||||||
|
"tutorials":
|
||||||
|
[
|
||||||
|
{"id": "0", "url": "https://git.pleroma.social/pleroma/pleroma-fe/wikis/dual-boot-with-qvitter"}
|
||||||
|
],
|
||||||
|
"devTutorials": "https://git.pleroma.social/pleroma/pleroma/wikis/home",
|
||||||
|
"notable": "",
|
||||||
|
"communities": "",
|
||||||
|
"tracker": "https://git.pleroma.social/pleroma/pleroma/issues",
|
||||||
|
"bounty": "",
|
||||||
|
"translating": ""
|
||||||
|
}
|
||||||
|
}
|
26
source/_data/postactiv.json
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
|
||||||
|
{
|
||||||
|
"data":
|
||||||
|
{
|
||||||
|
"title": "postactiv",
|
||||||
|
"logoClr": "ad68d5",
|
||||||
|
"created": "2016",
|
||||||
|
"official": "postactiv.com",
|
||||||
|
"license": "AGPL-3.0",
|
||||||
|
"repo": "http://gitea.postactiv.com/postActiv/postActiv",
|
||||||
|
"language": "PHP",
|
||||||
|
"protocols":
|
||||||
|
[
|
||||||
|
{"title": "OStatus", "url": "https://github.com/tootsuite/ostatus2"}
|
||||||
|
],
|
||||||
|
"wiki": "",
|
||||||
|
"servers": "",
|
||||||
|
"mobile": "",
|
||||||
|
"devTutorials": "http://gitea.postactiv.com/postActiv/postActiv/src/master/INSTALL.md",
|
||||||
|
"notable": "",
|
||||||
|
"communities": "",
|
||||||
|
"tracker": "http://gitea.postactiv.com/postActiv/postActiv/issues",
|
||||||
|
"bounty": "https://www.postactiv.com/bounties/index.html",
|
||||||
|
"translating": ""
|
||||||
|
}
|
||||||
|
}
|
26
source/_data/socialhome.json
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
|
||||||
|
{
|
||||||
|
"data":
|
||||||
|
{
|
||||||
|
"title": "socialhome",
|
||||||
|
"logoClr": "2fcbbe",
|
||||||
|
"created": "2016",
|
||||||
|
"official": "socialhome.network",
|
||||||
|
"license": "AGPL-3.0",
|
||||||
|
"repo": "https://github.com/jaywink/socialhome",
|
||||||
|
"language": "Python",
|
||||||
|
"protocols":
|
||||||
|
[
|
||||||
|
{"title": "diaspora", "url": "https://github.com/diaspora/diaspora_federation"}
|
||||||
|
],
|
||||||
|
"wiki": "",
|
||||||
|
"servers": "https://the-federation.info/socialhome",
|
||||||
|
"mobile": "",
|
||||||
|
"devTutorials": "https://socialhome.readthedocs.io/en/latest/running.html",
|
||||||
|
"notable": "",
|
||||||
|
"communities": "",
|
||||||
|
"tracker": "https://github.com/jaywink/socialhome/issues",
|
||||||
|
"bounty": "",
|
||||||
|
"translating": ""
|
||||||
|
}
|
||||||
|
}
|
185
source/_data/worldi18n.json
Normal file
|
@ -0,0 +1,185 @@
|
||||||
|
|
||||||
|
{
|
||||||
|
"worlds":
|
||||||
|
{
|
||||||
|
"diasporaWorld":
|
||||||
|
{
|
||||||
|
"category": "social network",
|
||||||
|
"type": "macroblogging",
|
||||||
|
"mascot": "dandelion",
|
||||||
|
"dwellers": "diasporians",
|
||||||
|
"creatures": "dragons, orks, manticores, vampires",
|
||||||
|
"descr": "Gorgeous fields of swaying grass and fragrant wildflowers caressed by the ocean winds. It is home to Zaiwei, capital city of the Talus Dominion, standing as a beacon of wealth and power among nature’s bounty.\n\nIt was the dawn of the third age of federation, ten years after the Diaspora war. The ostatus project was a dream given form - it's goal: to give a place where people could work out their differences peacefully. It's a port of call, a home away from home, for shitposters, furries, developers, activists, and wanders. All wrapped together in over five hundred thirty-eight machines of silicon and steel, all alone in the internet. It can be a dangerous place, but it is our last, best hope for peace. This is the story of the last of the ostatus networks. The year is 2017. The name of the place is GNU social.",
|
||||||
|
"reading":
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"title": "Planting a Seed: diaspora story part 1",
|
||||||
|
"url": "https://medium.com/we-distribute/planting-a-seed-what-working-at-diaspora-was-like-cde26fa29364"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Wikipedia article",
|
||||||
|
"url": "https://en.wikipedia.org/wiki/Diaspora_(social_network)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "FOSDEM 2017 video about diaspora",
|
||||||
|
"url": "https://archive.fosdem.org/2017/schedule/event/diaspora"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"mastodonWorld":
|
||||||
|
{
|
||||||
|
"category": "social network",
|
||||||
|
"type": "microblogging",
|
||||||
|
"mascot": "mastodon, trumpet",
|
||||||
|
"dwellers": "mastonauts, mastodonians",
|
||||||
|
"creatures": "mages, gorgons, pixies, mermaids",
|
||||||
|
"communities": "List of instances by theme",
|
||||||
|
"descr": "Gorgeous fields of swaying grass and fragrant wildflowers caressed by the ocean winds. It is home to Zaiwei, capital city of the Talus Dominion, standing as a beacon of wealth and power among nature’s bounty.\n\nIt was the dawn of the third age of federation, ten years after the Diaspora war. The ostatus project was a dream given form - it's goal: to give a place where people could work out their differences peacefully. It's a port of call, a home away from home, for shitposters, furries, developers, activists, and wanders. All wrapped together in over five hundred thirty-eight machines of silicon and steel, all alone in the internet. It can be a dangerous place, but it is our last, best hope for peace. This is the story of the last of the ostatus networks. The year is 2017. The name of the place is GNU social.",
|
||||||
|
"reading":
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"title": "Two reasons why organizations should switch to self-hosting social media",
|
||||||
|
"url": "https://medium.com/tootsuite/two-reasons-why-organizations-should-switch-to-self-hosting-social-media-9a1bbac45b69"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Wikipedia article",
|
||||||
|
"url": "https://en.wikipedia.org/wiki/Mastodon_(software)"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"gnusocialWorld":
|
||||||
|
{
|
||||||
|
"category": "social network",
|
||||||
|
"type": "microblogging",
|
||||||
|
"mascot": "gnu",
|
||||||
|
"dwellers": "GNU-socialites, GNU-hackers",
|
||||||
|
"creatures": "centaurs, druids, pegasus, minotaurs",
|
||||||
|
"communities": "List of groups",
|
||||||
|
"descr": "Gorgeous fields of swaying grass and fragrant wildflowers caressed by the ocean winds. It is home to Zaiwei, capital city of the Talus Dominion, standing as a beacon of wealth and power among nature’s bounty.\n\nIt was the dawn of the third age of federation, ten years after the Diaspora war. The ostatus project was a dream given form - it's goal: to give a place where people could work out their differences peacefully. It's a port of call, a home away from home, for shitposters, furries, developers, activists, and wanders. All wrapped together in over five hundred thirty-eight machines of silicon and steel, all alone in the internet. It can be a dangerous place, but it is our last, best hope for peace. This is the story of the last of the ostatus networks. The year is 2017. The name of the place is GNU social.",
|
||||||
|
"reading":
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"title": "GNU social: Federation against the social model of Twitter",
|
||||||
|
"url": "https://lasindias.blog/gnu-social-federation-against-the-social-model-twitter"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Wikipedia article",
|
||||||
|
"url": "https://en.wikipedia.org/wiki/GNU_social"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"friendicaWorld":
|
||||||
|
{
|
||||||
|
"category": "social network",
|
||||||
|
"type": "macroblogging",
|
||||||
|
"mascot": "?",
|
||||||
|
"dwellers": "friends",
|
||||||
|
"creatures": "firebirds, djinns, griffins, firehounds",
|
||||||
|
"communities": "List of forums",
|
||||||
|
"descr": "Gorgeous fields of swaying grass and fragrant wildflowers caressed by the ocean winds. It is home to Zaiwei, capital city of the Talus Dominion, standing as a beacon of wealth and power among nature’s bounty.\n\nIt was the dawn of the third age of federation, ten years after the Diaspora war. The ostatus project was a dream given form - it's goal: to give a place where people could work out their differences peacefully. It's a port of call, a home away from home, for shitposters, furries, developers, activists, and wanders. All wrapped together in over five hundred thirty-eight machines of silicon and steel, all alone in the internet. It can be a dangerous place, but it is our last, best hope for peace. This is the story of the last of the ostatus networks. The year is 2017. The name of the place is GNU social.",
|
||||||
|
"reading":
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"title": "Distributed social networking in 2017: a review",
|
||||||
|
"url": "https://iwrotethislive.blogspot.ru/2017/11/distributed-social-networking-in-2017.html"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Got Zot — Mike Macgirvin on building your own apps and protocols",
|
||||||
|
"url": "https://medium.com/we-distribute/got-zot-mike-macgirvin-45287601ff19"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Wikipedia article",
|
||||||
|
"url": "https://en.wikipedia.org/wiki/Friendica"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"ganggoWorld":
|
||||||
|
{
|
||||||
|
"category": "social network",
|
||||||
|
"type": "macroblogging",
|
||||||
|
"mascot": "Ganggo (good-natured creature)",
|
||||||
|
"dwellers": "ganggorians",
|
||||||
|
"creatures": "magogs, ghosts, gargoyles, genies",
|
||||||
|
"communities": "",
|
||||||
|
"descr": "Gorgeous fields of swaying grass and fragrant wildflowers caressed by the ocean winds. It is home to Zaiwei, capital city of the Talus Dominion, standing as a beacon of wealth and power among nature’s bounty.\n\nIt was the dawn of the third age of federation, ten years after the Diaspora war. The ostatus project was a dream given form - it's goal: to give a place where people could work out their differences peacefully. It's a port of call, a home away from home, for shitposters, furries, developers, activists, and wanders. All wrapped together in over five hundred thirty-eight machines of silicon and steel, all alone in the internet. It can be a dangerous place, but it is our last, best hope for peace. This is the story of the last of the ostatus networks. The year is 2017. The name of the place is GNU social.",
|
||||||
|
"reading": ""
|
||||||
|
},
|
||||||
|
"socialhomeWorld":
|
||||||
|
{
|
||||||
|
"category": "social network",
|
||||||
|
"type": "macroblogging",
|
||||||
|
"mascot": "home",
|
||||||
|
"dwellers": "socialhomies",
|
||||||
|
"creatures": "gnomes, unicorns, sprites, gremlins",
|
||||||
|
"communities": "",
|
||||||
|
"descr": "Gorgeous fields of swaying grass and fragrant wildflowers caressed by the ocean winds. It is home to Zaiwei, capital city of the Talus Dominion, standing as a beacon of wealth and power among nature’s bounty.\n\nIt was the dawn of the third age of federation, ten years after the Diaspora war. The ostatus project was a dream given form - it's goal: to give a place where people could work out their differences peacefully. It's a port of call, a home away from home, for shitposters, furries, developers, activists, and wanders. All wrapped together in over five hundred thirty-eight machines of silicon and steel, all alone in the internet. It can be a dangerous place, but it is our last, best hope for peace. This is the story of the last of the ostatus networks. The year is 2017. The name of the place is GNU social.",
|
||||||
|
"reading":
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"title": "Faces of the Federation — Jason Robinson of Socialhome",
|
||||||
|
"url": "https://medium.com/we-distribute/faces-of-the-federation-jason-robinson-of-socialhome-7f6aa0b77915"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"hubzillaWorld":
|
||||||
|
{
|
||||||
|
"category": "social network",
|
||||||
|
"type": "macroblogging",
|
||||||
|
"mascot": "net of hubs",
|
||||||
|
"dwellers": "hubzillians",
|
||||||
|
"creatures": "nomads, wyverns, hydras, kelpies",
|
||||||
|
"communities": "",
|
||||||
|
"descr": "Gorgeous fields of swaying grass and fragrant wildflowers caressed by the ocean winds. It is home to Zaiwei, capital city of the Talus Dominion, standing as a beacon of wealth and power among nature’s bounty.\n\nIt was the dawn of the third age of federation, ten years after the Diaspora war. The ostatus project was a dream given form - it's goal: to give a place where people could work out their differences peacefully. It's a port of call, a home away from home, for shitposters, furries, developers, activists, and wanders. All wrapped together in over five hundred thirty-eight machines of silicon and steel, all alone in the internet. It can be a dangerous place, but it is our last, best hope for peace. This is the story of the last of the ostatus networks. The year is 2017. The name of the place is GNU social.",
|
||||||
|
"reading":
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"title": "The Do-Everything System: An in-depth review of Hubzilla 3.0",
|
||||||
|
"url": "https://medium.com/we-distribute/the-do-everything-system-an-in-depth-review-of-hubzilla-3-0-692204177d4e"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Got Zot — Mike Macgirvin on building your own apps and protocols",
|
||||||
|
"url": "https://medium.com/we-distribute/got-zot-mike-macgirvin-45287601ff19"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"pleromaWorld":
|
||||||
|
{
|
||||||
|
"category": "social network",
|
||||||
|
"type": "microblogging",
|
||||||
|
"mascot": "?",
|
||||||
|
"dwellers": "pleromates",
|
||||||
|
"creatures": "phoenixes, kirins, kitsunes, satoris",
|
||||||
|
"communities": "",
|
||||||
|
"descr": "Gorgeous fields of swaying grass and fragrant wildflowers caressed by the ocean winds. It is home to Zaiwei, capital city of the Talus Dominion, standing as a beacon of wealth and power among nature’s bounty.\n\nIt was the dawn of the third age of federation, ten years after the Diaspora war. The ostatus project was a dream given form - it's goal: to give a place where people could work out their differences peacefully. It's a port of call, a home away from home, for shitposters, furries, developers, activists, and wanders. All wrapped together in over five hundred thirty-eight machines of silicon and steel, all alone in the internet. It can be a dangerous place, but it is our last, best hope for peace. This is the story of the last of the ostatus networks. The year is 2017. The name of the place is GNU social.",
|
||||||
|
"reading":
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"title": "ActivityPub in Pleroma",
|
||||||
|
"url": "https://blog.soykaf.com/post/activity-pub-in-pleroma"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"postactivWorld":
|
||||||
|
{
|
||||||
|
"category": "social network",
|
||||||
|
"type": "microblogging",
|
||||||
|
"mascot": "V",
|
||||||
|
"dwellers": "postActivists",
|
||||||
|
"creatures": "paladins, archers, rune keepers, enchanters",
|
||||||
|
"communities": "",
|
||||||
|
"descr": "Gorgeous fields of swaying grass and fragrant wildflowers caressed by the ocean winds. It is home to Zaiwei, capital city of the Talus Dominion, standing as a beacon of wealth and power among nature’s bounty.\n\nIt was the dawn of the third age of federation, ten years after the Diaspora war. The ostatus project was a dream given form - it's goal: to give a place where people could work out their differences peacefully. It's a port of call, a home away from home, for shitposters, furries, developers, activists, and wanders. All wrapped together in over five hundred thirty-eight machines of silicon and steel, all alone in the internet. It can be a dangerous place, but it is our last, best hope for peace. This is the story of the last of the ostatus networks. The year is 2017. The name of the place is GNU social.",
|
||||||
|
"reading": ""
|
||||||
|
},
|
||||||
|
"aardwolfWorld":
|
||||||
|
{
|
||||||
|
"category": "social network",
|
||||||
|
"type": "macroblogging",
|
||||||
|
"mascot": "aardwolf",
|
||||||
|
"dwellers": "?",
|
||||||
|
"creatures": "werewolves, wolf riders, desert hounds",
|
||||||
|
"communities": "",
|
||||||
|
"descr": "Gorgeous fields of swaying grass and fragrant wildflowers caressed by the ocean winds. It is home to Zaiwei, capital city of the Talus Dominion, standing as a beacon of wealth and power among nature’s bounty.\n\nIt was the dawn of the third age of federation, ten years after the Diaspora war. The ostatus project was a dream given form - it's goal: to give a place where people could work out their differences peacefully. It's a port of call, a home away from home, for shitposters, furries, developers, activists, and wanders. All wrapped together in over five hundred thirty-eight machines of silicon and steel, all alone in the internet. It can be a dangerous place, but it is our last, best hope for peace. This is the story of the last of the ostatus networks. The year is 2017. The name of the place is GNU social.",
|
||||||
|
"reading": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
15
source/_posts/AP-in-Pleroma.md
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
|
||||||
|
---
|
||||||
|
layout: "post"
|
||||||
|
title: "ActivityPub soon in Pleroma"
|
||||||
|
date: 2018-03-04
|
||||||
|
tags:
|
||||||
|
- pleroma
|
||||||
|
preview: "ActivityPub support will be merged into the develop branch of Pleroma in the next days. Have fun sending pseudo-private messages to Mastodon friends!"
|
||||||
|
url: "https://blog.soykaf.com/post/activity-pub-in-pleroma"
|
||||||
|
lang: en
|
||||||
|
image: ""
|
||||||
|
---
|
||||||
|
|
||||||
|
ActivityPub support will be merged into the develop branch of Pleroma in the next days. Have fun sending pseudo-private messages to Mastodon friends!
|
||||||
|
More info [here](https://blog.soykaf.com/post/activity-pub-in-pleroma).
|
21
source/_posts/BlahBlah.md
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
|
||||||
|
---
|
||||||
|
layout: "post"
|
||||||
|
title: "Socialhome supports ActivityPub"
|
||||||
|
date: 2018-01-10
|
||||||
|
tags:
|
||||||
|
- socialhome
|
||||||
|
preview: "+1 federated network interoperable woth others"
|
||||||
|
url: "https://test.com"
|
||||||
|
lang: en
|
||||||
|
image: ""
|
||||||
|
---
|
||||||
|
|
||||||
|
This is a stub for an article. Anyone welcome to contribute.
|
||||||
|
|
||||||
|
It may be a question-answer format covering basic things, like:
|
||||||
|
- what federated social networks mean
|
||||||
|
- where to register
|
||||||
|
- tips for choosing a server. May be different for each network: in diaspora one might pay attention to whether a pod uses Camo proxy or not, if it uses the relay, whether it has a Tor .onion address, etc; in Mastodon one can choose an instance by theme, by number of other instances it's connected to... etc.
|
||||||
|
|
||||||
|
...May be better link to one of already existing FAQs out there instead of writing a new one. We shall see.
|
21
source/_posts/FAQ-for-newcomers.md
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
|
||||||
|
---
|
||||||
|
layout: "post"
|
||||||
|
title: "FAQ for newcomers"
|
||||||
|
date: 2018-02-15
|
||||||
|
tags:
|
||||||
|
- fediverse
|
||||||
|
preview: "this is a stub for an article. Anyone welcome to contribute"
|
||||||
|
url: "https://test.com"
|
||||||
|
lang: en
|
||||||
|
image: ""
|
||||||
|
---
|
||||||
|
|
||||||
|
This article is a stub. You can help the Fediverse wiki by expanding it. Anyone welcome to contribute.
|
||||||
|
|
||||||
|
It may be a question-answer format covering basic things, like:
|
||||||
|
- what federated social networks mean
|
||||||
|
- where to register
|
||||||
|
- tips for choosing a server. May be different for each network: in diaspora one might pay attention to whether a pod uses Camo proxy or not, if it uses the relay, whether it has a Tor .onion address, etc; in Mastodon one can choose an instance by theme, by number of other instances it's connected to... etc.
|
||||||
|
|
||||||
|
...May be better link to one of already existing FAQs out there instead of writing a new one. We shall see.
|
20
source/_posts/Why-use-federated-networks.md
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
|
||||||
|
---
|
||||||
|
layout: "post"
|
||||||
|
title: "Why use federated networks"
|
||||||
|
date: 2018-01-15
|
||||||
|
tags:
|
||||||
|
- fediverse
|
||||||
|
preview: "a less technical article, for your friend and your grandma"
|
||||||
|
url: "https://test.com"
|
||||||
|
lang: en
|
||||||
|
image: ""
|
||||||
|
---
|
||||||
|
|
||||||
|
This article is a stub. You can help the Fediverse wiki by expanding it. Anyone welcome to contribute.
|
||||||
|
|
||||||
|
It may be a less technical article, for your friend and your grandma. Explaining with vivid examples why privacy is important, how corporate entities are misusing their capabilities, etc.
|
||||||
|
|
||||||
|
For motivation, see [this article](https://signal.org/blog/the-ecosystem-is-moving) by M. Marlinspike elaborating on why federation *is not* the future. There are few good articles about the strong points of federated / decentralized networks on the net. Some of those few are research papers using obscure scientific language. Would be really nice to have a thorough writing on why Moxy didn't get the point of federation. That may be its point is not about providing same smooth experience for everyone (which, really, is quite hard). May be its point is in promoting a whole new concept, in users expecting to lose certain convenient features of centralized systems in exchange for benefits that a centralized system can not guarantee. Singling out these benefits, as well as describing weak points of centralized systems (remembering some facts along the way)...
|
||||||
|
|
||||||
|
I'll add some links to research papers on decentralization later. Please, don't hesitate to join and help writing this article.
|
19
source/_posts/featured-test.md
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
|
||||||
|
---
|
||||||
|
layout: "post"
|
||||||
|
title: "Featured test"
|
||||||
|
date: 2018-02-27
|
||||||
|
tags:
|
||||||
|
- fediverse
|
||||||
|
preview:
|
||||||
|
"This is a stub for an article. Anyone welcome to contribute. It may be a question-answer format covering basic things, like: what 'federated' social networks mean, how to register, tips for choosing a server (may be different for each network), other network specific tips."
|
||||||
|
url: "https://test.com"
|
||||||
|
lang: en
|
||||||
|
image: "featured-bg.jpg"
|
||||||
|
featured: true
|
||||||
|
---
|
||||||
|
|
||||||
|
This is a stub for an article.
|
||||||
|
Anyone welcome to contribute.
|
||||||
|
|
||||||
|
It may be a question-answer format covering basic things, like: what "federated" social networks mean, how to register, tips for choosing a server (may be different for each network), other network specific tips.
|
BIN
source/_posts/featured-test/featured-bg.jpg
Normal file
After Width: | Height: | Size: 734 KiB |
18
source/_posts/fediverse-info-contributors-wanted.md
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
|
||||||
|
---
|
||||||
|
layout: "post"
|
||||||
|
title: "Contributors wanted"
|
||||||
|
date: 2018-02-05
|
||||||
|
tags:
|
||||||
|
- fediverse
|
||||||
|
preview: "Jason Robinson calls out for help to make The-Federation.info a stats hub for all projects. Help adding OStatus and ActivityPub networks to the list."
|
||||||
|
url: "https://socialhome.network/content/1092839/organization-news-the-federation-info-is-now"
|
||||||
|
lang: en
|
||||||
|
image: ""
|
||||||
|
wanted: true
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
Jason Robinson, Socialhome developer, calls out for help to make The-Federation.info into a stats hub for all projects. Help adding OStatus and ActivityPub networks to the list.
|
||||||
|
More details [here](https://socialhome.network/content/1092839/organization-news-the-federation-info-is-now).
|
||||||
|
|
15
source/_posts/hubzilla-3.0.md
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
|
||||||
|
---
|
||||||
|
layout: "post"
|
||||||
|
title: "Hubzilla 3.0 major release"
|
||||||
|
date: 2018-01-11
|
||||||
|
tags:
|
||||||
|
- hubzilla
|
||||||
|
preview: "Dedicated to the memory of Tony Baldwin (@Tazman), a Friendica / Redmatrix / Hubzilla contributor, who passed away last week."
|
||||||
|
url: "https://ioh.hfrc.de/display/6144c0d9b03e8b370e243e2fa83900c3649248591efc0295babb7f7e50cf1fb8@ioh.hfrc.de"
|
||||||
|
lang: en
|
||||||
|
image: ""
|
||||||
|
---
|
||||||
|
|
||||||
|
Dedicated to the memory of Tony Baldwin (@Tazman), a Friendica / Redmatrix / Hubzilla contributor, who passed away last week.
|
||||||
|
More info [here](https://ioh.hfrc.de/display/6144c0d9b03e8b370e243e2fa83900c3649248591efc0295babb7f7e50cf1fb8@ioh.hfrc.de).
|
12
source/browserconfig.xml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<browserconfig>
|
||||||
|
<msapplication>
|
||||||
|
<tile>
|
||||||
|
<square70x70logo src="tile.png"/>
|
||||||
|
<square150x150logo src="tile.png"/>
|
||||||
|
<wide310x150logo src="tile-wide.png"/>
|
||||||
|
<square310x310logo src="tile.png"/>
|
||||||
|
<TileColor>#ffffff</TileColor>
|
||||||
|
</tile>
|
||||||
|
</msapplication>
|
||||||
|
</browserconfig>
|
9
source/en/aardwolf/index.md
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
|
||||||
|
---
|
||||||
|
layout: "aardwolf"
|
||||||
|
title: "Aardwolf"
|
||||||
|
network: "aardwolf"
|
||||||
|
subtitle: "powering communities across the web"
|
||||||
|
banner: "/img/aardwolf-bg.jpg"
|
||||||
|
percent: "90% 0%"
|
||||||
|
---
|
9
source/en/diaspora/index.md
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
|
||||||
|
---
|
||||||
|
layout: "diaspora"
|
||||||
|
title: "diaspora"
|
||||||
|
network: "diaspora"
|
||||||
|
subtitle: "social network where you are in control"
|
||||||
|
banner: "/img/diaspora-bg.jpg"
|
||||||
|
percent: "60% 55%"
|
||||||
|
---
|
7
source/en/fediverse/index.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
|
||||||
|
---
|
||||||
|
layout: "fediverse"
|
||||||
|
title: "FEDIVERSE"
|
||||||
|
subtitle: "diversity is strength"
|
||||||
|
banner: "/img/fediverse-bg.jpg"
|
||||||
|
---
|
9
source/en/friendica/index.md
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
|
||||||
|
---
|
||||||
|
layout: "friendica"
|
||||||
|
title: "Friendica"
|
||||||
|
network: "friendica"
|
||||||
|
subtitle: "keep in contact with people you care about"
|
||||||
|
banner: "/img/friendica-bg.jpg"
|
||||||
|
percent: "80% 80%"
|
||||||
|
---
|
9
source/en/ganggo/index.md
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
|
||||||
|
---
|
||||||
|
layout: "ganggo"
|
||||||
|
title: "GangGo"
|
||||||
|
network: "ganggo"
|
||||||
|
subtitle: "social network written in GoLang"
|
||||||
|
banner: "/img/ganggo-bg.jpg"
|
||||||
|
percent: "50% 50%"
|
||||||
|
---
|
9
source/en/gnusocial/index.md
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
|
||||||
|
---
|
||||||
|
layout: "gnusocial"
|
||||||
|
title: "GNU Social"
|
||||||
|
network: "gnusocial"
|
||||||
|
subtitle: "connecting free libre communities across the web"
|
||||||
|
banner: "/img/gnusocial-bg.jpg"
|
||||||
|
percent: "65% 85%"
|
||||||
|
---
|
9
source/en/hubzilla/index.md
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
|
||||||
|
---
|
||||||
|
layout: "hubzilla"
|
||||||
|
title: "Hubzilla"
|
||||||
|
network: "hubzilla"
|
||||||
|
subtitle: "powerful tool for a decentralized nomadic identity"
|
||||||
|
banner: "/img/hubzilla-bg.jpg"
|
||||||
|
percent: "20% 55%"
|
||||||
|
---
|
7
source/en/knowledge/index.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
|
||||||
|
---
|
||||||
|
layout: "knowledge"
|
||||||
|
title: "KNOWLEDGE"
|
||||||
|
subtitle: "the truth isn't always beauty, but the hunger for it is"
|
||||||
|
banner: "/img/knowledge-bg.jpg"
|
||||||
|
---
|
9
source/en/mastodon/index.md
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
|
||||||
|
---
|
||||||
|
layout: "mastodon"
|
||||||
|
title: "Mastodon"
|
||||||
|
network: "mastodon"
|
||||||
|
subtitle: "find your perfect community"
|
||||||
|
banner: "/img/mastodon-bg.jpg"
|
||||||
|
percent: "60% 90%"
|
||||||
|
---
|
9
source/en/pleroma/index.md
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
|
||||||
|
---
|
||||||
|
layout: "pleroma"
|
||||||
|
title: "Pleroma"
|
||||||
|
network: "pleroma"
|
||||||
|
subtitle: "light as a feather"
|
||||||
|
banner: "/img/pleroma-bg.jpg"
|
||||||
|
percent: "0% 80%"
|
||||||
|
---
|
9
source/en/postactiv/index.md
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
|
||||||
|
---
|
||||||
|
layout: "postactiv"
|
||||||
|
title: "postActiv"
|
||||||
|
network: "postactiv"
|
||||||
|
subtitle: "networking platform with many features"
|
||||||
|
banner: "/img/postactiv-bg.jpg"
|
||||||
|
percent: "90% 0%"
|
||||||
|
---
|
9
source/en/socialhome/index.md
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
|
||||||
|
---
|
||||||
|
layout: "socialhome"
|
||||||
|
title: "Socialhome"
|
||||||
|
network: "socialhome"
|
||||||
|
subtitle: "personal webpage with social networking functionality"
|
||||||
|
banner: "/img/socialhome-bg.jpg"
|
||||||
|
percent: "25% 50%"
|
||||||
|
---
|
BIN
source/favicon.ico
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
source/favicon.png
Normal file
After Width: | Height: | Size: 33 KiB |
19
source/humans.txt
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# humanstxt.org/
|
||||||
|
# The humans responsible & technology colophon
|
||||||
|
|
||||||
|
# TEAM
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*
|
||||||
|
@kodeguild
|
||||||
|
|
||||||
|
# THANKS
|
||||||
|
|
||||||
|
to Tim Berners-Lee for the World Wide Web
|
||||||
|
|
||||||
|
# TECHNOLOGY COLOPHON
|
||||||
|
|
||||||
|
Hexo
|
||||||
|
HTML5
|
||||||
|
Sass
|
||||||
|
Gulp
|
BIN
source/img/03.jpg
Normal file
After Width: | Height: | Size: 171 KiB |
BIN
source/img/aardwolf-bg.jpg
Normal file
After Width: | Height: | Size: 344 KiB |
BIN
source/img/aardwolf.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
source/img/avatars/ccc.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
source/img/avatars/drevoy.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
source/img/avatars/framasoft.png
Normal file
After Width: | Height: | Size: 2 KiB |
BIN
source/img/avatars/fsf.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
source/img/avatars/fsfe.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
source/img/avatars/indie.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
source/img/avatars/laquadrature.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
source/img/avatars/liberapay.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
source/img/avatars/vikings.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
source/img/avatars/yunohost.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
source/img/diaspora-bg.jpg
Normal file
After Width: | Height: | Size: 244 KiB |
BIN
source/img/diaspora-bg2.jpg
Normal file
After Width: | Height: | Size: 213 KiB |
BIN
source/img/diaspora-overlay.jpg
Normal file
After Width: | Height: | Size: 265 KiB |
BIN
source/img/diaspora.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
source/img/dots.png
Normal file
After Width: | Height: | Size: 100 B |
BIN
source/img/favicon.png
Normal file
After Width: | Height: | Size: 9 KiB |
BIN
source/img/fediverse-bg22.jpg
Normal file
After Width: | Height: | Size: 293 KiB |
BIN
source/img/ferdiverse-bg.jpg
Normal file
After Width: | Height: | Size: 285 KiB |
BIN
source/img/friendica-bg.jpg
Normal file
After Width: | Height: | Size: 313 KiB |
BIN
source/img/friendica.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
source/img/ganggo-bg.jpg
Normal file
After Width: | Height: | Size: 384 KiB |
BIN
source/img/ganggo.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
source/img/gnusocial-bg.jpg
Normal file
After Width: | Height: | Size: 85 KiB |
BIN
source/img/gnusocial.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
source/img/hubzilla-bg.jpg
Normal file
After Width: | Height: | Size: 390 KiB |
BIN
source/img/hubzilla.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
source/img/index-bg.jpg
Normal file
After Width: | Height: | Size: 488 KiB |
BIN
source/img/knowledge-bg.jpg
Normal file
After Width: | Height: | Size: 60 KiB |
1
source/img/logo.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#FFF" d="M24.253 23.514l.274 2.012-1.737-.914-1.737.914.274-2.012-1.372-1.372 1.92-.274.914-1.829.914 1.829 1.92.274-1.37 1.372zm.796-12.975l-1.25 1.483-2.036-.194 1.066 1.745-.785 1.774 1.89-.436 1.561 1.299.145-1.958 1.696-.989-1.851-.833-.436-1.891zm-2.575 24.713l-1.44-.206-.686-1.372-.686 1.372-1.44.206 1.029 1.029-.206 1.509 1.303-.686 1.303.686-.206-1.509 1.029-1.029zm7.914-10.004l.229-1.067 1.062-.441-.99-.585-.079-1.088-.823.716-1.118-.233.445 1.011-.581.939 1.14-.075.715.823zm2.792-13.459l-.703.834-1.145-.109.6.981-.442.998 1.063-.245.878.731.082-1.101.954-.556-1.041-.469-.246-1.064zM16.138 25.248l.229-1.067 1.062-.441-.99-.585-.079-1.088-.823.716-1.118-.233.445 1.011-.581.939 1.14-.075.715.823z"/><path fill="none" stroke="#FFF" stroke-width="2" stroke-miterlimit="10" d="M27.393 11.902s1.408-1.3 3.333.208m-7.658 4.563c-.313.605-.3 2.475-.3 2.475m0 14.65v-4.125m4.762-5.988h-1.675m-7.567 0h1.625m2.846 4.938v-2.475"/><path fill="none" stroke="#FFF" stroke-miterlimit="10" d="M38.548 40.623l-13.598 4.93-13.541-5.09L4.26 27.735l2.59-14.412 11.116-9.352 14.441.085 11.009 9.481 2.425 14.441-7.293 12.645z"/><path fill="#FFF" d="M19.182 3.97l.612 1.162-1.258-.171-.854.94-.278-1.283-1.137-.53 1.106-.591.151-1.314.96.909 1.228-.258-.53 1.136zm25.578 8.165l-1.228.258-.96-.909-.151 1.314-1.106.591 1.137.53.278 1.283.854-.94 1.258.171-.612-1.162.53-1.136zM5.922 26.16l-1.228.258-.96-.909-.151 1.314-1.106.591 1.137.53.278 1.283.854-.94 1.258.171-.612-1.162.53-1.136zm21.104 19.613l-.916-.858.194-1.308-1.163.63-1.119-.567.218 1.235-.892.964 1.26.16.581 1.129.601-1.167 1.236-.218zm13.083-5.993l-1.253-.068-.692-1.127-.486 1.23-1.222.285.961.806-.063 1.312 1.068-.687 1.171.491-.29-1.281.806-.961zM7.825 11.025l-.858.915-1.308-.194.63 1.163-.567 1.119 1.235-.218.964.892.16-1.26 1.129-.581-1.167-.601-.218-1.235zM46.731 26.35l-1.065.662-1.213-.526.307 1.286-.837.934 1.25.109.7 1.111.481-1.175 1.241-.269-.973-.882.109-1.25zM33.21 2.452l-.858.916-1.308-.194.63 1.163-.567 1.119 1.235-.218.964.892.16-1.26 1.129-.581-1.167-.601-.218-1.236zM11.86 38.539l-.572 1.116-1.311.174.926.944-.237 1.232 1.128-.55 1.172.591-.193-1.255.925-.87-1.288-.256-.55-1.126z"/></svg>
|
After Width: | Height: | Size: 2.2 KiB |
1
source/img/logo2.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#FFF" d="M24.967 24.793l.274 2.009-1.735-.913-1.735.913.274-2.009-1.369-1.369 1.917-.274.913-1.826.913 1.826 1.917.274-1.369 1.369zm.852-14.5l-1.56 1.851-2.54-.242 1.331 2.177-.98 2.214 2.359-.545 1.948 1.621.181-2.444 2.117-1.234-2.311-1.04-.545-2.358zm-2.56 25.254l-1.258-.18-.599-1.198-.599 1.198-1.258.18.899.899-.18 1.318 1.138-.599 1.138.599-.18-1.318.899-.899zm9.602-11.775l-1.115.255-.89-.814-.117 1.2-.999.557 1.045.465.274 1.165.763-.871 1.15.136-.576-1.05.465-1.043zm.604-12.258l-.878 1.041-1.429-.136.749 1.225-.551 1.245 1.327-.306 1.096.912.102-1.375 1.191-.694-1.3-.585-.307-1.327zM16.086 26.515l.24-1.118 1.113-.463-1.038-.613-.081-1.141-.863.75-1.172-.244.466 1.06-.609.984 1.195-.079.749.864z"/><path fill="none" stroke="#FFF" stroke-width="2.4" stroke-miterlimit="10" d="M27.828 11.265s1.352-1.248 3.2.2m-7.16 6.156c-.3.581-.288 2.808-.288 2.808m0 7.56v5.784m3.252-8.844l2.232.048m-10.984-.096h2.136"/><path fill="none" stroke="#FFF" stroke-width="1.44" stroke-miterlimit="10" d="M39.353 41.656l-14.36 5.207-14.3-5.375-7.548-13.442L5.88 12.827l11.738-9.875 15.249.089 11.625 10.012 2.561 15.25-7.7 13.353z"/><path fill="#FFF" d="M19.284 2.873a1.536 1.536 0 1 1-3.073 0 1.536 1.536 0 0 1 3.073 0zm13.224-1.416a1.536 1.536 0 1 0 0 3.073 1.536 1.536 0 0 0 0-3.073zm11.856 9.576a1.536 1.536 0 1 0 0 3.073 1.536 1.536 0 0 0 0-3.073zm2.784 15.624a1.536 1.536 0 1 0 0 3.073 1.536 1.536 0 0 0 0-3.073zM39.353 40.12a1.536 1.536 0 1 0 0 3.073 1.536 1.536 0 0 0 0-3.073zm-14.405 5.257a1.536 1.536 0 1 0 0 3.073 1.536 1.536 0 0 0 0-3.073zm-14.254-5.425a1.536 1.536 0 1 0 0 3.073 1.536 1.536 0 0 0 0-3.073zM3.145 26.51a1.536 1.536 0 1 0 0 3.073 1.536 1.536 0 0 0 0-3.073zM5.88 11.291a1.536 1.536 0 1 0 0 3.073 1.536 1.536 0 0 0 0-3.073z"/></svg>
|
After Width: | Height: | Size: 1.8 KiB |
1
source/img/logo3.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#FFF" d="M23.98 24.665l.257 1.883-1.626-.856-1.626.856.257-1.883-1.284-1.284 1.797-.257.856-1.712.856 1.712 1.797.257-1.284 1.284zm.798-13.595l-1.463 1.735-2.382-.227 1.248 2.041-.918 2.075 2.211-.511 1.826 1.519.17-2.291 1.985-1.157-2.166-.975-.511-2.209zm-1.902 24.222l-1.415-.202-.674-1.348-.674 1.348-1.415.202 1.011 1.011-.202 1.483 1.281-.674 1.281.674-.202-1.483 1.009-1.011zm9.062-11.823l-1.255.287-1.001-.915-.132 1.35-1.124.626 1.176.523.308 1.311.859-.979 1.293.153-.648-1.181.524-1.175zm.67-12.024l-.987 1.171-1.608-.153.842 1.378-.62 1.401 1.493-.345 1.233 1.026.115-1.546 1.34-.781-1.462-.658-.346-1.493zM15.092 26.631l.27-1.258 1.253-.521-1.168-.69-.093-1.284-.971.844-1.319-.275.525 1.192-.686 1.107 1.344-.088.845.973z"/><path fill="none" stroke="#FFF" stroke-width="2.25" stroke-miterlimit="10" d="M26.663 11.982s1.268-1.17 3 .188m-6.713 5.771c-.281.545-.27 2.632-.27 2.632m0 7.088v5.422m3.094-8.291l1.913.045m-10.163-.09h1.823"/><path fill="none" stroke="#FFF" stroke-width="1.35" stroke-miterlimit="10" d="M38.232 40.473L24.77 45.355l-13.406-5.039-7.077-12.602 2.564-14.268 11.005-9.258 14.296.084 10.898 9.386 2.401 14.297-7.219 12.518z"/><path fill="#FFF" d="M19.418 4.115a1.44 1.44 0 1 1-2.88 0 1.44 1.44 0 0 1 2.88 0zm12.397-1.328a1.44 1.44 0 1 0 0 2.88 1.44 1.44 0 0 0 0-2.88zm11.115 8.978a1.44 1.44 0 1 0 0 2.88 1.44 1.44 0 0 0 0-2.88zm2.61 14.647a1.44 1.44 0 1 0 0 2.88 1.44 1.44 0 0 0 0-2.88zm-7.308 12.621a1.44 1.44 0 1 0 0 2.88 1.44 1.44 0 0 0 0-2.88zm-13.504 4.929a1.44 1.44 0 1 0 0 2.88 1.44 1.44 0 0 0 0-2.88zm-13.364-5.086a1.44 1.44 0 1 0 0 2.88 1.44 1.44 0 0 0 0-2.88zM4.287 26.274a1.44 1.44 0 1 0 0 2.88 1.44 1.44 0 0 0 0-2.88zm2.564-14.267a1.44 1.44 0 1 0 0 2.88 1.44 1.44 0 0 0 0-2.88z"/></svg>
|
After Width: | Height: | Size: 1.8 KiB |
BIN
source/img/mastodon-bg.jpg
Normal file
After Width: | Height: | Size: 378 KiB |
BIN
source/img/mastodon.png
Normal file
After Width: | Height: | Size: 16 KiB |
10
source/img/menu.svg
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
width="24px" height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
||||||
|
<path id="menu" fill="#FFFFFF" d="M6.8,11.613c0,1.436-1.164,2.6-2.6,2.6s-2.6-1.164-2.6-2.6s1.164-2.6,2.6-2.6
|
||||||
|
S6.8,10.177,6.8,11.613z M22.4,11.613c0,1.436-1.164,2.6-2.6,2.6c-1.436,0-2.6-1.164-2.6-2.6s1.164-2.6,2.6-2.6
|
||||||
|
C21.236,9.013,22.4,10.177,22.4,11.613z M14.6,11.613c0,1.436-1.164,2.6-2.6,2.6s-2.6-1.164-2.6-2.6s1.164-2.6,2.6-2.6
|
||||||
|
S14.6,10.177,14.6,11.613z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 845 B |
BIN
source/img/pleroma-bg.jpg
Normal file
After Width: | Height: | Size: 337 KiB |
BIN
source/img/pleroma.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
source/img/postactiv-bg.jpg
Normal file
After Width: | Height: | Size: 390 KiB |
BIN
source/img/postactiv.png
Normal file
After Width: | Height: | Size: 18 KiB |
19
source/img/share.svg
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
width="24px" height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
||||||
|
<path id="share_chain_3" fill="#FFFFFF" d="M12.562,16.5l-2.8,2.731c-1.366,1.317-3.541,1.278-4.858-0.088
|
||||||
|
c-0.009-0.01-0.019-0.02-0.028-0.03c-0.669-0.632-1.064-1.502-1.098-2.422c-0.018-0.889,0.337-1.744,0.98-2.358l2.8-2.731
|
||||||
|
c0.534-0.518,0.546-1.371,0.028-1.904C7.577,9.689,7.568,9.68,7.558,9.671c-0.551-0.533-1.425-0.533-1.975,0l-2.8,2.731
|
||||||
|
c-1.184,1.135-1.836,2.716-1.795,4.355c0.052,1.625,0.739,3.164,1.914,4.288c1.205,1.195,2.831,1.869,4.528,1.876
|
||||||
|
c1.612,0.004,3.161-0.628,4.311-1.758l2.8-2.731c0.534-0.518,0.546-1.371,0.028-1.904c-0.009-0.009-0.018-0.018-0.028-0.028
|
||||||
|
C13.989,15.965,13.113,15.965,12.562,16.5z M6.976,17.06c0.55,0.534,1.424,0.534,1.974,0l8.38-8.194
|
||||||
|
c0.534-0.516,0.548-1.367,0.032-1.9c-0.01-0.011-0.021-0.021-0.032-0.032c-0.551-0.533-1.425-0.533-1.975,0L6.976,15.13
|
||||||
|
c-0.558,0.488-0.653,1.293-0.165,1.852c0.04,0.045,0.082,0.088,0.165,0.084L6.976,17.06z M21.396,2.954
|
||||||
|
c-2.416-2.454-6.358-2.507-8.838-0.118l-2.8,2.733C9.225,6.084,9.21,6.934,9.726,7.467C9.736,7.478,9.747,7.489,9.758,7.5
|
||||||
|
c0.55,0.533,1.424,0.533,1.974,0l2.8-2.731c1.365-1.318,3.54-1.279,4.858,0.087c0.01,0.01,0.02,0.021,0.029,0.031
|
||||||
|
c0.669,0.633,1.063,1.502,1.099,2.422c0.018,0.889-0.337,1.744-0.98,2.358l-2.8,2.731c-0.534,0.516-0.548,1.367-0.032,1.9
|
||||||
|
c0.01,0.011,0.021,0.021,0.032,0.032c0.55,0.534,1.425,0.534,1.975,0l2.8-2.731c1.183-1.135,1.834-2.716,1.795-4.355
|
||||||
|
c-0.053-1.623-0.739-3.16-1.912-4.283V2.954z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
BIN
source/img/socialhome-bg.jpg
Normal file
After Width: | Height: | Size: 210 KiB |
BIN
source/img/socialhome.png
Normal file
After Width: | Height: | Size: 14 KiB |
15
source/img/star.svg
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
width="24px" height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
||||||
|
<path id="snow" fill="#DABA76" d="M21.8,10.6c-0.773,0-1.4,0.627-1.4,1.4s0.627,1.4,1.4,1.4c0.773,0,1.4-0.627,1.4-1.4
|
||||||
|
S22.573,10.6,21.8,10.6z M2.2,10.6c-0.773,0-1.4,0.627-1.4,1.4s0.627,1.4,1.4,1.4s1.4-0.627,1.4-1.4S2.973,10.6,2.2,10.6z M12,20.4
|
||||||
|
c-0.773,0-1.4,0.627-1.4,1.4c0,0.773,0.627,1.4,1.4,1.4s1.4-0.627,1.4-1.4C13.4,21.027,12.773,20.4,12,20.4z M12,3.6
|
||||||
|
c0.773,0,1.4-0.627,1.4-1.4S12.773,0.8,12,0.8s-1.4,0.627-1.4,1.4S11.227,3.6,12,3.6z M15.388,13.4H17.6c0.773,0,1.4-0.627,1.4-1.4
|
||||||
|
s-0.627-1.4-1.4-1.4h-2.212l4.606-4.606c0.549-0.549,0.549-1.439,0-1.988c-0.549-0.549-1.439-0.549-1.988,0l0,0L13.4,8.612V6.4
|
||||||
|
C13.4,5.627,12.773,5,12,5s-1.4,0.627-1.4,1.4v2.212L5.994,4.006c-0.549-0.549-1.439-0.549-1.988,0
|
||||||
|
c-0.549,0.549-0.549,1.439,0,1.988l0,0L8.612,10.6H6.4C5.627,10.6,5,11.227,5,12s0.627,1.4,1.4,1.4h2.212l-4.606,4.606
|
||||||
|
c-0.546,0.55-0.546,1.438,0,1.988c0.552,0.541,1.436,0.541,1.988,0l4.606-4.606V17.6c0,0.773,0.627,1.4,1.4,1.4s1.4-0.627,1.4-1.4
|
||||||
|
v-2.212l4.606,4.606c0.552,0.541,1.436,0.541,1.988,0c0.546-0.55,0.546-1.438,0-1.988L15.388,13.4z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
BIN
source/img/touch/android-icon-144x144.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
source/img/touch/android-icon-192x192.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
source/img/touch/android-icon-36x36.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
source/img/touch/android-icon-48x48.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
source/img/touch/android-icon-72x72.png
Normal file
After Width: | Height: | Size: 3.9 KiB |