290 lines
21 KiB
HTML
290 lines
21 KiB
HTML
<!DOCTYPE HTML>
|
||
<html lang="en" class="light" dir="ltr">
|
||
<head>
|
||
<!-- Book generated using mdBook -->
|
||
<meta charset="UTF-8">
|
||
<title></title>
|
||
<meta name="robots" content="noindex">
|
||
|
||
|
||
<!-- Custom HTML head -->
|
||
|
||
<meta name="description" content="">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
<meta name="theme-color" content="#ffffff">
|
||
|
||
<link rel="icon" href="favicon.svg">
|
||
<link rel="shortcut icon" href="favicon.png">
|
||
<link rel="stylesheet" href="css/variables.css">
|
||
<link rel="stylesheet" href="css/general.css">
|
||
<link rel="stylesheet" href="css/chrome.css">
|
||
<link rel="stylesheet" href="css/print.css" media="print">
|
||
|
||
<!-- Fonts -->
|
||
<link rel="stylesheet" href="FontAwesome/css/font-awesome.css">
|
||
<link rel="stylesheet" href="fonts/fonts.css">
|
||
|
||
<!-- Highlight.js Stylesheets -->
|
||
<link rel="stylesheet" href="highlight.css">
|
||
<link rel="stylesheet" href="tomorrow-night.css">
|
||
<link rel="stylesheet" href="ayu-highlight.css">
|
||
|
||
<!-- Custom theme stylesheets -->
|
||
|
||
</head>
|
||
<body class="sidebar-visible no-js">
|
||
<div id="body-container">
|
||
<!-- Provide site root to javascript -->
|
||
<script>
|
||
var path_to_root = "";
|
||
var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "navy" : "light";
|
||
</script>
|
||
|
||
<!-- Work around some values being stored in localStorage wrapped in quotes -->
|
||
<script>
|
||
try {
|
||
var theme = localStorage.getItem('mdbook-theme');
|
||
var sidebar = localStorage.getItem('mdbook-sidebar');
|
||
|
||
if (theme.startsWith('"') && theme.endsWith('"')) {
|
||
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
|
||
}
|
||
|
||
if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
|
||
localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
|
||
}
|
||
} catch (e) { }
|
||
</script>
|
||
|
||
<!-- Set the theme before any content is loaded, prevents flash -->
|
||
<script>
|
||
var theme;
|
||
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { }
|
||
if (theme === null || theme === undefined) { theme = default_theme; }
|
||
var html = document.querySelector('html');
|
||
html.classList.remove('light')
|
||
html.classList.add(theme);
|
||
var body = document.querySelector('body');
|
||
body.classList.remove('no-js')
|
||
body.classList.add('js');
|
||
</script>
|
||
|
||
<input type="checkbox" id="sidebar-toggle-anchor" class="hidden">
|
||
|
||
<!-- Hide / unhide sidebar before it is displayed -->
|
||
<script>
|
||
var body = document.querySelector('body');
|
||
var sidebar = null;
|
||
var sidebar_toggle = document.getElementById("sidebar-toggle-anchor");
|
||
if (document.body.clientWidth >= 1080) {
|
||
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
|
||
sidebar = sidebar || 'visible';
|
||
} else {
|
||
sidebar = 'hidden';
|
||
}
|
||
sidebar_toggle.checked = sidebar === 'visible';
|
||
body.classList.remove('sidebar-visible');
|
||
body.classList.add("sidebar-" + sidebar);
|
||
</script>
|
||
|
||
<nav id="sidebar" class="sidebar" aria-label="Table of contents">
|
||
<div class="sidebar-scrollbox">
|
||
<ol class="chapter"><li class="chapter-item expanded "><a href="dunia_yetu/dunia_yetu.html"><strong aria-hidden="true">1.</strong> Dunia Yetu</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="dunia_yetu/what_we_offer.html"><strong aria-hidden="true">1.1.</strong> What we offer</a></li><li class="chapter-item expanded "><a href="dunia_yetu/our_core_values.html"><strong aria-hidden="true">1.2.</strong> Our Core Values</a></li></ol></li><li class="chapter-item expanded "><a href="dunia_yetu_codingacademy/coding_academy.html"><strong aria-hidden="true">2.</strong> Dunia Yetu Coding Academy</a></li><li class="chapter-item expanded "><a href="how_you_can_participate/participate.html"><strong aria-hidden="true">3.</strong> How you can Participate</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="how_you_can_participate/host_a_node.html"><strong aria-hidden="true">3.1.</strong> Host a Node</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="how_you_can_participate/host_a_node.html"><strong aria-hidden="true">3.1.1.</strong> How to build a Node</a></li><li class="chapter-item expanded "><a href="how_you_can_participate/host_a_node.html"><strong aria-hidden="true">3.1.2.</strong> How to earn TFT</a></li></ol></li><li class="chapter-item expanded "><a href="how_you_can_participate/build.html"><strong aria-hidden="true">3.2.</strong> Build on top of Tanzania's decentrslised Internet</a></li></ol></li></ol>
|
||
</div>
|
||
<div id="sidebar-resize-handle" class="sidebar-resize-handle"></div>
|
||
</nav>
|
||
|
||
<!-- Track and set sidebar scroll position -->
|
||
<script>
|
||
var sidebarScrollbox = document.querySelector('#sidebar .sidebar-scrollbox');
|
||
sidebarScrollbox.addEventListener('click', function(e) {
|
||
if (e.target.tagName === 'A') {
|
||
sessionStorage.setItem('sidebar-scroll', sidebarScrollbox.scrollTop);
|
||
}
|
||
}, { passive: true });
|
||
var sidebarScrollTop = sessionStorage.getItem('sidebar-scroll');
|
||
sessionStorage.removeItem('sidebar-scroll');
|
||
if (sidebarScrollTop) {
|
||
// preserve sidebar scroll position when navigating via links within sidebar
|
||
sidebarScrollbox.scrollTop = sidebarScrollTop;
|
||
} else {
|
||
// scroll sidebar to current active section when navigating via "next/previous chapter" buttons
|
||
var activeSection = document.querySelector('#sidebar .active');
|
||
if (activeSection) {
|
||
activeSection.scrollIntoView({ block: 'center' });
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<div id="page-wrapper" class="page-wrapper">
|
||
|
||
<div class="page">
|
||
<div id="menu-bar-hover-placeholder"></div>
|
||
<div id="menu-bar" class="menu-bar sticky">
|
||
<div class="left-buttons">
|
||
<label id="sidebar-toggle" class="icon-button" for="sidebar-toggle-anchor" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar">
|
||
<i class="fa fa-bars"></i>
|
||
</label>
|
||
<button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list">
|
||
<i class="fa fa-paint-brush"></i>
|
||
</button>
|
||
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
|
||
<li role="none"><button role="menuitem" class="theme" id="light">Light</button></li>
|
||
<li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li>
|
||
<li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li>
|
||
<li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li>
|
||
<li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li>
|
||
</ul>
|
||
<button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar">
|
||
<i class="fa fa-search"></i>
|
||
</button>
|
||
</div>
|
||
|
||
<h1 class="menu-title"></h1>
|
||
|
||
<div class="right-buttons">
|
||
<a href="print.html" title="Print this book" aria-label="Print this book">
|
||
<i id="print-button" class="fa fa-print"></i>
|
||
</a>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
<div id="search-wrapper" class="hidden">
|
||
<form id="searchbar-outer" class="searchbar-outer">
|
||
<input type="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header">
|
||
</form>
|
||
<div id="searchresults-outer" class="searchresults-outer hidden">
|
||
<div id="searchresults-header" class="searchresults-header"></div>
|
||
<ul id="searchresults">
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
|
||
<script>
|
||
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
|
||
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
|
||
Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) {
|
||
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
|
||
});
|
||
</script>
|
||
|
||
<div id="content" class="content">
|
||
<main>
|
||
<h1 id="dunia-yetu"><a class="header" href="#dunia-yetu">Dunia Yetu</a></h1>
|
||
<p><strong>We empower East Africans coders with tools and a network to build an advanced, self-governed internet.</strong></p>
|
||
<p><strong>Join the movement to create a sovereign digital landscape in Tanzania</strong></p>
|
||
<p>We are embarking on an ambitious journey to revolutionise the digital space in East Africa. Within the next two years, our goal is to equip thousands of coders with a groundbreaking network and toolkit. This initiative is more than just technology; it's about forging a self-reliant digital ecosystem, proudly owned and managed by East Africans.</p>
|
||
<p>The Internet was meant to be a peer-to-peer infrastructure with us in the centre of our data and digital lives. Inspired by the past, we’re building an Internet how “the” Internet was originally intended.</p>
|
||
<p><img src="dunia_yetu/dunia.png#medium#mx-auto" alt="Image" /></p>
|
||
<div style="break-before: page; page-break-before: always;"></div><h2 id="what-we-offer"><a class="header" href="#what-we-offer">What we offer</a></h2>
|
||
<ul>
|
||
<li><strong>Data sovereignty:</strong> your data, your rules. Manage your digital footprint and contribute to the fabrics of a future-focused digital society, where privacy and control are paramount.</li>
|
||
<li><strong>Boundless open-source knowledge sharing:</strong> we believe in the power of shared knowledge to unite and uplift our community - be it videos, audio, code or web resources.</li>
|
||
<li><strong>Collaboration redefined:</strong> our organisation fosters collaboration, co-creation, and community for individuals to connect and collaborate. </li>
|
||
<li><strong>Localised AI - Intelligence at your fingertips:</strong> harnessing the power of AI, we are introducing a locally hosted, co-owned AI system. Personalised assistance to help you find exactly what you need, accelerating your learning curve.</li>
|
||
<li><strong>A launchpad for startups:</strong> we’re not just about coding; we’re about creation. Our unique funding mechanism empowers startups to realise their visions through innovative financing models like pre-purchase and co-ownership.</li>
|
||
<li><strong>Peer-to-Peer E-Commerce:</strong> step into the future of commerce with peer-to-peer e-commerce offering a seamless and secure trading experience. </li>
|
||
</ul>
|
||
<div style="break-before: page; page-break-before: always;"></div><h2 id="our-core-values"><a class="header" href="#our-core-values">Our Core Values</a></h2>
|
||
<ul>
|
||
<li><strong>Planet First:</strong> never do anything which does not respect mother earth.</li>
|
||
<li><strong>People First:</strong> equality for everyone.</li>
|
||
<li><strong>Open Source:</strong> for all sectors from healthcare to software to legal to education.</li>
|
||
<li><strong>Authenticity:</strong> restore authenticity of people and information</li>
|
||
<li><strong>Simplicity:</strong> complexity is killing progress</li>
|
||
</ul>
|
||
<div style="break-before: page; page-break-before: always;"></div><h1 id="dunia-yetu-coding-academy"><a class="header" href="#dunia-yetu-coding-academy">Dunia Yetu Coding Academy</a></h1>
|
||
<p>Our team is dedicated to fostering technological empowerment within Dar es Salaam’s local community through the establishment of a Coding Academy. This initiative aims to provide accessible and inclusive learning opportunities, equipping individuals with valuable tech skills that are increasingly essential in today's digital landscape. Our Coding Academy will serve as a dynamic hub where community members can engage in immersive learning experiences, participate in hackathons, and attend hands-on coding workshops. By creating a supportive environment that encourages collaboration and innovation, we aspire to empower individuals to navigate the ever-evolving world of technology and contribute meaningfully to Tanzania’s digital realm. Through this endeavour, we envision a community that not only embraces technological advancements but actively shapes and drives them.</p>
|
||
<p>Our team is actively involved in setting up the Dunia Yetu Hub in Dar es Salaam, providing a communal space for community members to convene. This hub will serve as a versatile coworking space and will also host our Coding Academy's hackathons and workshops. </p>
|
||
<div style="break-before: page; page-break-before: always;"></div><h1 id="how-you-can-participate"><a class="header" href="#how-you-can-participate">How you can participate</a></h1>
|
||
<p>Dunia Yetu is using the ThreeFold Grid to create Tanzania’s first self-governed internet. </p>
|
||
<p>ThreeFold is a globally-distributed grid of storage, compute, and network capacity, acting as “no middleman” Internet resources between independent capacity providers and users. The ThreeFold Grid is formed by Farmers, independent people who connect Nodes (decentralised Internet capacity) anywhere electricity and network are present. Together, they form a globally distributed Internet infrastructure and earn income in the form of TFT.</p>
|
||
<p>The future is about decentralisation, participation, and working together to achieve our goals. As a decentralised movement, community involvement and creation is integral. This new Internet can only succeed if we find ways to collaborate where we together pull this Internet concept forward. Below, please find some of the ways you can join us in building a better Internet for Tanzania.</p>
|
||
<ol>
|
||
<li><a href="how_you_can_participate/./host_a_node.html">Host a Node</a></li>
|
||
<li><a href="how_you_can_participate/./build.html">Build on top of Tanzania’s decentralised internet</a></li>
|
||
</ol>
|
||
<div style="break-before: page; page-break-before: always;"></div><h2 id="host-a-node"><a class="header" href="#host-a-node">Host a node</a></h2>
|
||
<p><strong>You can help make Tanzania’s own sovereign internet a reality by hosting a node.</strong></p>
|
||
<p>By connecting hardware at your home or office – or anywhere you’d like – you provide Internet capacity for the people around you and earn a new digital currency, TFT.</p>
|
||
<p><img src="how_you_can_participate/node.png" alt="image" title="image_tooltip" /></p>
|
||
<h3 id="how-to-build-a-node"><a class="header" href="#how-to-build-a-node">How to build a node</a></h3>
|
||
<p>Step 1 - Obtain the hardware for a node which can be purchased <a href="https://marketplace.3node.global/index.php">here</a></p>
|
||
<p>Step 2 - Follow this <a href="https://manual.grid.tf/farmers/3node_building/3node_building.html">instruction manual</a> to set up your node</p>
|
||
<p>Step 3: Earn TFT (more below)</p>
|
||
<h3 id="how-to-earn-tft"><a class="header" href="#how-to-earn-tft">How to earn TFT</a></h3>
|
||
<p>Farmers earn TFT according to the amount of Internet capacity their Nodes connect to the ThreeFold Grid. The Internet capacity is verified by the ThreeFold Blockchain on an ongoing basis using the “Proof-of-Capacity” algorithm.</p>
|
||
<p><img src="how_you_can_participate/tft.png" alt="image" title="image_tooltip" /></p>
|
||
<div style="break-before: page; page-break-before: always;"></div><h2 id="host-a-node-1"><a class="header" href="#host-a-node-1">Host a node</a></h2>
|
||
<p><strong>You can help make Tanzania’s own sovereign internet a reality by hosting a node.</strong></p>
|
||
<p>By connecting hardware at your home or office – or anywhere you’d like – you provide Internet capacity for the people around you and earn a new digital currency, TFT.</p>
|
||
<p><img src="how_you_can_participate/node.png" alt="image" title="image_tooltip" /></p>
|
||
<h3 id="how-to-build-a-node-1"><a class="header" href="#how-to-build-a-node-1">How to build a node</a></h3>
|
||
<p>Step 1 - Obtain the hardware for a node which can be purchased <a href="https://marketplace.3node.global/index.php">here</a></p>
|
||
<p>Step 2 - Follow this <a href="https://manual.grid.tf/farmers/3node_building/3node_building.html">instruction manual</a> to set up your node</p>
|
||
<p>Step 3: Earn TFT (more below)</p>
|
||
<h3 id="how-to-earn-tft-1"><a class="header" href="#how-to-earn-tft-1">How to earn TFT</a></h3>
|
||
<p>Farmers earn TFT according to the amount of Internet capacity their Nodes connect to the ThreeFold Grid. The Internet capacity is verified by the ThreeFold Blockchain on an ongoing basis using the “Proof-of-Capacity” algorithm.</p>
|
||
<p><img src="how_you_can_participate/tft.png" alt="image" title="image_tooltip" /></p>
|
||
<div style="break-before: page; page-break-before: always;"></div><h2 id="host-a-node-2"><a class="header" href="#host-a-node-2">Host a node</a></h2>
|
||
<p><strong>You can help make Tanzania’s own sovereign internet a reality by hosting a node.</strong></p>
|
||
<p>By connecting hardware at your home or office – or anywhere you’d like – you provide Internet capacity for the people around you and earn a new digital currency, TFT.</p>
|
||
<p><img src="how_you_can_participate/node.png" alt="image" title="image_tooltip" /></p>
|
||
<h3 id="how-to-build-a-node-2"><a class="header" href="#how-to-build-a-node-2">How to build a node</a></h3>
|
||
<p>Step 1 - Obtain the hardware for a node which can be purchased <a href="https://marketplace.3node.global/index.php">here</a></p>
|
||
<p>Step 2 - Follow this <a href="https://manual.grid.tf/farmers/3node_building/3node_building.html">instruction manual</a> to set up your node</p>
|
||
<p>Step 3: Earn TFT (more below)</p>
|
||
<h3 id="how-to-earn-tft-2"><a class="header" href="#how-to-earn-tft-2">How to earn TFT</a></h3>
|
||
<p>Farmers earn TFT according to the amount of Internet capacity their Nodes connect to the ThreeFold Grid. The Internet capacity is verified by the ThreeFold Blockchain on an ongoing basis using the “Proof-of-Capacity” algorithm.</p>
|
||
<p><img src="how_you_can_participate/tft.png" alt="image" title="image_tooltip" /></p>
|
||
<div style="break-before: page; page-break-before: always;"></div><h2 id="build-on-top-of-tanzanias-decentralised-internet"><a class="header" href="#build-on-top-of-tanzanias-decentralised-internet">Build on top of Tanzania’s decentralised internet</a></h2>
|
||
<p><strong>True digital sovereignty for open-source builders.</strong></p>
|
||
<p>Tanzania has the opportunity to leverage the ThreeFold network to develop impactful solutions that not only benefit individuals but also contribute to the overall advancement of their local communities. Our aspiration is to empower Tanzanian developers to construct programs and products tailored to Tanzania’s specific needs. Envision the creation of a music streaming platform that addresses royalty issues or the potential of a decentralised Uber model within our internet framework, eliminating unnecessary intermediaries. Through these initiatives, our goal is to enable Tanzanian creators and entrepreneurs to unlock the full potential of our internet infrastructure for the greater good.</p>
|
||
|
||
</main>
|
||
|
||
<nav class="nav-wrapper" aria-label="Page navigation">
|
||
<!-- Mobile navigation buttons -->
|
||
|
||
|
||
<div style="clear: both"></div>
|
||
</nav>
|
||
</div>
|
||
</div>
|
||
|
||
<nav class="nav-wide-wrapper" aria-label="Page navigation">
|
||
|
||
</nav>
|
||
|
||
</div>
|
||
|
||
|
||
|
||
|
||
<script>
|
||
window.playground_copyable = true;
|
||
</script>
|
||
|
||
|
||
<script src="elasticlunr.min.js"></script>
|
||
<script src="mark.min.js"></script>
|
||
<script src="searcher.js"></script>
|
||
|
||
<script src="clipboard.min.js"></script>
|
||
<script src="highlight.js"></script>
|
||
<script src="book.js"></script>
|
||
|
||
<!-- Custom JS scripts -->
|
||
|
||
<script>
|
||
window.addEventListener('load', function() {
|
||
window.setTimeout(window.print, 100);
|
||
});
|
||
</script>
|
||
|
||
</div>
|
||
</body>
|
||
</html>
|