Merge branch 'development' of https://github.com/threefoldfoundation/www_threefold_io into development

This commit is contained in:
Amanda
2024-12-02 17:09:06 +05:30
677 changed files with 4000 additions and 5500 deletions

46
.github/workflows/update_dev2.yml vendored Normal file
View File

@@ -0,0 +1,46 @@
name: www3.threefold_io
on:
push:
branches: [ development_sasha ]
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: pushing latest change on www3.threefold.io
uses: appleboy/ssh-action@master
with:
host: www3.threefold.io
username: webuser
key: ${{ secrets.TF_SECRET }}
port: 34022
script: |
cd websites/tmp/www_threefold_io/
git log -1
git restore .
git pull
sed -i "s/https:\/\/dev.threefold.io/https:\/\/dev2.threefold.io/g" config.toml
bash build.sh
wait:
needs: deploy
name: Wait for Website Update
runs-on: ubuntu-latest
steps:
- name: Wait Period
id: wait-deploy
run: |
echo "Sleeping for 30"
sleep 30
checklinks:
needs: wait
name: Check for Broken Links
runs-on: ubuntu-latest
steps:
- name: Check for Broken Links
id: link-report
uses: docker://ghcr.io/threefoldfoundation/website-link-checker:latest
with:
args: 'https://www3.threefold.io -w 404'

69
_archive/team.html Normal file
View File

@@ -0,0 +1,69 @@
<div class="bg-transparent relative isolate overflow-hidden py-12">
<div class="mx-auto max-w-7xl px-6 lg:px-8">
<div class="mx-auto max-w-2xl lg:max-w-none">
<div class="text-center">
<h2 class="fade-in text-balance text-4xl font-normal tracking-tight text-white lg:text-5xl">The Team Behind ThreeFold</h2>
<p class="mx-auto mt-4 max-w-3xl text-pretty lg:text-2xl text-xl font-medium text-gray-200 fade-in">Founded by Internet Pioneers 1.0</p>
<p class="mx-auto mb-10 mt-6 max-w-4xl text-pretty lg:text-xl text-lg font-light text-gray-200 fade-in">We are a dedicated group committed to advancing a new digital era. Some of us have been working on Internet technology since the early days, when it was a decentralized network. We aim to help bring that vision to life once more. Beyond those below, we have more than 50 engineers, developers, and other team members supporting the project.</p>
</div>
<div class="mt-12 grid grid-cols-1 gap-x-4 lg:gap-y-10 lg:gap-x-8 lg:grid-cols-4 gap-y-0">
<!-- Team Member -->
<div class="group relative fade-in mb-8">
<div class="h-56 w-full overflow-hidden rounded-md bg-gray-200 group-hover:opacity-75 lg:h-72 xl:h-80">
<img src="/images/kds.png" alt="kristof_de_spiegeleer" class="size-full object-cover">
</div>
<h3 class="mt-4 text-xl font-semibold text-white">
Kristof de Spiegeleer
</h3>
<p class="text-md text-gray-300">Co-founder & CEO</p>
<p class="mt-1 text-sm font-light text-white">
Serial entrepreneur with 30 years of experience in Internet infrastructure and cloud technology. Passionate about tech for good. +600m $ exits.</p>
</div>
<!-- Team Member -->
<div class="group relative fade-in mb-8">
<div class="h-56 w-full overflow-hidden rounded-md bg-gray-200 group-hover:opacity-75 lg:h-72 xl:h-80">
<img src="/images/adnan.png" alt="adnan_fatayerji" class="size-full object-cover">
</div>
<h3 class="mt-4 text-xl font-semibold text-white">
Adnan Fatayerji
</h3>
<p class="text-md text-gray-300">Co-founder</p>
<p class="mt-1 text-sm font-light text-white">
Tech entrepreneur with multiple exits. Based in Dubai for 20 years. Head of Partnerships and Business Development..</p>
</div>
<!-- Team Member -->
<div class="group relative fade-in mb-8">
<div class="h-56 w-full overflow-hidden rounded-md bg-gray-200 group-hover:opacity-75 lg:h-72 xl:h-80">
<img src="/images/jan.png" alt="jan_de_landtsheer" class="size-full object-cover">
</div>
<h3 class="mt-4 text-xl font-semibold text-white">
Jan De Landtsheer
</h3>
<p class="text-md text-gray-300">Co-founder & CTO</p>
<p class="mt-1 text-sm font-light text-white">
Engineer with 40+ years of experience in deep tech, networking, cloud and storage.</p>
</div>
<!-- Team Member -->
<div class="group relative fade-in mb-8">
<div class="h-56 w-full overflow-hidden rounded-md bg-gray-200 group-hover:opacity-75 lg:h-72 xl:h-80">
<img src="/images/flo.png" alt="florian_fournier" class="size-full object-cover">
</div>
<h3 class="mt-4 text-xl font-semibold text-white">
Florian Fournier
</h3>
<p class="text-md text-gray-300">Co-founder & CMO</p>
<p class="mt-1 text-sm font-light text-white">
Ex Apple marketing director, serial entrepreneur living between Africa and Latin America.</p>
</div>
</div>
</div>
<div class="mt-8 flex items-center justify-center gap-x-6 fade-in">
<a href="/people" class="fade-in rounded-2xl bg-white px-4 py-2.5 text-sm font-semibold text-black shadow-sm hover:bg-gray-200 hover:text-gray-800 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-offset-2">Meet the Team</a>
</div>
</div>

View File

@@ -1,11 +1,15 @@
echo "Starting build..."
SOURCE=${BASH_SOURCE[0]}
DIR_OF_THIS_SCRIPT="$( dirname "$SOURCE" )"
ABS_DIR_OF_SCRIPT="$( realpath $DIR_OF_THIS_SCRIPT )"
# TODO: Check if current version is latest to avoid redundant installation
if [[ -f "tailwindcss" ]]
then
echo "Tailwind installed"
else
# rm tailwindcss
rm tailwindcss
fi
# checks os and architecture for correct release
# https://stackoverflow.com/a/8597411
echo "Installing & building tailwind..."
@@ -25,8 +29,6 @@ else
curl -sLO "https://github.com/tailwindlabs/tailwindcss/releases/latest/download/${ASSET}"
chmod +x $ASSET
mv $ASSET tailwindcss
fi
# initialized and configures tailwind if not configured
@@ -41,6 +43,4 @@ fi
echo "Compiling tailwindcss and building zola project..."
rm -rf public static/css
./tailwindcss -i css/index.css -o ./static/css/index.css --minify
zola build
zola --root $ABS_DIR_OF_SCRIPT build

View File

@@ -86,13 +86,13 @@ paginate_path = "tags"
[[taxonomies]]
name = "people"
feed = true
feed = false
paginate_by = 9
paginate_path = "people"
[[taxonomies]]
name = "memberships"
feed = true
feed = false
paginate_by = 8
paginate_path = "people/memberships"

View File

@@ -1,12 +1,12 @@
---
title: "Home"
description: "ThreeFold empowers anyone to become a cloud service provider no technical expertise required allowing people and organizations to buy sell, and use cloud resources autonomously and securely." # quotation marks to allow colons where used
title: "ThreeFold"
description: "TF offers a secure, sovereign infrastructure layer for Web4, delivering unparalleled scalability, incorruptible and permanent data storage, AI and Web2/Web3/Edge compatibility, and 100% uptime for a resilient digital future." # quotation marks to allow colons where used
date: 2018-09-14T21:00:00-05:00
updated: 2021-02-20T14:40:00-06:00
draft: false
extra:
author: Your name here
imgPath: home/autonomous.png
author: ThreeFold
imgPath: home/tf.png
---
@@ -17,7 +17,7 @@ extra:
<br/>
<br/>
![Image](images/black_threefold_header.png#mx-auto#medium)
![Image](images/white_threefold_header.png#mx-auto#medium)
<br/>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 241 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 106 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 96 KiB

58
content/action/index.md Normal file
View File

@@ -0,0 +1,58 @@
---
title: "Take actions"
description: "Take actions and become a part of a pioneering Web4 movement with ThreeFold on 12.12.2024" # quotation marks to allow colons where used
template: "layouts/action.html"
insert_anchor_links: "left"
extra:
author: ThreeFold
imgPath: tf.png
---
<style>
.rounded_img img {
border-radius: 8px;
}
.person img{
border-radius: 100%;
max-width:100px;
}
.myscale{
transition: transform .5s;
}
.myscale:hover{
transform: scale(1.2);
background-color: whitesmoke;
}
.road_border{
border-left: 1px solid rgb(156, 156, 156);
}
.white-gray{
color: #9f9f9f;
}
</style>

BIN
content/action/tf.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 510 B

View File

@@ -1,5 +1,5 @@
---
title: "Blog"
title: "ThreeFold Blog"
paginate_by: 9
description: "Dive in to read more of our stories, our past, our present, and our future. We envision a global, community-driven network of interconnected servers and nodes—the grid—that democratizes computing power and storage."
# paginate_reversed: false
@@ -14,5 +14,5 @@ page_template: "blogPage.html"
#transparent: true
generate_feed: true
extra:
imgPath: blog.png
imgPath: tf.png
---

Binary file not shown.

After

Width:  |  Height:  |  Size: 262 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [community, event, collaboration, why]
categories: [community, event, collaboration, why]
extra:
imgPath: africa_regen_summit_ii.png
imgPath: africa_future_summit1.png
---
In 2023, we had the pleasure of hosting two summits in Zanzibar one in July and another in [November](https://www.threefold.io/newsroom/africa-regen-ii/), named the Africa Regenerative Future Summit. These events brought together leading innovators and investors committed to advancing human flourishing, with a specific emphasis on science and technology shaping the trajectory of Africa's future.

Binary file not shown.

After

Width:  |  Height:  |  Size: 314 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [grid, cloud, tech]
categories: [grid, cloud, tech]
extra:
imgPath: an_intro_to_the_threefold_grid.png
imgPath: building_a_new_internet_1_1.png
---
## An Intro to the ThreeFold Grid

Binary file not shown.

After

Width:  |  Height:  |  Size: 155 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [tech,grid,community]
categories: [tech,grid,community]
extra:
imgPath: beyond_quick_fixes.png
imgPath: beyond_quick_fixes1.png
---
The Internet is a crucial part of our daily lives, yet it faces many challenges. To name a few, about half of the global population doesnt have fair or reliable access, data privacy, and cybersecurity threats are greater than ever before, and the current model is unsustainable for our planet. Despite advancements in technology, the Internet has been stuck in a cycle of quick fixes and patchwork solutions, unable to address these fundamental issues truly.

Binary file not shown.

After

Width:  |  Height:  |  Size: 510 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [grid, cloud, tech]
categories: [grid, cloud, tech]
extra:
imgPath: building_a_new_internet_2.png
imgPath: building_a_new_internet_2_1.png
---
Welcome back for the second part of this introductory series on ThreeFold Grid technology. [Last time](https://threefold.io/blog/an_intro_to_the_threefold_grid/) we took a high level view of all that the Grid offers. This time, we'll be zooming in on storage, covering the low level components and how they can provide a familiar experience like the cloud "drives" and "boxes" we use today.

Binary file not shown.

After

Width:  |  Height:  |  Size: 261 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [grid, cloud, tech]
categories: [grid, cloud, tech]
extra:
imgPath: building_a_new_internet_3.png
imgPath: building_a_new_internet_3_1.png
---
*Welcome back for another installment of our accessible series on ThreeFold Grid technology. We are working through the three major categories that make up cloud infrastructure: storage, compute, and network. This time, we'll be focusing on compute.*

Binary file not shown.

After

Width:  |  Height:  |  Size: 165 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, grid, cloud, tech]
categories: [decentralization, grid, cloud, tech]
extra:
imgPath: building_a_new_internet_pt_4.png
imgPath: building_a_new_internet_4_1.png
---
After introducing the ThreeFold Grid in [part one](https://threefold.io/blog/an_intro_to_the_threefold_grid/) and diving deep into [storage](https://threefold.io/blog/building_a_new_internet_from_the_ground_up_pt2/) and [compute](https://threefold.io/blog/building_a_new_internet_from_the_ground_up_3/), were back with part 4 to look at the networking aspects of the ThreeFold Grid.

Binary file not shown.

After

Width:  |  Height:  |  Size: 517 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [grid, tech]
categories: [grid, tech]
extra:
imgPath: cloud_provider.png
imgPath: cloud_internet_provider1.png
---
Cloud and Internet service providers form the backbone of our digital experiences. They host data and applications, and facilitate connectivity. Major corporations have long dominated this space. When the Internet started to become mainstream, it was necessary to scale the infrastructure quickly to meet growing demand. Thus, with their vast amounts of resources, big companies were the ones to build this infrastructure and offer services on top.

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, why]
categories: [decentralization, why]
extra:
imgPath: data_leaks.png
imgPath: stand_up_for_our_data.png
---
Do a quick search for "data leak" on your search engine of choice, and you'll likely see headlines like this:

Binary file not shown.

After

Width:  |  Height:  |  Size: 268 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, farming, grid, why, cloud, tech]
categories: [decentralization, farming, grid, why, cloud, tech]
extra:
imgPath: decentralizing_the_internet.png
imgPath: decentralized_internet.png
---
*This article was originally published by Roel Van Sabben, a former member of the ThreeFold team.*

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [community, decentralization, event, collaboration, why]
categories: [community, decentralization, event, collaboration, why]
extra:
imgPath: dy.png
imgPath: dunia_yetu1.png
---
### Vision of Collective Empowerment

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [grid, tech]
categories: [grid, tech]
extra:
imgPath: edge_computing.png
imgPath: meeting_digital_demands1.png
isFeatured: true
---

Binary file not shown.

After

Width:  |  Height:  |  Size: 166 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 311 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, grid, why, tech]
categories: [decentralization, grid, why, tech]
extra:
imgPath: energy_efficiency_explained.png
imgPath: energy_efficiency1.png
---
At ThreeFold, we [believe](/mission) that everything we do should benefit people and our planet. The emergence of a decentralized Internet grid not only reshapes the digital landscape but helps to pioneer a more sustainable future. At the core of this evolution lies a series of innovative strategies poised to revolutionize the way we perceive and utilize digital infrastructure.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, why]
categories: [decentralization, why]
extra:
imgPath: escape_great_hack.png
imgPath: great_hack.png
---
## The neutrality of the current Internet is in danger.

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [tech,community]
categories: [tech,community]
extra:
imgPath: evloution_of_the_internet.png
imgPath: evolution_of_the_internet1.png
isFeatured: true
---

Binary file not shown.

After

Width:  |  Height:  |  Size: 1021 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [community, decentralization, farming]
categories: [community, decentralization, farming]
extra:
imgPath: farming_pools.png
imgPath: farming_pools1.png
---
With a long-term focus on version 4.0, and a move towards commercialization, we are embracing several new strategies to ensure more reliability and trust. Farming Pools are an innovative mechanism designed to foster better governance and equitable participation within our network.

Binary file not shown.

After

Width:  |  Height:  |  Size: 499 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [grid,decentralization,tech,why]
categories: [grid,decentralization,tech,why]
extra:
imgPath: ground_up_innovations.png
imgPath: from_the_ground_up1.png
---
Building a cloud and internet infrastructure from the ground up is no easy, or quick, task. But if we want a truly different way forward, there is no other way, really. We do what we do, the way we do it, because we cannot continue to put “band-aids” on problems which require a much deeper and thoughtful approach.

Binary file not shown.

After

Width:  |  Height:  |  Size: 311 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [community, event, collaboration, why]
categories: [community, event, collaboration, why]
extra:
imgPath: hatch_podcast.png
imgPath: collaborative_innovations1.png
---
#### Introduction

Binary file not shown.

After

Width:  |  Height:  |  Size: 174 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [tech,grid,community]
categories: [tech,grid,community]
extra:
imgPath: testing_main.png
imgPath: grid_testing1.png
---
Hi there and welcome to ThreeFold Grid Testing: Part One!

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [tech,grid]
categories: [tech,grid]
extra:
imgPath: how_to_test_the_grid_part_two.png
imgPath: manual_auto_testing.png
---
In our [last post](https://www.threefold.io/blog/how-to-test-the-grid-part-one/), we started to explore what it means to test the ThreeFold Grid by highlighting the key processes and the benefits or reasons. Now, we continue our discovery path through the detailed testing process. In this post, we go deeper into two different ways of testing: Manual and Automation. Each is important, combining to ensure a strong and dependable TF Grid.

Binary file not shown.

After

Width:  |  Height:  |  Size: 270 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, why]
categories: [decentralization, why]
extra:
imgPath: in_search_of_a_better_internet.png
imgPath: internet1.png
---
*This article was originally published by Hannah Cordes, a former member of the ThreeFold team.*

Binary file not shown.

After

Width:  |  Height:  |  Size: 210 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [grid,decentralization,tech,why]
categories: [grid,decentralization,tech,why]
extra:
imgPath: internet_misconceptions.png
imgPath: truth_behind_misconceptions.png
---
Its been years that the ThreeFold team has been at this work of evolving the Internet in a fair and just way. We know how the Internet works and the challenges it faces, and because of this, we have been able to do the work of upgrading the Internet with a ground-up solution.
@@ -86,4 +86,4 @@ Dive in to learn more and how to get involved:
- [From the ground up: Three inventions that make ThreeFold possible](https://www.threefold.io/blog/ground-up-innovations/)
- [The evolution of the Internet: From free to controlled, and back again](https://www.threefold.io/blog/eveloution-of-the-internet/)
- [ThreeFold Manual](https://manual.grid.tf)
- [ThreeFold Docs: Litepaper, Tokenomics, Node Guide, & More](https://docs.threefold.io/)

Binary file not shown.

After

Width:  |  Height:  |  Size: 351 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, grid, cloud, tech]
categories: [decentralization, grid, cloud, tech]
extra:
imgPath: mycelium.png
imgPath: mycelium1.png
---
*Lee is working on a very exciting new project called Mycelium, our own Ipv6 overlay network. Thanks to him for taking the time to create this short write-up on what it is and why it is needed.*

Binary file not shown.

After

Width:  |  Height:  |  Size: 346 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, grid, why, tech]
categories: [decentralization, grid, why, tech]
extra:
imgPath: p2p_web3.png
imgPath: peer_to_peer2.png
---
First coined in 2014, Web3 is now one of the hottest and overused buzzwords in the digital space the idea of a new iteration of the web, a decentralized environment based on blockchain technology that incorporates token-based economics. The promise of Web3 decentralization of control and authority from big tech, data security, scalability, and privacy for users is tremendous. But what is a promise without delivery? Is it possible that we will see major adoption soon?

Binary file not shown.

After

Width:  |  Height:  |  Size: 210 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [community, farming, grid, why, tech]
categories: [community, farming, grid, why, tech]
extra:
imgPath: power_saving.png
imgPath: power_saving_grid1.png
---
*This article was originally published by Victoria Obeegadoo, a former member of the ThreeFold team.*

Binary file not shown.

After

Width:  |  Height:  |  Size: 272 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, why]
categories: [decentralization, why]
extra:
imgPath: products_in_a_machine.png
imgPath: digital_world1.png
---
In an ever-expanding and evolving digital world, our relationship with the Internet is generally underdiscussed. We've come to rely on platforms that promise connection, information, and entertainment. Yet, there are cracks in the system and massive trade offs for all of us, the "users." Let's pause for a moment and consider, is today's Internet truly serving us?

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, grid, cloud, tech]
categories: [decentralization, grid, cloud, tech]
extra:
imgPath: reliability.png
imgPath: realiblity_decentralized_internet1.png
---
In today's digital landscape, the development of a decentralized open-source Internet infrastructure marks a significant leap forward. However, while the foundational structure of this innovation brings promise, its inherent reliability isn't guaranteed. After more than five years of building and expanding the open-source ThreeFold Grid, it's now time we pivot towards commercialization. Ensuring a robust, dependable, and trustworthy offering becomes paramount. In this post, we'll share the various ways that the ThreeFold Grid is and will become reliable.

Binary file not shown.

After

Width:  |  Height:  |  Size: 216 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 512 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, grid, why, tech]
categories: [decentralization, grid, why, tech]
extra:
imgPath: resolving_problems.png
imgPath: golbal_tech_issues1.png
---
Imagine this: two friends in East Africa trying to connect via a video call. Instead of a direct link, their data embarks on a round trip to far-off data centers, consuming resources and adding costs. It's a snippet of a larger issue—how centralized infrastructure is holding back progress in connectivity.

Binary file not shown.

After

Width:  |  Height:  |  Size: 355 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [community, decentralization, farming, grid, cloud]
categories: [community, decentralization, farming, grid, cloud]
extra:
imgPath: solar_comparison.png
imgPath: decentralized_internet.png
---
*This article was originally published by Emilie Ouwerx, a former member of the ThreeFold team.*\

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, why]
categories: [decentralization, why]
extra:
imgPath: tech_as_a_tool_for_humanity.png
imgPath: tool_for_humanity1.png
---
*This article was originally published by Victoria Obeegadoo, a former member of the ThreeFold team.*

Binary file not shown.

After

Width:  |  Height:  |  Size: 176 KiB

BIN
content/blog/tf.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 510 B

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [community, why]
categories: [community, why]
extra:
imgPath: tf_ecosystem_comes_alive.png
imgPath: tf_ecosystem1.png
---
Collaborative. Self-organizing. Interconnected. Dynamic. Diverse. Resilient. Sustainable.

Binary file not shown.

After

Width:  |  Height:  |  Size: 259 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 355 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [community, decentralization, grid, why]
categories: [community, decentralization, grid, why]
extra:
imgPath: tf_grid_peoples_internet.png
imgPath: by_and_for_the_people.png
---
What do you think of when you hear the word Internet? For many, it's the websites and applications we consume online as end users. But the Internet is much more than this. And ultimately, every action we take online goes through a complex set of automated processes and protocols to store, run, and transmit data (e.g. photos, videos, messages, other files) across the global Internet infrastructure.

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [tech,grid,farming,community]
categories: [tech,grid,farming,community]
extra:
imgPath: the_farming_community.png
imgPath: spotlight_farming1.png
---
The ThreeFold community consists of many different roles creating a whole [ecosystem](https://www.threefold.io/blog/tf-ecosystem-comes-alive/) that contributes to the growth of the ThreeFold Grid and makes it more reliable and stable. Today, we're spotlighting the farming community, the backbone of the ThreeFold Grid.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 309 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, grid, cloud, tech]
categories: [decentralization, grid, cloud, tech]
extra:
imgPath: img/three_layers.png
imgPath: building_blocks_internet1.png
isFeatured: true
---

Binary file not shown.

After

Width:  |  Height:  |  Size: 171 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [community, decentralization]
categories: [community, decentralization]
extra:
imgPath: threefold_cooperative.png
imgPath: decentralized_governance.png
isFeatured: true
---

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, grid, why, tech]
categories: [decentralization, grid, why, tech]
extra:
imgPath: threefold_data_sovereignty.png
imgPath: data_sovereignity.png
---
If youve seen [The Social Dilemma](https://www.youtube.com/watch?v=uaaC57tcci0), you know all too well that today, people are being turned into products. Everything we do online all of the data we upload and all of our digital activities is tracked and oftentimes used against us. Targeted advertising is just the beginning.

Binary file not shown.

After

Width:  |  Height:  |  Size: 270 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [community, event, collaboration, why]
categories: [community, event, collaboration, why]
extra:
imgPath: diversitytf.png
imgPath: embracing_diversity1.png
---
In today's rapidly evolving technological landscape, diversity and inclusion are not just buzzwords; they are essential components for driving innovation and progress. As the tech and IT sectors continue to shape the future, it's crucial to recognize the importance of fostering diverse perspectives and creating inclusive environments where everyone feels valued and empowered to contribute.

Binary file not shown.

After

Width:  |  Height:  |  Size: 252 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [tech,community]
categories: [tech,community]
extra:
imgPath: threefold_impact.png
imgPath: impacting_the_future1.png
isFeatured: true
---

Binary file not shown.

After

Width:  |  Height:  |  Size: 271 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [cloud, tech]
categories: [cloud, tech]
extra:
imgPath: tier_s_data_center.png
imgPath: data_centre_tiers1.png
---
In an era where artificial intelligence is reshaping our technological landscape, it is imperative to reconsider how we design and operate data centers. With decades of experience in the Internet and Cloud space and in response to technological evolutions, ThreeFold is proposing a new approach.

Binary file not shown.

After

Width:  |  Height:  |  Size: 267 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [community]
categories: [community]
extra:
imgPath: transformative_impact_summit.png
imgPath: creating_tranformative1.png
---
*“By bringing together those dedicating their lives to making the world a better place, and empowering them with exposure, support, connection, and funding, we not only celebrate transformative impact, we create it.”*

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, grid, why]
categories: [decentralization, grid, why]
extra:
imgPath: peer_to_peer.png
imgPath: peer-to-peer1.png
---
## What is Peer-to-Peer?

Binary file not shown.

After

Width:  |  Height:  |  Size: 210 KiB

View File

@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, grid, cloud, tech]
categories: [decentralization, grid, cloud, tech]
extra:
imgPath: zero_os_blog.png
imgPath: scalable_secure_OS.png
---

Binary file not shown.

After

Width:  |  Height:  |  Size: 275 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 73 KiB

Some files were not shown because too many files have changed in this diff Show More