diff --git a/README.md b/README.md index 0d0373c..7f0fd96 100644 --- a/README.md +++ b/README.md @@ -1,33 +1,35 @@ -# ThreeFold Web Template +# FreeFlow Life Website ## About -A website template created using Zola, a static site generator. The template helps create simple responsive websites using mostly markdown. +A website created using Zola, a static site generator. -The purpose of this template is: -- To allow easier content publishing / editing on websites. -- To reuse a single source of content across multiple websites, removing redundant content. +- The contents of the pages reside in the markdown files in /content (written in CommmonMark) +- The pages are rendered using HTML templates with Tailwind CSS framework in /templates ## Getting Started -For now, this repository is meant to use as a template for static sites. +This repository is meant to use as a template for static sites. To use this repository as a template, simply: + +- clone repository +- add your own content to templates directory (see more below) - [install Zola](https://www.getzola.org/documentation/getting-started/installation/), -- Create a new repository from template at https://github.com/threefoldfoundation/web_template/generate -- Add your own content to content directory of your repository(see more below) -- run `sh start.sh` +- run `npm install` to install dependencies +- run `npm run start` ## How to create pages using this template ### Structure of the content directory -Every index.md file in a content directory corresponds to a page, and the landing page is content/\home/\index.md. -The path of each page is simply its path relative to the root of the content directory. +Every index.md file in a content directory corresponds to a page, and the landing page is content/\_index.md. +The path of each page is simply its path relavant to the root of the content directory. Ex: +content/\_index.md -> yoururl.com/ content/blog/\_index.md -> yoururl.com/blog -content/careers/index.md -> yoururl.com/careers +content/careers/index.md or content/careers.md -> yoururl.com/careers ### Section Templates diff --git a/build.sh b/build.sh old mode 100644 new mode 100755 index 3e11e8e..8b00a2c --- a/build.sh +++ b/build.sh @@ -1,10 +1,6 @@ echo "Starting build..." # TODO: Check if current version is latest to avoid redundant installation -if [[ -f "tailwindcss" ]] -then - rm tailwindcss -fi # checks os and architecture for correct release # https://stackoverflow.com/a/8597411 @@ -40,5 +36,3 @@ 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 - - diff --git a/config.toml b/config.toml index 00ac53e..346879d 100644 --- a/config.toml +++ b/config.toml @@ -1,8 +1,8 @@ # The URL the site will be built for -base_url = "https://www2.freeflow.life" +base_url = "https://www2.ournomads" # Change this to your own URL! Please note this variable **must** be uncommented. -title = "ThreeFold" +title = "Ournomads" description="Our global digital backbone" # When set to "true", a feed is automatically generated. @@ -67,5 +67,5 @@ paginate_by = 2 paginate_path = "blog-posts" [extra] -header_class = "" -footer_class = "" \ No newline at end of file +header_class = "freeflow" +footer_class = "freeflow" \ No newline at end of file diff --git a/content/_index.md b/content/_index.md index 243444d..87cb6c0 100644 --- a/content/_index.md +++ b/content/_index.md @@ -1,9 +1,11 @@ --- -title: "OurWorld" -description: "A better world is where we all have access to endless information and opportunities." -date: 2018-09-14T21:00:00-05:00 -updated: 2021-02-20T14:40:00-06:00 +title: "FreeFlow" +description: "" +date: 2018-09-14 +updated: 2021-02-20 draft: false +sort_by: weight +weight: 1 extra: - author: + logo_path: images/nomads_logo.png --- diff --git a/content/apage.md b/content/apage.md deleted file mode 100644 index 9ffb56d..0000000 --- a/content/apage.md +++ /dev/null @@ -1,130 +0,0 @@ ---- -title: "A page" -description: "" -date: 2018-09-14 -updated: 2021-02-20 -draft: false ---- - -{% row() %} - -# Reimagine your world - -
- -test -||| - -![Image](/images/ourworld_mycellium.png#large) - -{% end %} - -{% row() %} - -## My example mermaid diagram - -I wanted to use mermaid in this project, and it looks like this - -||| - -{% mermaid() %} - -classDiagram -Animal <|-- Duck -Animal <|-- Fish -Animal <|-- Zebra -Animal : +int age -Animal : +String gender -Animal: +isMammal() -Animal: +mate() -class Duck{ -+String beakColor -+swim() -+quack() -} -class Fish{ --int sizeInFeet --canEat() -} -class Zebra{ -+bool is_wild -+run() -} - -{% end %} - -{% row() %} - -![Image](/images/ourworld_mycellium.png#large) - -||| - -# Reimagine your world - -
- -Finally a framework fun to be used. - -> Am super happy about it - -- test -- test2 - - internet - - something -- test3 - -{% end %} - -{% admonition(title="Admonition test" type="note") %} - -slipped outer exact open under people particularly growth feet amount steep there arrow introduced pencil distance possibly buffalo store former pound throughout equator column - -{% end %} - -{% admonition() %} - -!!! note "" - -slipped outer exact open under people particularly growth feet amount steep there arrow introduced pencil distance possibly buffalo store former pound throughout equator column - -{% end %} - -{% admonition() %} - -??? note - -slipped outer exact open under people particularly growth feet amount steep there arrow introduced pencil distance possibly buffalo store former pound throughout equator column - -{% end %} - -{% admonition() %} - -???+ bug "Bug title" - -slipped outer exact open under people particularly growth feet amount steep there arrow introduced pencil distance possibly buffalo store former pound throughout equator column - -{% end %} - -{% admonition() %} - -!!! bug "Example title" - -slipped outer exact open under people particularly growth feet amount steep there arrow introduced pencil distance possibly buffalo store former pound throughout equator column - -{% end %} - -{% admonition() %} - -??? success "Example title" - -slipped outer exact open under people particularly growth feet amount steep there arrow introduced pencil distance possibly buffalo store former pound throughout equator column - -{% end %} - -{% admonition() %} - -!!! warning "Example title" - -slipped outer exact open under people particularly growth feet amount steep there arrow introduced pencil distance possibly buffalo store former pound throughout equator column - -{% end %} diff --git a/content/blog/2017/06/_index.md b/content/blog/2017/06/_index.md deleted file mode 100644 index 2d0d600..0000000 --- a/content/blog/2017/06/_index.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -transparent: true ---- \ No newline at end of file diff --git a/content/blog/2017/06/post-2/index.md b/content/blog/2017/06/post-2/index.md deleted file mode 100644 index 36bea48..0000000 --- a/content/blog/2017/06/post-2/index.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Creating solutions that respect humanity and the planet" # Quotation marks allow colons, semicolons, etc. -description: "Respect Human Rights, Respect Human Effort, Respect Human Experience." # Quotation marks allow colons, semicolons, etc. -date: 2017-06-06 -updated: 2017-06-06 # Comment-out this line with a # if content is unchanged -draft: false # Make it "true" if you don't want Zola to "publish" yet -template: blogPage.html -taxonomies: - categories: [farming,twin,cloud,foundation,aci] - categories: [why] - -extra: - subtitle: "" # Quotation marks allow colons, semicolons, etc. - author: kristof de spiegeleer - authorImg: /images/people/kristof_de_spiegeleer.jpeg - imgPath: images/blog/ethical_design_manifesto.png - ---- - -
-
-Organizations should always respect human rights, human effort and human experience. To enable a sustainable and prosperous civilization and world, we need a strong value system. -
-
-*Ideas and texts were inspired from https://ind.ie/ethical-design/. We added our own twist to it.* - -## Respect Human Rights - -- **Sustainability**: It is important for a very simple reason: we cannot maintain our quality of life as human beings, the diversity of life on our planet, or Earth's ecosystems unless we embrace and protect its balance. -- **Equality**: Everyone should have a right to learn, dream, partake and succeed. Equal access also means affordability, not ownership by big greedy companies. -- **Decentralization**: To better distribute power, value and opportunities, we need more decentralization. Technologies and solutions should be available everywhere to improve equality and sustainability. -- **Openness & Interoperability**: Allows technologies to work together in an open way, without limitation, and therefore expands the possibilities for innovation and sharing. -- **Accessibility**: Whatever the location or situation, people should benefit from easy and fast access to information and solutions. -- **Security & Privacy**: Protect people from being put in situations of danger or exploitation. People should be empowered to be independent and they should be the sole owners of their experiences. - -## Respect Human Effort - -- **Reliability**: Make sure technologies are reliable and last longer. -- **Simplicity**: We need to keep things simple: no unnecessary complexity - less is more. -- **Transparency**: Let people and companies work together in a 100% transparent way. -- **Collaboration**: It's all about the greater picture. We are stronger together and have to help each other in reaching our common visions. - -## Respect Human Experience - -- **Ergonomy**: Products and solutions should empower productivity, safety and comfort, while reducing human error. -- **Inclusiveness**: Design should always be global and inclusive. We are all equal. -- **Design**: Products should be visually appealing and should achieve it's purpose. -- **Transparency**: Organisational records and strategies should be accessible to everyone. -
-
- _Photo by Renee Fisher on Unsplash._ diff --git a/content/blog/2017/10/_index.md b/content/blog/2017/10/_index.md deleted file mode 100644 index 2d0d600..0000000 --- a/content/blog/2017/10/_index.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -transparent: true ---- \ No newline at end of file diff --git a/content/blog/2017/10/post-1/index.md b/content/blog/2017/10/post-1/index.md deleted file mode 100644 index 9e54774..0000000 --- a/content/blog/2017/10/post-1/index.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Datacenter Myths" # Quotation marks allow colons, semicolons, etc. -description: "Hyperscale realities are very different to what most people think. Myth 1 - Bigger data centers are more efficient." # Quotation marks allow colons, semicolons, etc. -date: 2017-10-12 -updated: 2017-10-12 # Comment-out this line with a # if content is unchanged -draft: false # Make it "true" if you don't want Zola to "publish" yet -template: blogPage.html -taxonomies: - categories: [farming,cloud,foundation,aci] - categories: [technology,threefold_grid_,why] - -extra: - subtitle: "" # Quotation marks allow colons, semicolons, etc. - author: andreas hartl - authorImg: /images/people/andreas_hartl.jpeg - imgPath: images/blog/big_datacenter_myth.png - ---- - -## Hyperscale realities are very different from what most people think - -### Myth 1: Bigger data centers are more efficient - -There are advantages in building larger-scale data centers, like economies of scale and sheer bulk buying power, but these are not as significant as what people think. The average cost per rack in a hyper-scale data center is $20-35K USD including all energy requirements and safety systems. The cost of hardware per rack is around the $200-300K USD mark. -
-
-What is often forgotten is that anything that is of enormous scale and highly concentrated comes with complexity and specific problems to deal with. For example. resource requirements such as investment, operational costs, knowledge, and people increase significantly with size. -
-
-In reality, keeping things simple, small, and distributed is much more cost-effective than large complex environments. - -### Myth 2: Big data centers can be sustainable - -The carbon footprint of a big data center is enormous. To improve the power usage effectiveness (PUE) of most data center farmers have adopted wind, hydro, and/or solar power technologies, which indeed helps drop their PUE by an estimated 20%. But is this leading to more sustainability? -
-
-This 20% looks great on paper and in the farmers' corporate social responsibility reports. However, it just represents an improvement in the cooling technology and sourcing of energy. It doesn't actually impact the energy consumed by the equipment that runs in their data centers (servers, storage chassis, physical disks, etc.) which is the equipment responsible for the carbon footprint. PUE only refers to overhead power consumption, i.e. cooling the facility, opening, and closing doors, maintaining power security systems, etc. -
-
-Real improvement lies in deploying technologies that actually consume less power to deliver the actual Internet capacity to run workloads, real CPU chassis, physical disks, and storage cabinets. Improving on how hardware is being more effectively used can have an impact of up to a thousand percent and lead to ten times more power-efficiency. - -### Myth 3: Redundant systems have better uptime - -A lot of us believe that systems need redundancy mechanisms to improve their operational uptime and reliability. While it may make sense to IT experts, let's translate this for the non-IT world? -
-
-To make a car more reliable we add redundancy (as we do in IT). So for the risk of having a puncture, we add one extra tire for all the tires we use continuously. This adds 4 extra tires to the car. Then a decision needs to be made: Do we put those tires in a structure where they are always running along with the primary tires or do we choose not to have them "online" all the time, wearing and tearing in the same way as the primary tires? -
-
-Building such a system would take a large number of engineers to come up with a solution, and would change cars as we know them. Wouldn't it make more sense to think outside the box and solve the root of the problem by making tires un-deflatable? -
-
-The IT industry has gone overboard with the concept of redundancy, having forgotten to look at the root cause issues. This has spawned a whole new industry of itself, which has a financial interest in creating complicated and expensive redundant systems. - -### Myth 4: Big companies optimize better - -Big companies with a certain track record will know better how to optimize as they have more people and resources. -
-
-At first glance, this sounds logical, but in reality, ninety percent of the innovation within the IT space comes from startups. The giant IT companies have a heritage they hardly can overcome. They are locked in old infrastructure designs, and building outside of that infrastructure would be costly, timely, and probably put the breaks on their businesses. -
-
-Real innovation gives way to fix the core symptoms rather than taking the problem pain-killer approach. diff --git a/content/blog/2017/_index.md b/content/blog/2017/_index.md deleted file mode 100644 index 2d0d600..0000000 --- a/content/blog/2017/_index.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -transparent: true ---- \ No newline at end of file diff --git a/content/blog/2019/08/_index.md b/content/blog/2019/08/_index.md deleted file mode 100644 index 2d0d600..0000000 --- a/content/blog/2019/08/_index.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -transparent: true ---- \ No newline at end of file diff --git a/content/blog/2019/08/post-1/index.md b/content/blog/2019/08/post-1/index.md deleted file mode 100644 index 03c7d62..0000000 --- a/content/blog/2019/08/post-1/index.md +++ /dev/null @@ -1,55 +0,0 @@ ---- -title: "Decentralizing the Internet" # Quotation marks allow colons, semicolons, etc. -description: "In this article, we discuss the general concept of a ‘decentralized grid’ and how anyone can plug-in capacity to the ThreeFold Grid." # Quotation marks allow colons, semicolons, etc. -date: 2019-08-21 -updated: 2019-08-21 # Comment-out this line with a # if content is unchanged -draft: false # Make it "true" if you don't want Zola to "publish" yet -template: blogPage.html -taxonomies: - categories: [farming, grid, tech, aci, cloud, foundation] - categories: [farming,threefold_grid,technology,peer_to_peer] - -extra: - subtitle: "" # Quotation marks allow colons, semicolons, etc. - author: Roel Van Sabben - authorImg: /images/people/roel_van_sabben.jpg - imgPath: images/blog/decentralizing_the_internet.png - ---- - -## Decentralization - -In 1989, the Internet changed the world as we know it with the introduction of the World Wide Web. With time the Internet empowered people to share information in a decentralized way. Shortly after, big companies like Facebook, Google, and Apple emerged, providing many solutions that revolutionized the way we live. The “sharing economy” has grown exponentially over the last 5-10 years. This is thanks to a more simplified information flow and well-developed technology, which: -
-
- -- Enables a much easier integration of independent players into the sharing economy. -- Eliminates the need for extensive management and structure of marketplace operators. -
-
- We are entering a flat-structure economy. An economy where fewer managerial levels are needed for the system to function. New technologies such as blockchain and the Internet of Things facilitate this ongoing trend. Participants can now interact on a peer-to-peer basis, forming marketplaces and organizations according to pre-agreed, programmed contracts. - -## The current Internet is centralized - -Despite the growth in popularity for decentralized systems, organizations, and currencies, the Internet remains centralized. The centralization within the Internet industry brought many barriers to entry. Indeed, to compete in the highly competitive market of Internet capacity dominated by big IT companies, massive investment, and IT development are needed. -
-
-But what is really scary is that the current industry exploits the market tremendously. Data is officially the most valuable asset on earth for a few years, and about 20 companies rule over more than 80% of the cloud industry. In other words - these companies together have more than 80% of the world's information. In recent years, we noticed the dangers that can arise with the wrong intentions within the data industry with the 'Cambridge Analytica Scandal', also highlighted in the movie ['The Great Hack'.](https://www.youtube.com/watch?v=iX8GxLP1FHo) -
-
-ThreeFold has been developing technology that allows the decentralization of the Internet infrastructure - removing the need for data centers, and allowing anyone to take part in the Internet capacity market. Adding capacity to the ThreeFold Grid (TF Grid) makes you a ThreeFold Farmer (TF Farmer). The more decentralized the Internet gets, the more secure and effective it will become. The already is the largest grid of compute and storage in the world. - -## How To Participate - -The process of becoming a ThreeFold Farmer is very straightforward. Anyone can join the ThreeFold Grid by downloading the ThreeFold Zero-OS onto their nodes and connecting them to the ThreeFold Grid. -
-
-By doing this you will become an operator of a "micro data center" and with that earn ThreeFold Tokens. With or without experience in the field, anyone can become a ThreeFold Farmer. By becoming a ThreeFold Farmer, you empower a new neutral Internet that belongs to humanity - not corporations. -
-
-You can build your server (3node) and configure it, but also options for people with less technical knowledge are available. Please see [pre-register.threefold.io](https://pre-register.threefold.io) to see how easy it is for anyone to become a ThreeFold Farmer. -
-
-_Blog written in 2019, updated January 2021._ -
-
diff --git a/content/blog/2019/11/_index.md b/content/blog/2019/11/_index.md deleted file mode 100644 index 2d0d600..0000000 --- a/content/blog/2019/11/_index.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -transparent: true ---- \ No newline at end of file diff --git a/content/blog/2019/11/post-1/index.md b/content/blog/2019/11/post-1/index.md deleted file mode 100644 index 98263e7..0000000 --- a/content/blog/2019/11/post-1/index.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: "An escape from the Great Hack" # Quotation marks allow colons, semicolons, etc. -description: "I can’t help but think how unfair it is that in today’s digital society, people are being treated like products, because there is no such thing as a ‘free’ platform without YOU being the product." # Quotation marks allow colons, semicolons, etc. -date: 2019-11-21 -updated: 2019-11-21 # Comment-out this line with a # if content is unchanged -draft: false # Make it "true" if you don't want Zola to "publish" yet -template: blogPage.html -taxonomies: - categories: [farming,cloud,twin,foundation,aci] - categories: [technology,why] - -extra: - subtitle: "" # Quotation marks allow colons, semicolons, etc. - author: Sabrina Sadik - authorImg: /images/people/sabrina_sadik.jpg - imgPath: images/blog/escape_great_hack.png - ---- - -## The neutrality of the current Internet is in danger. - -Have you seen ‘The Great Hack’ on Netflix? It’s a documentary about the Cambridge Analytica hacking scandal, where personal data of millions of peoples’ Facebook profiles were harvested without their consent and used for political advertising purposes. -
-
-While watching it, I couldn’t help but think how unfair it is that in today’s digital society, people are being treated like products, because there is no such thing as a ‘free’ platform without YOU being the product. What did reassure me, is that people are sick of having their data used this way. But what they might not know, is that the internet problem is bigger than ‘just’ data protection. -
-
-The Internet is growing at an exponential rate. To service this demand, a few large companies (Google, Amazon, Alibaba, Facebook, etc.) have built and continue to build supersized, power-hungry and centralized data centers. These data centers make up the majority of all Internet capacity available today. However, the Internet is expanding much faster than datacenters and the planet can cope with. -
-
-In addition to that, the Internet is extremely centralized, with most of these data centers being located in the US. Think of it like electricity. If consumers in, for example, Turkey had to use electricity generated in the US, it would be too expensive and inefficient, because it is too far away. The transmission lines would be too strained and losses and repairs would make it unsustainable. Capacity is like electricity. When centralized, it becomes too expensive and wasteful for remote users. - -## So what is the solution to these problems? - -The Internet needs to be more distributed, cost-effective, neutral, and sustainable. ThreeFold has developed such a new technology, the ThreeFold Grid (Grid) and a token which enables all this to happen. -
-
-Combining the values of the ThreeFold Foundation (freedom, equality and fairness) with the technology developed by TFTech (Zero-OS, Zero-Chain, 3Bot) and a digital currency called the ThreeFold Token (a decentralized digital currency and means of payment to exchange autonomous and decentralized Internet services) we believe that we have all the tools in order to actually make a difference in tomorrow's digital world. Question is, are you ready to join us? -
-
-Please visit [our forum](https://forum.threefold.io) if you have any questions or would like to continue the conversation! -
-
diff --git a/content/blog/2019/12/_index.md b/content/blog/2019/12/_index.md deleted file mode 100644 index 2d0d600..0000000 --- a/content/blog/2019/12/_index.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -transparent: true ---- \ No newline at end of file diff --git a/content/blog/2019/12/post-1/index.md b/content/blog/2019/12/post-1/index.md deleted file mode 100644 index 4a6ebae..0000000 --- a/content/blog/2019/12/post-1/index.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: "Internet is growing wild" # Quotation marks allow colons, semicolons, etc. -description: "The internet is growing at an extremely fast pace, but is that a good thing?" # Quotation marks allow colons, semicolons, etc. -date: 2019-12-05 -updated: 2019-12-05 # Comment-out this line with a # if content is unchanged -draft: false # Make it "true" if you don't want Zola to "publish" yet -template: blogPage.html -taxonomies: - categories: [farming,cloud,foundation,aci] - categories: [technology,why,threefold_grid] - -extra: - subtitle: "" # Quotation marks allow colons, semicolons, etc. - author: Andreas Hartl - authorImg: /images/people/andreas_hartl.jpeg - imgPath: images/blog/internet_is_growing_wild.png - ---- - -## You are unique - -During a gathering with some friends, I noticed something that made me think about how important it is what we’re doing at ThreeFold. -
-
-One of my friends was complaining about how he couldn’t log in to one of his social media platforms, because all of his passwords are different and he forgot which one he used for this particular platform. Another friend was saying how she tagged her sister on a funny meme, but her sister couldn’t find it on Facebook. Turns out she tagged her on Instagram. And then one of them said something that I keep hearing more and more from people, “Why do we have so many apps, I can’t find anything anymore!” -
-
-We exist so many times online, but why? There is only one me in the real world. Why should there not be only one me online? Why should I have 25 different profiles on 25 different platforms, with 25 different logins, when I am unique? -
-
-That is another dilemma that ThreeFold has a solution for, with its autonomous technology. 3Bot - a digital avatar like no other, that basically handles your entire online life. The focus lies on digital privacy, where only you can access your data, and no one else. The 3Bot has all the functionalities you need to interact and exchange information and value, there will be no need for that many applications on your device anymore. With 3Bot, everything changes. -
-
-The 3Bot is built on the ThreeFold Grid, and has the same values as ThreeFold. Freedom, Equality, and Sustainability. It is important that your data is safe, and what can be safer than you being the only one who not only has access to it, but also the only one who owns that data? Your online world should not be that different from your offline world. In your offline world, you are the center of your own life. That is what ThreeFold is doing with the 3Bot, putting you in the center of your online life, too. -
-
-One decentralized application, one digital wallet, one login and one you. Because you’re unique. -
-
-Have questions? Feel free to ask us on our [forum](https://forum.threefold.io)! -
-
-_Photo by Jessica Ruscello on [Unsplash](https://unsplash.com/photos/DoSDQvzjeH0)._ diff --git a/content/blog/2019/12/post-2/index.md b/content/blog/2019/12/post-2/index.md deleted file mode 100644 index 94f9ace..0000000 --- a/content/blog/2019/12/post-2/index.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: "You Are Unique" # Quotation marks allow colons, semicolons, etc. -description: "During a gathering with some friends, I noticed something that made me think about how important it is what we’re doing." # Quotation marks allow colons, semicolons, etc. -date: 2019-12-05 -updated: 2019-12-05 # Comment-out this line with a # if content is unchanged -draft: false # Make it "true" if you don't want Zola to "publish" yet -template: blogPage.html -taxonomies: - categories: [twin,foundation] - categories: [why,farming] - -extra: - subtitle: "The UNIQUE Post 1 subtitle" # Quotation marks allow colons, semicolons, etc. - author: Sabrina Sadik - authorImg: /images/people/sabrina_sadik.jpg - imgPath: images/blog/unique.png - ---- - -## You are unique - -During a gathering with some friends, I noticed something that made me think about how important it is what we’re doing at ThreeFold. -
-
-One of my friends was complaining about how he couldn’t log in to one of his social media platforms, because all of his passwords are different and he forgot which one he used for this particular platform. Another friend was saying how she tagged her sister on a funny meme, but her sister couldn’t find it on Facebook. Turns out she tagged her on Instagram. And then one of them said something that I keep hearing more and more from people, “Why do we have so many apps, I can’t find anything anymore!” -
-
-We exist so many times online, but why? There is only one me in the real world. Why should there not be only one me online? Why should I have 25 different profiles on 25 different platforms, with 25 different logins, when I am unique? -
-
-That is another dilemma that ThreeFold has a solution for, with its autonomous technology. 3Bot - a digital avatar like no other, that basically handles your entire online life. The focus lies on digital privacy, where only you can access your data, and no one else. The 3Bot has all the functionalities you need to interact and exchange information and value, there will be no need for that many applications on your device anymore. With 3Bot, everything changes. -
-
-The 3Bot is built on the ThreeFold Grid, and has the same values as ThreeFold. Freedom, Equality, and Sustainability. It is important that your data is safe, and what can be safer than you being the only one who not only has access to it, but also the only one who owns that data? Your online world should not be that different from your offline world. In your offline world, you are the center of your own life. That is what ThreeFold is doing with the 3Bot, putting you in the center of your online life, too. -
-
-One decentralized application, one digital wallet, one login and one you. Because you’re unique. -
-
-Have questions? Feel free to ask us on our [forum](https://forum.threefold.io)! -
-
-_Photo by Jessica Ruscello on [Unsplash](https://unsplash.com/photos/DoSDQvzjeH0)._ diff --git a/content/blog/2019/_index.md b/content/blog/2019/_index.md deleted file mode 100644 index 2d0d600..0000000 --- a/content/blog/2019/_index.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -transparent: true ---- \ No newline at end of file diff --git a/content/blog/2020/04/_index.md b/content/blog/2020/04/_index.md deleted file mode 100644 index 2d0d600..0000000 --- a/content/blog/2020/04/_index.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -transparent: true ---- \ No newline at end of file diff --git a/content/blog/2020/04/post-1/index.md b/content/blog/2020/04/post-1/index.md deleted file mode 100644 index a768128..0000000 --- a/content/blog/2020/04/post-1/index.md +++ /dev/null @@ -1,71 +0,0 @@ ---- -title: "Why We Do What We Do" # Quotation marks allow colons, semicolons, etc. -description: "If not now, when? If not us, who?" # Quotation marks allow colons, semicolons, etc. -date: 2020-04-08 -updated: 2020-04-08 # Comment-out this line with a # if content is unchanged -draft: false # Make it "true" if you don't want Zola to "publish" yet -template: blogPage.html -taxonomies: - categories: [farming,twin,aci,foundation] - categories: [why,threefold_farming] - -extra: - subtitle: "The UNIQUE Post 1 subtitle" # Quotation marks allow colons, semicolons, etc. - author: Sam Taggart - authorImg: /images/people/sam_taggart.jpg - imgPath: images/blog/why_we_do.png - ---- - -
-
-We are growing a green and responsible peer-to-peer Internet that is available everywhere and owned by everyone — across geographical and cultural borders, empowering people to be digitally independent and providing equal chances to learn, partake and succeed. - -## Values-First - -At ThreeFold, we are driven by three main values: -
-
- -- Equality is the foundation for a fair world where everyone is given the opportunity to be empowered and to achieve their full potential. -- Freedom of thought, opinion, creativity and faith are fundamentals to achieve peace and fulfillment of humankind’s potential. -- Sustainability ensures the future of life on earth. It is about adopting the behavior and mindset to minimize our footprint. -
-
- Let’s take a deeper look. - -### Internet Access | A Human Right - -In 2016, the United Nations officially declared Internet access to be a human right. The right to internet access aims to protect people’s freedom of expression and opinion, as well as other fundamentals such as access to knowledge and information. -
-
-Yet as of today, about 48% of humanity remains unconnected to the Internet, creating huge inequalities in the access to information and knowledge. It is important that the right steps are taken to improve the relationship between governments and citizens and to uphold all human rights. -
-
-To make the new internet accessible and equal to all, ThreeFold built with ThreeFold Farmers an infrastructure that is affordable to all and collectively owned by the network peers. To ensure a fair and equal distribution of the internet to everyone, fully sponsored capacity will be deployed in remote regions of our world. - -### Digital Freedom | For Everyone - -The Internet evolved to become the world’s largest database of information and knowledge, opening up exponential growth on personal, organizational and economic levels. Yet it is owned by large international companies that exploits users data. -
-
-The current approach of many governments and countries is to cut the Internet into pieces by limiting its accessibility and enforcing regulations. We need an internet that protects our digital freedom and fair access to global information for everyone, everywhere. -
-
-ThreeFold is a peer-to-peer internet — owned by the users. All the technology of this new internet is open-source and the whole experience is built around the fundamentals of a peer-to-peer network. On this new internet, everyone owns their data and experiences — digital freedom. - -### A Green Internet | For Our Planet - -The current internet consumes about 10% of global energy production. With the imminent boom of emerging technologies such as Blockchain, Internet of Things, Virtual Reality, Artificial Intelligence and 5G, the Internet’s energy consumption is expected to increase exponentially. -
-
-The current industry solutions focuses on increasing the use of renewable energies to power data centers. However this is not a viable solution as data centers consume enormous amounts of energy. Therefore, a new solution that can drastically reduce the global internet’s energy consumption is needed. -
-
-ThreeFold is the first true peer-to-peer Internet. It uses pioneering technologies that remove the need for centralized and power-hungry data centers, consumes 90% less energy, and uses 90% less international fibre network capacity. -
-
-If not now, when? If not us, who? -
-
-_Photo by Yannis H on [Unsplash](https://unsplash.com/photos/uaPaEM7MiQQ)._ diff --git a/content/blog/2020/12/_index.md b/content/blog/2020/12/_index.md deleted file mode 100644 index 2d0d600..0000000 --- a/content/blog/2020/12/_index.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -transparent: true ---- \ No newline at end of file diff --git a/content/blog/2020/12/post-1/index.md b/content/blog/2020/12/post-1/index.md deleted file mode 100644 index ff9314e..0000000 --- a/content/blog/2020/12/post-1/index.md +++ /dev/null @@ -1,67 +0,0 @@ ---- -title: "A Better Solution for Our Planet" # Quotation marks allow colons, semicolons, etc. -description: "We believe IT can be sustainable. Actually, it should be! That's why energy efficiency has always been a key focus of ours.." # Quotation marks allow colons, semicolons, etc. -date: 2020-12-02 -updated: 2020-12-02 # Comment-out this line with a # if content is unchanged -draft: false # Make it "true" if you don't want Zola to "publish" yet -template: blogPage.html -taxonomies: - categories: [farming,twin,foundation,cloud,aci] - categories: [threefold_farming,why] - -extra: - subtitle: "The UNIQUE Post 1 subtitle" # Quotation marks allow colons, semicolons, etc. - author: Weynand Kuijpers - authorImg: /images/people/weynand_kuijpers.jpg - imgPath: images/blog/better_solution.png - ---- - -
-
-Today, the global Internet and IT infrastructure requires enormous amounts of energy, responsible for about 10% of annual global energy consumption. This makes the IT industry amongst the most pollutive industries in the world (along with the often-discussed airline industry, for comparison). -
-
-We believe IT can be sustainable. Actually, it should be! That's why energy efficiency has always been a key focus of ours. With climate change and sustainability as some of the most pressing issues of our times, new green solutions need to be our priority. It has been key to ThreeFold since the very beginning of its story to enable a technological infrastructure that can reduce the Internet’s carbon footprint drastically. - -## Simplicity is the key to unlock a better future - -Over time, integration suites, middleware solutions, and enterprise service busses have been invented and implemented to cover integration challenges within the current internet. This has further complicated IT architectures, resulting in a loss of actual end user workload performance. -
-
-ThreeFold reworked the whole approach to IT architectures and eliminated the layers of complexity. The result is a cloud stack that presents minimal overhead and that requires less hardware – reducing heat generation and eventually cooling requirements. By reducing the need for power, the net result is an energy-efficient Internet grid. - -## Improving resilience and efficiency through Self-Healing IT - -Keeping systems up and running is a major requirement in modern day IT. Leading vendors earn most of their margin by selling maintenance contracts, performance guarantees, and professional services. Their business models bring no incentive to make things simple and efficient for consumers. -
-
-Creating a self-healing environment requires only minimal manual intervention to replace broken hardware components. Broken hardware components are inevitable, and the Zero-OS distributed node architecture deals with such failures by turning off broken components and provisioning unused capacity. By removing the need to ship broken parts back and forth, and linking to the corresponding installation knowledge (engineers), a lower carbon footprint can be achieved. - -## “No painkiller” approach. We tackle the root issue - -If a specific piece of software or hardware is not delivering the required performance or reliability, we should analyze the core design/algorithm and its usage of soft/hard components to determine the root causes of persistent issues to be solved. -
-
-Currently, most storage vendors follow the path of least resistance when trying to improve on performance. Their solution for meeting performance targets is to use faster components (CPU, memory, network card, proprietary acceleration) rather than looking at the core algorithms that drive the utilization of those components. Swapping components for faster ones perpetuates a cycle of cutting corners and focuses reliance on innovation from hardware component providers rather than solving the more fundamental and underlying issues. That's a "painkiller" approach. -
-
-Zero-OS was designed to solve root problem issues by design. While still using high-performance hardware components on the ThreeFold Grid, the algorithm of Zero-OS maximizes utilization possibilities. This enables greater performance and sustainability. Some key examples how this is achieved: - -## Eliminating unnecessary elements from standard architectures - -Virtualization adds a layer of software between the actual end-user workload and physical hardware. It also allows for multiple workloads to run on the same hardware by using excess capacity. There is definitely merit in building a virtualization solution. Building an effective virtualization solution that does not require abundant context switching is key and this is why Zero-OS has been developed. Zero-OS uses a minimal Linux kernel that allows for a number of user spaces to co-exist. In these user spaces, containerized versions of software can be run, eliminating the need for hypervisors, virtual OS to fuel the virtual machines, and guest operating systems. This also minimizes the required overhead for the host OS. - -## Minimizing network connections usage - -Supercomputing delivered many new technologies. But, not all of them are usable solutions for everyday workloads. One technology invented to make supercomputers performant is the use of Remote Direct Memory Access (RDMA). RDMA allowed physical CPU boards (containing both CPUs and memory) to access other CPU boards in memory stored data over a dedicated channel. This eliminated the need to transport data between CPU nodes over network connections (or other mainstream means to exchange data). The result was a considerable reduction in overhead created when allowing distributed end user workloads to operate over multiple physical cores. The leading server and storage solutions brands have never considered nor implemented such mechanisms. This resulted in an increased need for faster networks - increasing complexity, costs, efforts and resources needed to operate solutions. -
-
-RDMA is only used in certified farms and requires involvement of TFTech. - -## Minimizing disk usage - -The storage solution uses slow and big (the bigger the better) HDD disks which drive in rack density. As they spin slower they consume less power and need less cooling. But then, how can you deal with read/write intensive workloads? The storage algorithm uses a SSD cache to acknowledge Inputs/Outputs coming from the applications, fills the erasure coded data blocks in large (up to 64MB) storage containers and writes the big chunks of data on the big and slow HHDs. If you are familiar with HDD disks, you know they like to be streamed on instead of having a lot of small bits written in a scratchy way. -
-
-**Continuous innovation in all of these areas are leading to an efficient technology stack.** diff --git a/content/blog/2020/12/post-2/index.md b/content/blog/2020/12/post-2/index.md deleted file mode 100644 index ac077cf..0000000 --- a/content/blog/2020/12/post-2/index.md +++ /dev/null @@ -1,56 +0,0 @@ ---- -title: "What Is Peer-to-Peer and Why Is It so Important?" # Quotation marks allow colons, semicolons, etc. -description: "P2P systems are network, not linear or pyramidal hierarchies (though they may share some elements).." # Quotation marks allow colons, semicolons, etc. -date: 2020-12-15 -updated: 2020-12-15 # Comment-out this line with a # if content is unchanged -draft: false # Make it "true" if you don't want Zola to "publish" yet -template: blogPage.html -taxonomies: - categories: [farming,cloud,twin,foundation] - categories: [peer_to_peer,why,farming,technology,threefold_grid] - -extra: - subtitle: "The UNIQUE Post 1 subtitle" # Quotation marks allow colons, semicolons, etc. - author: Sacha Obeegadoo - authorImg: /images/people/sacha_obeegadoo.jpg - imgPath: images/blog/peer_to_peer.png - ---- - -## What is Peer-to-Peer? - -Peer-to-peer (P2P) is a term that originated from the distributed computer application architecture where tasks and workloads are shared between peers, popularized by [Napster](https://en.wikipedia.org/wiki/Napster), a revolutionary file storing system from the late 1990s. -
-
-The concept inspired new structures and philosophies in many areas of human interaction. P2P systems and groups are typically critical of authoritarian and centralized social structures and believe in equality, meritocracy, flat systems, participatory & circular economies, as the concept represents a concrete pathway to these outcomes or visions. -
-
-P2P systems are network, not linear or 'pyramidal' hierarchies (though they may share some elements). They are 'distributed', though they may have elements of 'centralization' and 'decentralization.' And intelligence is not located at any center, but everywhere within the system. - -## How does ThreeFold relate to peer-to-peer? - -ThreeFold's Peer-to-Peer (P2P) computing network is a distributed architecture that splits tasks and workloads between its peers, [ThreeFold Farmers](https://library.threefold.me/info/tfgrid/#/what_is_farming). Farmers are equal participants in the network and together they form a peer-to-peer network of nodes, the ThreeFold Grid. -
-
-Farmers make their resources, such as processing power, disk storage or network bandwidth, directly available to other network participants, without the need for central coordination by servers or stable hosts. Farmers are both suppliers and consumers of resources, in contrast to the traditional [client-server](https://en.wikipedia.org/wiki/Client-server) model in which the consumption and supply of resources is divided. -
-
-In the near future, ThreeFold will create Digital Twin, which will go beyond the era of peers doing similar things while sharing resources. It will actually enable much more than that. Digital Twin will create a complete new digital world with diverse peers that can bring in unique resources and capabilities to a [virtual community](https://en.wikipedia.org/wiki/Virtual_community) on the ThreeFold Grid. This will empower the network of peers to engage in greater tasks beyond those that can be accomplished by individual peers, and are beneficial to all the peers. - -## Why did ThreeFold choose peer-to-peer?  - -Everything starts (or should start) from the why, and the ThreeFold story started a long time ago. Before the inception of ThreeFold, many of the co-founders of the project used to work with the largest IT & Cloud actors. Throughout their experience working in the Industry, they realized that the complexity of the technology and the centralization of knowledge & power led to an inefficient, unsustainable, not scalable and unequally distributed infrastructure. So they decided to redesign the whole Internet and cloud infrastructure bottom-up with the vision of shaping a global internet economy that can scale anywhere efficiently, cost efficiently and sustainably. - -## Why does the world needs peer-to-peer?  - -By developing the technology, the conviction that peer-to-peer was the best solution for humanity and the planet strengthened itself. Why? Well, put simply, a peer-to-peer system removes all forms of intermediaries, unnecessary steps and complexity from the picture. Therefore, it simplifies the architecture in an incredible way. The benefits are many but here are the most popular benefits: -
- -- _Privacy_: Our peer-to-peer environment means no middlemen or intermediaries, meaning data travels directly between peers and stored on the nodes of their choice rather than being sent through and stored by a third party. -- _Security_: Data stored in data centers is susceptible to security breaches. In bypassing data centers and exchanging data directly between peers, we can achieve much greater security as it reduces code and back doors significantly. -- _Scalability_: In a many-to-many system, scale is essentially unlimited. There is simply no bottleneck. And hardware (nodes) can be added at ease compared to current data center model. -- _Cost-efficiency & Sustainability_: End-to-end (direct) connection between peers means a more efficient path for data and less energy is needed. Less energy means less cost, and less harm to our planet. - -## In 2021 the world is going peer-to-peer!  - -We're now in 4 years into the project, and it is clear that ThreeFold holds the most advanced technology and is probably the only tech company in the world that can achieve a peer-to-peer network & digital world as envisioned by the concept authors. The ThreeFold Grid is running and already at it's 2.4 version and 2021 will bring various commercial opportunities for the public to partake in the peer-to-peer network, from hosting IT workloads to experiencing P2P end-user solutions. In other words, in 2021, the world will be able to go peer-to-peer. diff --git a/content/blog/2020/_index.md b/content/blog/2020/_index.md deleted file mode 100644 index 2d0d600..0000000 --- a/content/blog/2020/_index.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -transparent: true ---- \ No newline at end of file diff --git a/content/blog/2021/01/_index.md b/content/blog/2021/01/_index.md deleted file mode 100644 index 2d0d600..0000000 --- a/content/blog/2021/01/_index.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -transparent: true ---- \ No newline at end of file diff --git a/content/blog/2021/01/post-1/index.md b/content/blog/2021/01/post-1/index.md deleted file mode 100644 index ddeeae1..0000000 --- a/content/blog/2021/01/post-1/index.md +++ /dev/null @@ -1,55 +0,0 @@ ---- -title: "We Need a More Inclusive Internet" # Quotation marks allow colons, semicolons, etc. -description: "Today we are working with partners in the clean energy and network / connectivity to build the solutions that are needed to provide fair and uninterrupted internet access with all corners of the world." # Quotation marks allow colons, semicolons, etc. -date: 2021-01-03 -updated: 2021-01-03 # Comment-out this line with a # if content is unchanged -draft: false # Make it "true" if you don't want Zola to "publish" yet -template: blogPage.html -taxonomies: - categories: [farming,cloud,foundation,aci,twin] - categories: [farming,why] - -extra: - subtitle: "" # Quotation marks allow colons, semicolons, etc. - author: Sam Taggart - authorImg: /images/people/sam_taggart.jpg - imgPath: images/blog/more_inclusive_internet.png - ---- - -
-
-Today, more than 40% of the world is without access to the internet, a tool which brings incredible access to knowledge (education) and important information, communication tools that keep loved ones connected and are crucial for emergencies, and economic opportunities. And over the last year, as the world is spending more time at home, digital economies are booming and education is going remote. With an uncertain future, we need to fix the digital divide or we risk leaving billions of people even further behind. - -## The Data Center Problem: Cost & Proximity - -The centralized data centers that power today's Internet are located "strategically" mainly in North America, Europe, and select parts of Asia. For populations living in these regions, Internet is accessible and generally relatively affordable. But the further you travel from these data centers, the less available and more expensive the internet becomes. Internet access is mostly an issue Sub-saharan Africa, throughout Asia, and some parts of South America. -
-
-Of course some data centers can be and are being built in and near developing and remote regions, but for reasons including cost and audience, this hasn't been a huge priority to date. Beyond that, the data center model as a whole simply cannot scale to meet the future demands of the internet nor is it sustainable for our planet, so this is not the right option. - -## The Internet Shutdown Problem: Control & Manipulation - -Lack of internet access isn't always just an availability or affordability problem. Today's internet can be limited or even shut down at any point, by the right people. Take a quick look at [NetBlocks.org](https://netblocks.org/reports), an organization that reports on global internet disruptions or outages. Typically governments are enacting these measures during times of unrest or protest or  important political moments. Even in the United States, the Executive Branch of the government has [the power to shut down the internet](https://www.klemchuk.com/ip-law-trends/government-power-to-shut-down-the-internet) in a case of a national emergency. -
-
-Cutting the internet or restricting certain services based on region (a common practice as well) is not only not right, it's dangerous. People rely on the internet for information and communication and no government or entity should have the ability to shut the internet down at their discretion. - -## The ThreeFold Solution: Fair & Neutral Internet for All - -In 2016, the United Nations declared internet access to be a human right, yet today if you are reading this post, you are privileged. All humans deserve access to the internet and ThreeFold has the solution. -
-
-With the ThreeFold model, nodes can be set up anywhere in the world where an existing internet connection and electricity are present. By putting physical infrastructure at the edge (close to users), greater levels of access can be reached. -
-
-Further, the ThreeFold Grid cannot be shut down or manipulated. It is a neutral internet owned by the people, where autonomous technology heals and runs itself and requires minimal human intervention. -
-
-Today we are working with partners in the clean energy and network / connectivity to build the solutions that are needed to provide fair and uninterrupted internet access with all corners of the world. -
-
-Of course we will need new safe, secure, and private solutions for people to collaborate online. Many of these are already live and deployable via ThreeFold Now Community Solutions. We are working with partners in the education space as well to build toolsets for students to enrich their lives. -
-
-We need a more inclusive internet, and that is what we are building. diff --git a/content/blog/2021/05/_index.md b/content/blog/2021/05/_index.md deleted file mode 100644 index 2d0d600..0000000 --- a/content/blog/2021/05/_index.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -transparent: true ---- \ No newline at end of file diff --git a/content/blog/2021/05/post-2/index.md b/content/blog/2021/05/post-2/index.md deleted file mode 100644 index a92ba65..0000000 --- a/content/blog/2021/05/post-2/index.md +++ /dev/null @@ -1,57 +0,0 @@ ---- -title: "A Scalable and Secure Operating System" # Quotation marks allow colons, semicolons, etc. -description: "To create a new Internet from scratch, ThreeFold had to start at the operating system level." # Quotation marks allow colons, semicolons, etc. -date: 2021-05-18 -updated: 2021-05-18 # Comment-out this line with a # if content is unchanged -draft: false # Make it "true" if you don't want Zola to "publish" yet -template: blogPage.html -taxonomies: - categories: [farming,cloud,foundation,twin] - categories: [threefold_grid,technology,] - -extra: - subtitle: "" # Quotation marks allow colons, semicolons, etc. - author: Sacha obeegadoo - authorImg: /images/people/sacha_obeegadoo.jpg - imgPath: images/blog/zero_os_blog.png - ---- - -Just like a brain is an interconnected network of neurons, the Internet (or internet) is a global interconnected network of computers and devices that communicate with each other via the [Internet protocol suite](https://en.wikipedia.org/wiki/Internet_protocol_suite) (TCP/IP). The communications infrastructure of the Internet consists of hardware components and a system of software layers that control various aspects of the architecture. -
-
-To create a new Internet from scratch, ThreeFold had to start at the operating system (OS) level. An operating system is a software that manages computer hardware, software resources, and provides common services for computer programs. And this is how Zero OS was born - -## What makes Zero OS special? - -Zero OS is a stateless and lightweight operating system. Given it has no shell, remote or server interface, it is much safer than the big majority of the OSs on the market. When storing your data on Zero OS, it is fingerprinted and made available only when requested by you or those you provide access to. -
-
-The state of an application represents its state of being in a given moment in time. Think of a stateless transaction as vending machines, a single request and a response. In ThreeFold’s Internet infrastructure, this can be represented as data being accessible only when requested. -The only way to access data on Zero OS is via the private key (or fingerprint) of a user. In that sense, the data is not accessible unless the data owner requests access to it. - -## How does Zero OS apply to developers? - -Thanks to its lightweight architecture, Zero OS is a perfect fit to run microservice architectures and emerging IT workloads such as IoT, Blockchains, Big Data, and more. A key benefit of microservice architecture is the freedom it offers you to choose the best runtime for the task at hand. -
-
-Let’s take the example of decentralizing service-oriented developing teams. A common challenge there is that most of the time they don’t really understand the applications they are exposing. But no one knows the data infrastructure of the applications better than those who craft them. -
-
-ThreeFold permits decentralized developer teams with the ability to share keys (access) to the developing environment on Zero OS and the gateways to the world wide web within the secure peer-to-peer overlay network. This is game changing. Also with all the automation frameworks provided, it creates the perfect environment to develop current and emerging technologies. -
-
-Put shortly, decentralized development and integration is now officially an organizational or cultural change, not a technical one anymore. - -## Zero OS allows anyone to provide sovereign capacity - -Given stateless systems separate the OS configuration and user data, Zero OS simplifies the maintenance and the deployment of digital workloads, while making it impossible to hack into user data on a hardware level. -
-
-3Nodes provide all the storage, compute and network primitives for a new internet infrastructure. Given they are booted with Zero OS, anyone can now participate in the Internet economy without jeopardizing user data sovereignty and security. -
-
-Conclusively, Zero OS is ultra secure, perfect to develop current and future technologies, and enables anyone to take part in the planet positive and data sovereign Internet brought by ThreeFold. -
-
-Learn more about Zero OS and the grid primitives [here](https://library.threefold.me/info/threefold/#/internet4__tfgrid_primitives). diff --git a/content/blog/2021/05/post-3/index.md b/content/blog/2021/05/post-3/index.md deleted file mode 100644 index 5f06202..0000000 --- a/content/blog/2021/05/post-3/index.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: "How ThreeFold offers Data Sovereignty" # Quotation marks allow colons, semicolons, etc. -description: "ThreeFold is building the engine for an Internet where people can finally be data sovereign." # Quotation marks allow colons, semicolons, etc. -date: 2021-05-23 -updated: 2021-05-23 # Comment-out this line with a # if content is unchanged -draft: false # Make it "true" if you don't want Zola to "publish" yet -template: blogPage.html -taxonomies: - categories: [farming,cloud,foundation,aci,twin] - categories: [data,why,threefold_grid,farming] - -extra: - subtitle: "" # Quotation marks allow colons, semicolons, etc. - author: Sam Taggart - authorImg: /images/people/sam_taggart.jpg - imgPath: images/blog/threefold_data_sovereignty.png - ---- - -If you’ve 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. -
-
-Personal data is used by algorithms to make incredible important decisions, like whether someone should receive financial or health support or benefits. In China, people are now even receiving “scores” for their behaviors. It sounds like Black Mirror, but it’s real life. -
-
-That’s the scary part. The good news is that things don’t have to be this way. ThreeFold is building the engine for an Internet where people can finally be data sovereign. -
-
-With [today’s Internet](https://threefold.io/info/threefold#/threefold__why_intro?id=everyone-should-be-autonomous), infrastructure is centralized. Companies provide services in exchange for your personal data, which is stored on servers in hyper-scale data centers owned by private companies. -
-
-In ThreeFold’s model, those servers are called [3Nodes](https://threefold.io/info/threefold#/threefold__3node), and rather than sitting inside centralized data centers, they sit inside the homes or offices (or small data centers) owned by independent people and organizations called [Farmers](https://threefold.io/info/threefold#/threefold__farming_intro?id=what-is-3node). But the data inside is owned by the person or persons who put it there. They maintain access right as well. From a technical standpoint, data is dispersed across 3Nodes by [an algorithm](https://library.threefold.me/info/threefold/#/threefold__part5_ultra_efficient_storage?id=the-space-algorithm-of-storage) that makes it such that nobody can access it. In addition, connections are peer-to-peer, meaning data goes directly between sender and recipient rather than passing through intermediaries as it does today – bringing further levels of security. -
-
-Thus, people can finally be data sovereign, knowing their data is safe, and truly theirs. diff --git a/content/blog/2021/06/_index.md b/content/blog/2021/06/_index.md deleted file mode 100644 index 2d0d600..0000000 --- a/content/blog/2021/06/_index.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -transparent: true ---- \ No newline at end of file diff --git a/content/blog/2021/06/post-1/index.md b/content/blog/2021/06/post-1/index.md deleted file mode 100644 index 52aef02..0000000 --- a/content/blog/2021/06/post-1/index.md +++ /dev/null @@ -1,72 +0,0 @@ ---- -title: "How You Can Join the People's Internet" # Quotation marks allow colons, semicolons, etc. -description: "An entirely new Internet economy that is owned by all of us. Add capacity, earn income!" # Quotation marks allow colons, semicolons, etc. -date: 2021-06-09 -updated: 2021-06-09 # Comment-out this line with a # if content is unchanged -draft: false # Make it "true" if you don't want Zola to "publish" yet -template: blogPage.html -taxonomies: - categories: [farming, cloud, foundation, aci, twin] - categories: [threefold_grid, farming] - -extra: - subtitle: "" # Quotation marks allow colons, semicolons, etc. - author: Weynand Kuijpers - authorImg: /images/people/weynand_kuijpers.jpg - imgPath: images/blog/join_the_peoples_internet.png - ---- - -Yes, that's right. With ThreeFold, you *can* become the Internet! Let me quickly explain.  -
-
-Today's Internet is powered by hyper-scale data centers which are owned by large corporations. With +80% of the global infrastructure and +60% of the global Internet networks owned by a bunch of companies, the Internet became a real business with us humans being the products of that business model. -
-
-ThreeFold creates an entirely new Internet economy that is owned by all of us and makes the traditional cloud model of building data centers obsolete. With ThreeFold, independent people called "Farmers" plug in 3Nodes (hardware) from their homes or offices anywhere around the world. And they earn income for it. -
-
-Together, they power a new, data-sovereign, and planet-positive Internet owned and powered by the people. This is a game-changer. - -## So, how do I get a 3Node? - -You can buy one of the ready-made nodes from cooperatives around the world. This is a good and very easy way to support the ThreeFold project and to "BE THE INTERNET." -
-
-Today you can buy a 3Node via our website. We are also working with our farming cooperatives to decentralize the provisioning and distribution of hardware to a glocal approach (a global network of local networks).  -
-
-But what if 3Nodes are not immediately available? For example, last week we had a huge influx of orders for our Titan V2 3Nodes and sold out the entire batch with 3,000 extra orders. We're now talking with many hardware distributors to make sure we can satsify all these orders, but this could take a while. -
-
-So if you are a little bit more adventurous, and want to build your 3Node from the ground up, yourself, here's how to do it: -
-
-To "become the Internet" is fairly simple (but does take some technical knowledge and effort). Here's what you'll need: -
-
- -- A computer with an INTEL or AMD brain, some memory, and some storage cabilities. -- A smartphone on which you can download and run the "ThreeFold Connect" app. This will provide you with a wallet (to receive your farmed TFT and to pay a very small amount of TFT to get started). -- A laptop / desktop (and USB stick) to launch your online 3Bot, configure your farm, download your bootloader and burn the bootloader to a USB stick. -- Some technical knowledge, interest and 45 minutes of time. -
-
- -If you are still here and reading, we're good to go! I go through the whole process in a 3-minute video which will give you a quick overview of how to set up your farm. (Click through to the video on YouTube and find helpful links in the description.) -
-
- - -
-
- -Prefer a different format? We also have forum topics live about [the pre-requirements](https://forum.threefold.io/t/requirements-to-set-up-your-own-3node/831) and [how to set up your 3Node](https://forum.threefold.io/t/how-to-set-up-your-own-3node/833) (the steps I share in the video). -
-
- -Thank you, thank you, thank you for reading this post and we hope to have you as part of our growing, global farming community. If you have any questions, please head to [our forum](https://forum.threefold.io/c/farming/diy-farming/) or feel free to join us on [our ThreeFold Farmer chat](https://t.me/threefoldfarmers) on Telegram. -
-
- -Photo by [Nicholas Green](https://unsplash.com/@nickxshotz?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText) on Unsplash diff --git a/content/blog/2021/06/post-2/index.md b/content/blog/2021/06/post-2/index.md deleted file mode 100644 index 0b231e0..0000000 --- a/content/blog/2021/06/post-2/index.md +++ /dev/null @@ -1,56 +0,0 @@ ---- -title: "It's Time We Stand Up For Our Data" # Quotation marks allow colons, semicolons, etc. -description: "As consumers, we should be able to trust that our data is truly safe and secure. And today, we cannot. It's time we stand up for what is ours." # Quotation marks allow colons, semicolons, etc. -date: 2021-06-17 -updated: 2021-06-17 # Comment-out this line with a # if content is unchanged -draft: false # Make it "true" if you don't want Zola to "publish" yet -template: blogPage.html -taxonomies: - categories: [farming, cloud, foundation, aci, twin] - categories: [data, why, peer_to_peer] - -extra: - subtitle: "" # Quotation marks allow colons, semicolons, etc. - author: Sam Taggart - authorImg: /images/people/sam_taggart.jpg - imgPath: images/blog/data_leaks.png - ---- - -Do a quick search for "data leak" on your search engine of choice, and you'll likely see headlines like this: -
-
- -- Personal Details of Over 3.3M Volkswagen Customers Exposed in Data Leak -- Billions of emails and passwords appear in largest data leak ever -- Here's How the IRS Could Have Prevented the Tax Data Leak -- Time to Change Your Password: Tips on Protecting Yourself from Online Scams -
-
- -Week after week, month after month, year after year, companies are being hacked, private consumer data is being compromised and released, and we somehow begin to think that this is the reality of our world, something we just have to deal with. -
-
-Internet security, cyber attacks, and data leaks are a global threat – and increasingly so as the world moves more digital, and smart people with malicious intent try to take advantage. But this is not normal, nor should it be. As consumers, we should be able to trust that our data is truly safe and secure. And today, we cannot. It's time we stand up for what is ours. -
-
-That's where ThreeFold comes in. -
-
-Many of today's issues around cyber security and data privacy come from the lack of innovation in the IT industry over the last decades and the reliance on centralized hyper-scale data centers. ThreeFold has disrupted this model in a few ways: -
-
-First, we started from the ground up. Some ThreeFold co-founders have been working in the cloud & storage space for over two decades, having built components of the cloud and Internet still used today. They knew that the only way to have a truly secure and data sovereign Internet was to rebuild the architecture and the technology components from scratch. So they did. A few years down the line, we've created a new operating system, a smart contract for IT, and a peer-to-peer network that can be scaled to anywhere by anyone. -
-
-Second, we removed people from the equation. IT has become so overly-complex that people are required in order to maintain it. Because of this, "backdoors" are needed to allow these gateholders to enter the systems and make necessary fixes. But this can lead to human error, and also allows people with malicious intent to make their way in as well. With Autonomous IT powering the ThreeFold Grid, the technology runs and heals itself, and drastically reduces the opportunity for humans to interfere. -
-
-And lastly, your data is owned by you. Rather than relying on centralized data centers, the ThreeFold Grid is an Internet grid made up by independent ThreeFold "Farmers" from around the world who plug in capacity from their home or office. While they own the hardware, they do not own the data inside. User data is stored across multiple devices, and proprietary data storage algorithms ensure that the data cannot be retrieved by anyone besides the user – not the farmer, and not even us. -
-
-As Einstein said, "We can't solve our problems with the same level of thinking that created them." -
-
- -We have a lot more information in [our wikis](https://library.threefold.me/info/threefold#/) about the technology, but what we want to emphasize here with you is that we don't have to accept data leaks and hacking. There is an answer to the cybersecurity issues the world is facing. And that answer is ThreeFold. diff --git a/content/blog/2021/06/post-3/index.md b/content/blog/2021/06/post-3/index.md deleted file mode 100644 index f3f6a23..0000000 --- a/content/blog/2021/06/post-3/index.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: "How ThreeFold Will Give Internet to 43% of the World’s Population" # Quotation marks allow colons, semicolons, etc. -description: "Proper access to the Internet helps to protect people’s freedom of speech and thought, as well as access to knowledge and information." # Quotation marks allow colons, semicolons, etc. -date: 2021-06-22 -updated: 2021-06-22 # Comment-out this line with a # if content is unchanged -draft: false # Make it "true" if you don't want Zola to "publish" yet -template: blogPage.html -taxonomies: - categories: [farming, cloud, foundation, aci, twin] - categories: [farming, threefold_grid, why] - -extra: - subtitle: "" # Quotation marks allow colons, semicolons, etc. - author: Sacha Obeegadoo - authorImg: /images/people/sacha_obeegadoo.jpg - imgPath: images/blog/threefold_access.png - ---- - -The United Nations publicly ruled Internet access to be a human right in 2016. Proper access to the Internet helps to protect people’s freedom of speech and thought, as well as other fundamentals such as access to knowledge and information. -
-
-Nonetheless, as of 2019, about 43% of humanity remains unconnected to the Internet, creating huge inequalities in access to information and knowledge. It is essential to take the necessary steps to strengthen the relationship between governments and people while still upholding all human rights. -
-
-ThreeFold created an infrastructure that is easily affordable and jointly operated by network peers to make the modern Internet open and fair to everyone. Anybody with a network connection and electricity can add capacity to the ThreeFold Grid. We're looking for farmers around the globe and we're also partnering with farming cooperatives to develop localized strategies and meet the specific needs of their region. Plus, the Foundation will incentivize and sponsor the extension and scope to areas that require Internet capacity the most, to ensure a fair and equitable delivery of the Internet to all. -
-
-Want to join the biggest internet revolution? [Be part](https://farming.threefold.io) of it, today. diff --git a/content/blog/2021/07/_index.md b/content/blog/2021/07/_index.md deleted file mode 100644 index 2d0d600..0000000 --- a/content/blog/2021/07/_index.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -transparent: true ---- \ No newline at end of file diff --git a/content/blog/2021/07/post-1/index.md b/content/blog/2021/07/post-1/index.md deleted file mode 100644 index 28367ac..0000000 --- a/content/blog/2021/07/post-1/index.md +++ /dev/null @@ -1,79 +0,0 @@ ---- -title: "Response - The Internet is Destroying Our Brains, but We Can't Quit" # Quotation marks allow colons, semicolons, etc. -description: "The Internet is Destroying Our Brains -excerpt: A response to a poignant article written by P.E. Moskowitz on the dangers of today's Internet." # Quotation marks allow colons, semicolons, etc. -date: 2021-07-01 -updated: 2021-07-01 # Comment-out this line with a # if content is unchanged -draft: false # Make it "true" if you don't want Zola to "publish" yet -template: blogPage.html -taxonomies: - categories: [farming, cloud, foundation, aci, twin] - categories: [why, peer_to_peer, digital_twin, technology] - -extra: - subtitle: "" # Quotation marks allow colons, semicolons, etc. - author: Sam Taggart - authorImg: /images/people/sam_taggart.jpg - imgPath: images/blog/internet_destroying_brain.png - ---- - -The other day, I came across [a poignant article](https://africa.businessinsider.com/strategy/the-internet-is-destroying-our-brains-but-we-cant-quit-its-a-factory-were-forced-to/z4drxf5) written by [P.E. Moskowitz](https://twitter.com/_pem_pem) entitled "The internet is destroying our brains, but we can't quit. It's a factory we're forced to work in without any pay." As someone who started out in social media advertising (read: trying to capture peoples' attention to get them to buy or do something often by using their data against them), worked in influencer marketing in its early days, and has now gone 180º to help to build a decentralized Internet by people and for people (where people are digitally sovereign), it really resonated with me. -
-
-It's commonly-discussed (see: The Social Dilemma) and quite obvious if you use or have used the Internet and specifically social media, that we are addicted to being online. In fact, we're actually even chemically triggered by social media and other online experiences. Said Jeff Orlowski, director of The Social Dilemma, "Social media powerhouses like Facebook, Twitter and Instagram are “designed” to exploit users’ brain chemistry in order to keep them glued to their phones... They were designed to get us to come back. It’s to figure out how to reverse-engineer what we’re most vulnerable to, most susceptible to, to come back. And what we are seeing is a dopamine response in the brain." -
-
-In their article, Moskowitz points out how the Internet is not just like a toxic relationship or junk food, where you can leave or stop yourself from eating, rather it's "an all-encompassing technology, our main economic engine, the tool we are forced to use to meet others and mediate our entire lives." -
-
-The truth is that the Internet _has_ become more than an addiction, it's become a necessity to keep up in today's increasingly-digital world. Yet the Internet is not even accessible to about 40% of the global population – and for those who _do_ have access, it does not serve us. It's actually the other way around. We are the product. -
-
-"We produce the memes, tweets, posts, and pictures that keep us tethered to the internet, and then that content is monetized in the form of advertisements - revenue users help produce, but do not usually see a penny of," says Moskowitz. We have become cogs in a machine that uses us for its own benefit. Or as they call it, "a factory we're forced to work in without any pay." -
-
-"Our entire society has been reformulated around the internet, much like it was centered around the factory during the Industrial Revolution. If there's an Amazon Web Services outage, much of our society stops functioning. Without the internet, we couldn't find jobs, or, at this point, even friends." - -## So, what do we do? - -Moskowitz is correct in their thinking when they say the following, "A solution to our current internet-use crisis cannot come at an individual level anymore than one person quitting their job would solve capitalism's poor working conditions. If we want any hope of making the internet less stressful, less back-breaking, and more fulfilling, content creators, gig economy workers, and even casual internet users need to push for a systemic solution." -
-
-Simply pending less time on the Internet or using certain apps instead of others is not going to make much of a difference in the end. There are billions of people on the Internet today to make up for the loss. And the underlying system is still massively flawed and can be manipulated. Bold, widespread, systemic change is indeed what we need. A revolution, perhaps. -
-
- -As pointed out recently [in TGDaily](https://tgdaily.com/web/6-dfinity-threefold-are-leading-an-internet-decentralization-revolution/), ThreeFold is that revolution. -
-
-ThreeFold is the engine for a _new_ Internet, driven by a movement of people who care about a better future. With more than two decades of direct knowledge of the Internet and Cloud industries, we flipped today's Internet on its head. We rebuilt the architecture from the ground up, with people and our planet at the center of our focus. Instead of relying on centralized hyper-scale data centers owned by a few private corporations, we provide the opportunity for people across the world with access to a network connection and electricity to plug in hardware and provide local capacity, and earn income while they are at it. -
-
-In our model, we prioritize simplicity, security, efficiency, and privacy. The technology runs autonomously, removing human error and malicious intent from the equation. Connections are peer-to-peer, meaning no middlemen get in the way of our content, our transactions, or other data. And importantly, people own their data. What we produce is ours. We decide where it gets stored and we decide who can access it (and for what value). In fact, it's basically impossible from a technical standpoint for anybody to access someone's data without their consent – including us. -
-
-On top of the technology, we provide experiences. People will have one single log-in and verifiable identity, and gain access to the tools (experiences) they need for communication and for work. As we are a decentralized movement, soon, anybody will be able to build anything they like on top of ThreeFold – but it is our vision and belief that the Internet should not be addictive. Rather a tool for all of humanity to connect, learn, and prosper – with people at the center, not treated as products. -
-
-To the author's concern, content creators and gig economy workers would clearly benefit from such a digital world as well. Of course services like Airbnb or Uber or Etsy or even YouTube provide value as they are crowded marketplaces both for providers and customers. That said, they profit from people, typically on both sides of the transaction. In a peer-to-peer world, we can create fair and equal marketplaces where the content or product is owned completely by the person listing it there and the value goes 100% directly from person to person. This means no hidden fees, no uncertainty over ownership, no censorship or control from a third party. Of course it's not all predetermined at this moment, but what I can say is that our biggest concerns in what we create are and will always be fairness and equality (and sustainability / regeneration). So, together, we will bring all of this tolife in the best interest of people. - -## Join the Movement - -In their article, Moskowitz concluded that "perhaps it is only a matter of time before enough of us say 'enough,' and protest the internet's totalizing grasp on our labor and our lives." But where does protest lead without a viable solution? Maybe this is the type of systemic change Moskowitz could imagine and could stand behind. It's not a band-aid approach, rather a total re-imagination and re-execution of today's flawed and manipulative Internet. It's an Internet by people, for people. Instead of working in the factory, we become the factory co-owners – and the Internet works for us. -
-
-If you believe in what we are building, we invite you to join the movement: -
-
- -- [Become a farmer](https://threefold.io/farming) -- [Stay updated on ThreeFold News](https://t.me/threefoldnews) -- [Join the conversation](https://t.me/threefold) -- [Test the technology](https://t.me/threefoldtesting) -- [Follow us on Twitter](https://twitter.com/threefold_io) -- [Buy the ThreeFold Token](https://library.threefold.me/info/tfgrid/#/threefold__how_to_buy_and_sell) -
-
- -We are a growing group of people from around the world who not only believe what many of you believe, but we are doing something about it. Let's grow the People's Internet, together. diff --git a/content/blog/2021/07/post-4/index.md b/content/blog/2021/07/post-4/index.md deleted file mode 100644 index 66b89b6..0000000 --- a/content/blog/2021/07/post-4/index.md +++ /dev/null @@ -1,78 +0,0 @@ ---- -title: "Into the Fold – The ThreeFold Movement" # Quotation marks allow colons, semicolons, etc. -description: "The ThreeFold Movement -excerpt: It's not by mistake that you're here, reading this post. You can feel that a global shift is happening. And you want to do something about it." # Quotation marks allow colons, semicolons, etc. -date: 2021-07-20 -updated: 2021-07-20 # Comment-out this line with a # if content is unchanged -draft: false # Make it "true" if you don't want Zola to "publish" yet -template: blogPage.html -taxonomies: - categories: [farming, cloud, foundation, aci, twin] - categories: [why, community, peer_to_peer] - -extra: - subtitle: "" # Quotation marks allow colons, semicolons, etc. - author: Sam Taggart - authorImg: /images/people/sam_taggart.jpg - imgPath: images/blog/the_threefold_movement.png - ---- - -It's not by mistake that you're here, reading this post. You, like I, understand that today's systems need to change. You know that decentralization is needed for better wealth distribution and equal opportunities. And that we need better solutions for our planet. You can feel that a global shift is happening. And you want to do something about it. You want to be a part of it. -
-
-You've dreamt of a different world. A world where people trust and treat each other with respect – and where everyone has equal chances to learn and to thrive. A world where we're not just cogs in a machine that serves only the few, rather we work and co-create as part of systems that benefit all. A world where solutions are sustainable for our planet, or even better, regenerative. This world is not just a dream, though – and you're not alone. Each day, more and more like-minded people are coming together. Welcome into the fold. - -## Meet the Movement - -To understand ThreeFold, you should first understand where we came from. Since the late 90's, some of the ThreeFold co-founders have worked on Internet storage and cloud technology. And after years of building, and many successful launches, they came to understand that they were part of a broken system that was productizing people and damaging the planet. Despite this, they knew that the Internet held and holds the key to a better world, and that the only way to have a truly sovereign, secure, and energy-efficient Internet was to start from scratch. So we did. -
-
-This is how our story began – and over the past four years we have grown and expanded a team of like-minded and passionate people from around the world to bring ThreeFold to life. But for us, we are still in the beginning of something much bigger to come. -
-
-We don't consider ourselves a company, rather a group of humans helping other humans – and our planet. We believe the world needs to change, and we choose to not just talk, but act, to make that change happen. We cannot and would not want to do this alone. There is a strong, passionate, and growing community around us – partners, farmers, ambassadors, technology testers, other contributors, and supporters just like you. - -## Our Mission, Vision, and Values Drive us Forward - -Our mission is to build and expand a data-sovereign and planet-positive Internet owned by the people, for the people. This will enable equal chances for people around the world to learn, partake and succeed, and will help to heal our planet. -
-
-Engrained into the work that we do are three key values or principles: -
-
-We believe in **sovereignty**, and in protecting people. Everyone should own their data, and no one else, not even ThreeFold. Our peer-to-peer technology allows every user to be data sovereign – giving them 100% control over their data. -
-
-We believe that everyone should be given **equal chances** to learn, partake and succeed. Internet access is a human right, and at ThreeFold we commit to scale our technology to new regions to empower the unconnected. -
-
-And we unify our practices, partnerships, and products around a single mission – to **heal our planet**. By making our technology actionable, we enable a collective approach to have an impact together. - -## Together, We Invite the World Into the Fold - -It's important for others to understand who we are. Thus, we identify with and embody three key attributes as a collective, to show the world what the movement is all about: -
-
-**ThreeFold is purposeful.** We exist to help humanity thrive. Our mission is bold and motivates every step we take. We adapt to our evolving environment and passionately strive for excellence. -
-
-**ThreeFold is empowering.** We help people find themselves and do what they love. We provide support to people and projects that help build a better world, whether they have moonshot visions or down-to-earth ambitions. We aren’t the hero of our story – they are. -
-
-**ThreeFold is approachable.** ThreeFold keeps it real. We’re open and honest, avoiding upstage corporate language and phony marketing spins. We don’t see ourselves as a company, but more like humans helping other humans. So being genuine, friendly, and loving comes naturally. -
-
-In its essence, the movement is open and inviting. We've created **a participatory Internet economy**, where anybody around the world can plug in a 3Node and add capacity to the ThreeFold Grid. Together, we're expanding a data sovereign and planet positive Internet infrastructure, owned by the people, across geographical and cultural borders. -
-
-We believe in **collaboration, not competition**. Our technology serves as a responsible underlying layer on top of which anybody can build and create. We have [beautiful partners](https://threefold.io/partners) already on board – and [an alliance](https://threefold.io/aci) of conscious people and organizations who share our vision – and we are constantly expanding our ecosystem across industries. -
-
-And while the ThreeFold Foundation is currently the driving force behind the ThreeFold Movement, we believe in **decentralization**. We have open channels like [a forum](https://forum.threefold.io), [a two-way Telegram chat](https://t.me/threefold), Github ([Foundation](https://github.com/threefoldfoundation) & [Tech](https://github.com/threefoldtech/)), and [Twitter](https://twitter.com/threefold_io), where people can and do contribute, ask questions and provide feedback that goes into our everyday decision-making and actions. -
-
-As I said at the start, you've dreamt of a different world. And so have I. John Lennon once said, "A dream you dream alone is only a dream. A dream you dream together is reality." Thank you for dreaming with us. Together, this will happen! -
-
-Photo by Ahmad Odeh on Unsplash. diff --git a/content/blog/2021/07/post-5/index.md b/content/blog/2021/07/post-5/index.md deleted file mode 100644 index dfe726f..0000000 --- a/content/blog/2021/07/post-5/index.md +++ /dev/null @@ -1,65 +0,0 @@ ---- -title: "This ThreeFold Farm Keeps Veggies Warm" # Quotation marks allow colons, semicolons, etc. -description: "Meet Blockheating" -excerpt: "Somewhere in the Netherlands, a ThreeFold Farm is supporting the growth of vegetable crops such as tomatoes, peppers and cucumbers." # Quotation marks allow colons, semicolons, etc. -date: 2021-07-23 -updated: 2021-07-23 # Comment-out this line with a # if content is unchanged -draft: false # Make it "true" if you don't want Zola to "publish" yet -template: blogPage.html -taxonomies: - categories: [farming, cloud, foundation, aci, twin] - categories: [why, peer_to_peer, digital_twin, technology] - -extra: - subtitle: "" # Quotation marks allow colons, semicolons, etc. - author: Roel Van Sabben - authorImg: /images/people/roel_van_sabben.jpg - imgPath: images/blog/blockheating_intro.png - ---- - -Somewhere in the Netherlands, a ThreeFold Farm is supporting the growth of vegetable crops such as tomatoes, peppers and cucumbers. By directing the excess heat generated from the hardware operations to the greenhouse next door, they are able to achieve an incredible model that benefits both hardware and vegetables. -
-
-Jeroen Burks, CEO of Blockheating, tells us everything we need to know about their sustainable farming operations. As far as he can remember, Jeroen has always been a protagonist of the “no waste” approach. He started by recycling material previously used by the tech industry, mainly in the cloud market. -
-
-"By default, most data center operations replace their power supplies every 3 years, no matter the state they are in. They are being replaced to counter any possible downtime." -
-
-By refurbishing and repurposing “old” power units from data centers, he gives them a second life as electric tractor chargers, lithium ION pack chargers, and more. -
-
-"You just need to trick the unit into thinking it is still powering servers, add some cables here and there, and it is ready for duty." -
-
-His quest towards sustainability started when he was challenged on a pilot project. His friend had bought a new building and was looking for the most sustainable approach to heating it. Jeroen came up with the idea of putting two server racks in the basement and using the heat from that operation, to heat the offices and spaces above. While this project was a success, Jeroen realised that it could be way more efficient, if done with other structures. -
-
-He quickly engaged with a second pilot project where he used two server racks to heat a small greenhouse. This model turned out to be a great combination, which benefited both hardware, as well as farming operations. And so sprouted ‘Blockheating’ -- a data center that provides heat for tomatoes, peppers and cucumbers. Why specifically these vegetables? Well, the Netherlands has a fair amount of greenhouses cultivating them, and these ‘veggies’ need that heat during summer nights. -
-
-Right now Blockheating has around 400 compute nodes with direct cooling that stores all the heat in a buffer throughout the day, which is then released into the greenhouses during the night hours. -"By doing it the way we do, we grow the internet grid, help grow vegetables and curb fossil fuel usage – in carbon negative compute power!" -
-
-Right now, Blockheating has a portion of their data center dedicated to ThreeFold Farming for a few reasons: -
-
- -- The alignment of values is huge -- ThreeFold Farming is easy to manage -- ThreeFold Farming counters wasteful behavior of internet resources, so it's a triple win - -
-Blockheating envisions to scale up-to three data centers of this kind, in an interconnected way, with a fiber ring between them. By doing so, they will be able to increase their offering and have a larger impact on countering the wasteful patterns of the cloud industry. -
-
-ThreeFold is proud to have Blockheating as a ‘State-of-the-Art’ Farmer and Partner, and hopes to see many more people and companies inspired by Blockheating around the world, to expand the ‘People’s Internet’ in a regenerative way. -
-
- -Find out more about Blockheating here: [https://blockheating.com/](https://blockheating.com/) -
- -Find out more about our partners here: [https://threefold.io/partners](https://threefold.io/partners) diff --git a/content/blog/2021/10/_index.md b/content/blog/2021/10/_index.md deleted file mode 100644 index 2d0d600..0000000 --- a/content/blog/2021/10/_index.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -transparent: true ---- \ No newline at end of file diff --git a/content/blog/2021/10/post-7/index.md b/content/blog/2021/10/post-7/index.md deleted file mode 100644 index b458282..0000000 --- a/content/blog/2021/10/post-7/index.md +++ /dev/null @@ -1,52 +0,0 @@ ---- -title: "Our Quest to Fully Decentralize the Internet" # Quotation marks allow colons, semicolons, etc. -description: "It's our mission to transform the Internet and Cloud. Learn more about the status quo and how we're working on fully decentralizing the entire Internet!" # Quotation marks allow colons, semicolons, etc. -date: 2021-10-14 -updated: 2021-10-14 # Comment-out this line with a # if content is unchanged -draft: false # Make it "true" if you don't want Zola to "publish" yet -template: blogPage.html -taxonomies: - categories: [foundation, cloud] - categories: [threefold_grid, threefold_cloud, technology, blockchain, peer_to_peer] - -extra: - subtitle: "" # Quotation marks allow colons, semicolons, etc. - author: Hannah Cordes - authorImg: /images/people/hannah_cordes.jpg - imgPath: images/blog/quest_decentralize_internet.png - ---- - -Tim Berners-Lee created the web server and browser in 1990. Back then, the web was of a free, rather decentralized nature in which no single entity was to control the access to it. With the client-server architecture of the web, however, centralization came about. [Nowadays](https://threefold.io/info/threefold#/threefold__why_intro?id=everyone-should-be-autonomous), the web as well as the Internet in general are highly centralized. There are only a few companies acting as gatekeepers to large parts of today’s Internet. The Internet as we know it is continuously [struggling with issues](https://theconversation.com/web-3-0-the-decentralised-web-promises-to-make-the-internet-free-again-113139) related to its centralized nature – from censorship and attacks on net neutrality to manipulation attempts from companies with [monopolistic power](https://www.newyorker.com/magazine/2017/08/28/who-owns-the-internet). These issues are systematic and major players like Amazon or Facebook are [benefitting](https://techmonitor.ai/boardroom/power-of-tech-companies) from the situation as it is. This business model is also highly reliant on centralized hyperscale [data centers](https://threefold.io/blog/post/data_leaks/) that also come with a whole set of issues, from their vulnerability and limited scalability to their extremely high energy consumption [and more](https://threefold.io/blog/post/threefold_cloud_vs_centralized_providers_like_aws_azure/). - -
- -People have become the [product](https://threefold.io/blog/post/threefold_data_sovereignty/) of a business model where companies offer their services in exchange for personal data – in order to capitalize on and exploit the data, basically squeezing people out for their data like oranges for juice. In times where [data exploitation](https://www.techradar.com/news/why-personal-data-exploitation-has-become-the-norm) is the norm, it makes sense that data is often referred to as digital oil or gold. Moreover, algorithms of social media platforms increasingly lead to content provoking controversy and [addictive](https://thereboot.com/creating-decentralized-social-media-alternatives-to-facebook-and-twitter/) engagement as this type of content tends to increase the time people spend on the platforms – with shocking impacts like The Wall Street Journals’ [investigation](https://www.wsj.com/articles/the-facebook-files-11631713039) “The Facebook Files” and The New York Times’ audio series [Rabbit Hole](https://www.nytimes.com/2020/04/22/podcasts/rabbit-hole-prologue.html) show. - -
- -All of these issues have strengthened the push towards decentralization, mainly associated with the blockchain technology and cryptocurrencies like Bitcoin. However, many of the projects in the decentralized space still rely on centralized providers or structures to some degree. The second most-popular blockchain in the world, [Ethereum](https://threefold.io/blog/post/decentralize_blockchain/), for example, has 60% of its nodes run on [centralized cloud providers](https://threefold.io/blog/post/threefold_cloud_vs_centralized_providers_like_aws_azure/) with 25% of them running on Amazon Web Services (AWS). [Akash](https://threefold.io/blog/post/project_comparison_2_akash/), a blockchain-based cloud computing platform, prevents unutilized capacity from centralized cloud computing services from going to waste. Leveraging this underutilized cloud capacity, however, also causes Akash to be highly dependent on [centralized capacity](https://blog.orchid.com/akash-networks-greg-osuri-on-decentralizing-cloud-computing/). [Dfinity’s](https://threefold.io/blog/post/project_comparison_1_dfinity/) platform for decentralized apps (dApps) is based on an ecosystem of independent data centers, which makes it rather centralized on an infrastructural level. - -
- -While the previously mentioned projects are all seeking to push decentralization, they all have one thing in common: they rely on centralized structures or providers at least to some degree and therefore, are not fully decentralized yet. So, what does [true decentralization](https://threefold.io/blog/post/decentralize_blockchain/) look like? - -## How ThreeFold is Changing the Game - -It is our [mission](https://threefold.io/mission) to transform the Internet and Cloud and to create borderless opportunities for humanity. Therefore, we‘re truly committed to decentralizing the infrastructure behind the Internet to scale current and future digital workloads. At Threefold, we’re building an entirely [new infrastructure](https://threefold.io/blog/post/an_intro_to_the_threefold_grid/) from the ground up, starting with a [Grid](https://threefold.io/grid) of new, neutral capacity and our operating system [Zero-OS](https://threefold.io/blog/post/zero_os_blog/). Our ThreeFold Grid, based on open-source [technology](https://threefold.io/tech), enables an autonomous, [secure](https://library.threefold.me/info/threefold#/tfgrid/threefold__usp_secure?id=network-security), and energy-efficient infrastructure that allows for unlimited scalability while remaining affordable. Our Grid is the largest and [most advanced](https://www.forbes.com/sites/johnkoetsier/2020/06/20/largest-distributed-peer-to-peer-grid-on-the-planet-laying-foundation-for-a-decentralized-internet/) peer-to-peer infrastructure in the world, already available in more than [50 countries](https://explorer.grid.tf/) and keeps expanding fast. With our energy-efficient full stack [cloud infrastructure](https://cloud.threefold.io), uniting compute, storage, and network, we are much more comprehensive than other projects. - -
- -At ThreeFold, we believe in giving power to the people by developing technologies that empower individuals, enable social participation, and foster collaboration. We’re enabling even people without technical skills to [join the network](https://threefold.io/farm) with plug-and-play [3Nodes](https://shop.threefold.tech/index.php?route=common/home) offered through our certified hardware partners. The ThreeFold Grid is therefore [more inclusive](https://www.threefold.io/blog/post/tf_grid_peoples_internet/) and allows any individual to participate. Our peer-to-peer nature removes the need of centralized servers and any type of intermediary, allowing applications and data to live closer to where they’re being utilized. - -
- -In addition to that, we believe that no one but you should own your data. Our technology empowers every user to be [data sovereign](https://threefold.io/blog/post/threefold_data_sovereignty/), giving them full control over their own data by using a variety of innovative technologies, such as autonomous IT, blockchain, and [peer-to-peer](https://threefold.io/tech/peer-to-peer) networking. This way, our technology is turning traditional IT upside down, enabling a data-sovereign Internet that gives users [control](https://threefold.io/blog/post/join_the_peoples_internet/) and ownership of their data in an [entirely secure](https://forum.threefold.io/t/critical-security-updates-for-apple-and-google-underline-need-for-secure-it-ecosystem/1271), peer-to-peer IT ecosystem. - -
- -All in all, we provide the low-level primitives for a [decentralized world](https://forum.threefold.io/t/threefold-is-the-substrate-for-decloud/1295), enabling any project to run on a fully decentralized, [energy-efficient](https://new.threefold.io/blog/post/for_our_planet/), and self-healing infrastructure. As we truly believe in collaboration to effect change at a large scale to fully decentralize the [Internet and Cloud](https://africa.businessinsider.com/local/markets/ambitious-startup-to-disrupt-the-internet-and-cloud/b38rwj4), our [partnership](https://threefold.io/partners) ecosystem keeps growing. Most recently, we announced a [strategic partnership](https://threefold.io/partners/owncloud) with ownCloud, an alternative to public clouds with more than 200 million users worldwide, that aims to advance the decentralization of the [consumer cloud](https://threefold.io/news/post/owncloud_threefold/). - -
- -So, we’d like to invite you to join forces with us to further push the [decentralization](https://www.econotimes.com/ThreeFold-DFINITY-and-the-race-to-Decentralize-the-Internet-1618367) of the Internet together – whether by becoming a [3Node](https://threefold.io/farm) or building on our ThreeFold Grid, by buying our ThreeFold Token ([TFT](https://threefold.io/tft)), our currency for a decentralized world, or by [testing](https://threefold.io/info/cloud#/cloud__evdc_getting_started) our P2P Cloud. Let’s [revolutionize](https://tgdaily.com/web/6-dfinity-threefold-are-leading-an-internet-decentralization-revolution/) the Internet together! diff --git a/content/blog/2021/_index.md b/content/blog/2021/_index.md deleted file mode 100644 index 2d0d600..0000000 --- a/content/blog/2021/_index.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -transparent: true ---- \ No newline at end of file diff --git a/content/blog/2022/03/_index.md b/content/blog/2022/03/_index.md deleted file mode 100644 index 2d0d600..0000000 --- a/content/blog/2022/03/_index.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -transparent: true ---- \ No newline at end of file diff --git a/content/blog/2022/03/post-3/index.md b/content/blog/2022/03/post-3/index.md deleted file mode 100644 index 9d55608..0000000 --- a/content/blog/2022/03/post-3/index.md +++ /dev/null @@ -1,83 +0,0 @@ ---- -title: Can a 'Democratized' Internet exist in times of a Cyber War? -description: With cyber sovereignty turning into a non-territorial challenge to sovereignty itself irrespective of the virtual realm of the internet, is there a way out for humanity? -date: 2022-03-03 -updated: 2022-03-03 -draft: false -taxonomies: - categories: [foundation] - categories: [peer_to_peer,data,why,technology] - -extra: - subtitle: "" - author: Sam Taggart - authorImg: /images/people/sacha_obeegadoo.jpg - imgPath: images/blog/cyberwar.png - date: 2022-03-03 ---- - -On February 24 2022, Russia launched a large-scale military invasion and attack on Ukraine. In the days since the invasion began, the war has been fought not only on the ground and in the air, but also in the digital realm. - -
- -Cyber warfare is nothing new, especially in Russia and Eastern Europe. “In the relatively short and rapidly evolving history of cyber conflict, perhaps nothing has been established with greater certainty and more widely accepted than the idea that Russia has significant cyber capabilities and isn’t afraid to use them,” [writes Josephine Wolff](https://time.com/6153902/russia-major-cyber-attacks-invasion-ukraine/), associate professor of cybersecurity policy at Tufts University. “Especially on Ukraine.” - -
- -Leading up to the invasion, Ukraine experienced a series of cyberattacks on its critical infrastructures, including banks and government agencies. On February 23 2022, just a day before the launch of Russia’s military attack, websites of the Ukrainian parliament and multiple government agencies were put out of work. Similar cyber attacks had also been seen in early February and [were attributed to GRU](https://www.economist.com/europe/2022/02/23/will-war-in-ukraine-lead-to-a-wider-cyber-conflict?utm_campaign=a.io&utm_medium=audio.podcast.np&utm_source=babbage&utm_content=discovery.content.anonymous.tr_shownotes_na-na_article&utm_term=sa.listeners), Russia’s military-intelligence agency. And Ukrainian cities continue to suffer from [internet blackouts](https://www.economist.com/graphic-detail/2022/02/26/ukrainian-cities-are-suffering-internet-blackouts?utm_campaign=a.io&utm_medium=audio.podcast.np&utm_source=babbage&utm_content=discovery.content.anonymous.tr_shownotes_na-na_article&utm_term=sa.listeners). On Sunday, Ukraine’s vice president even called for tech specialists and hackers to join the “cyber front.” While the predictions of a Russian “cyber onslaught” have not necessarily come true yet, both sides have engaged in cyber attacks on visible and invisible levels. - -## A Rise in State-Sponsored Cyber Attacks Globally - -Digital or cyber warfare does not just apply to Russia and Ukraine. Broadly, cybersecurity experts have been raising concerns in recent years amid a sharp rise in ransomware and other types of digital attacks globally. - -
- -Adam Meyers, Senior Vice President of Intelligence at the cybersecurity firm CrowdStrike [said](https://www.marketplace.org/2022/02/24/cybersecurity-to-take-center-stage-as-conflict-continues-in-ukraine/): “Just in the last year, I think we’ve seen over 2,700 big-game hunting attacks [cyberattacks that target high-value data]. So they’re far and away that most prevalent actor. Nation-state actors are continuously operating as well, but they tend to operate a little bit more under the radar. They don’t conduct as many widespread and widely known attacks. They try to, obviously, steal information without it being identified that they’ve stolen it.” - -
- -Nevertheless, these are just the most current examples – Russia is hardly the only country engaging in cyber warfare at a larger scale. In fact, it is becoming increasingly difficult for governments, corporations and organizations to protect themselves against cyber attacks, especially against [state-sponsored attacks](https://www.economist.com/business/2022/02/19/companies-have-a-lot-to-fear-from-russias-digital-warmongering?utm_campaign=a.io&utm_medium=audio.podcast.np&utm_source=babbage&utm_content=discovery.content.anonymous.tr_shownotes_na-na_article&utm_term=sa.listeners). And in the digital space, the best and most dangerous hacks are those that go unnoticed until it’s too late. - -## Some Governments are Sectioning Off the Internet Through Digital Borders - -A set of countries like Russia, China, Saudi Arabia, and Iran have certain [aspirations for the internet](https://www.codastory.com/authoritarian-tech/global-rise-internet-sovereignty/). Domestically, these countries want control and think governments should get to decide what information flows across their borders. Globally, they want governments, not companies and NGOs, to be in charge of the internet. While some may say that government-owned internet infrastructures would be the only way to protect a country’s sovereignty, it goes without saying that what once was a neutral space for humanity to connect and exchange information is turning into a political schema. - -
- -Taken together, these goals are an attempt to align cyberspace with national borders, so they are sometimes dubbed the [“cyber sovereignty” doctrine](https://www.codastory.com/authoritarian-tech/global-rise-internet-sovereignty/). The term comes from China, whose internet censorship system, called the Great Firewall, is the vanguard of the global cyber-sovereignty push. China’s cyberspace agency released a much-ridiculed musical ode to cybersecurity under Lu Wei’s leadership, which included the line: “A cyberpower: Where the Internet is, so is the glorious dream.” - -
- -The vision of effective cyber-sovereignty is expanding to new horizons. A November [report](https://www.codastory.com/authoritarian-tech/global-rise-internet-sovereignty/) from Freedom House examined 65 countries and found since the previous year that internet freedom declined in 26 of them. Chinese-style “digital authoritarianism,” meanwhile, is growing in influence as China exports both its surveillance known-how and technology. - -
- -The problem here is that digital sovereignty is a major concept that not only addresses the issues of communication and connection but also the impact on societies and culture at large. With cyber sovereignty turning into a non-territorial challenge to sovereignty itself irrespective of the virtual realm of the internet, is there a way out for humanity? - -## A Free and Sovereign Cyber Space is Needed - -It is evident that the current internet is facing some big challenges that have major implications for humanity. Data privacy and self-sovereignty is almost impossible today, raising serious questions towards those that control the Internet. But it also seems that these companies fell into the trap of their own business models and algorithms. - -
- -When taking a step back, the world seems just a few years away from the Matrix, as depicted by the Wachowskis. - -
- -The Internet is playing an incredibly important role for the most powerful intelligence companies. As depicted by Meyers, we wouldn’t even notice that our information is being stolen all the time to benefit the greed of powerful geo-political actors. The internet is not a public good anymore, and unless humanity reacts fast, it may be that the world will lose all forms of freedom or sovereignty. - -
- -[“A declaration of the Independence of Cyberspace”](https://www.eff.org/cyberspace-independence) by John Perry Barlow once attempted to shed light on the applicability of government and institutions on the rapidly growing internet, already in 1996 trying to protect its neutrality. According to research, the world is experiencing innovation at an increasingly rapid pace. With the rise of blockchains and web3 technology, could the dream of John Perry Barlow turn into reality? - -## So, What is the Solution? - -In a world aching for more decentralization and less dependence on governments and corporations, new decentralized and peer-to-peer models are already proving to be more resilient and secure. New Internet infrastructure companies such as ThreeFold have successfully built peer-to-peer internet infrastructures that are more resilient than the current centralized model. On such systems, people and enterprises can store their data and run their applications on a distributed network of computers in such a way that their data cannot be corrupted. ThreeFold even created a so-called “quantum safe” storage that guarantees that even the most powerful computers in the world wouldn’t be able to reconstruct user data. - -
- -The escalation of this cyber conflict can lead to unforeseen consequences and casualties. That is why it is especially important that our industry works together to protect customers, partner, employees and citizens. ThreeFold is on a mission to realize the promise of a fully-comprehensive, open-source and peer-to-peer internet infrastructure. ThreeFold is a platform for the creators of tomorrow to build that blueprint of responsibility and ensure that the outcome of future systems is neutrality. - -
- -Join ThreeFold in building the new internet. diff --git a/content/blog/2022/03/post-4/index.md b/content/blog/2022/03/post-4/index.md deleted file mode 100644 index 004764d..0000000 --- a/content/blog/2022/03/post-4/index.md +++ /dev/null @@ -1,65 +0,0 @@ ---- -title: Peer-to-Peer Overcomes Web3 Challenges -description: The promise of Web3 is tremendous, but there are clear limitations to overcome. How? Peer-to-peer systems and blockchains, side by side. The best of both worlds. -date: 2022-03-09 -updated: 2022-03-09 -draft: false -taxonomies: - categories: [foundation] - categories: [peer_to_peer,why,farming,threefold_grid] - -extra: - subtitle: "" - author: Sam Taggart - authorImg: /images/people/sam_taggart.jpg - imgPath: images/blog/p2p_web3.png - date: 2022-03-09 ---- - -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? - -
- -Similar to the [enterprise blockchain hype](https://thenewstack.io/as-blockchain-hype-fades-developers-give-ethereum-a-serious-look/) that happened a few years ago, Web3 seems to be repeating the same story, with lots of chatter but lagging adoption. Millions have rushed to trade crypto and NFTs attached to Web3 – with a lot of this activity based on speculation and hype – but that doesn’t mean they will replace legacy platforms anytime soon. New approaches such as DeFi (decentralized finance) don’t have the same problem of the legacy firms, but they face the challenge of scaling and mass adoption. However, many so-called ‘Web3’ solutions are not as decentralized as they seem, and still have to show they are scalable, secure and accessible enough for the mass market. This all may change, but there are clear limitations that will need to be overcome. - -
- -Whether Web3 is a marketing slogan or a true technological trend, there is a lot of money and technology behind it. Financial institutions are embracing blockchain technology and we are seeing a rising adoption of digital assets across industries. While the idea of utilizing digital currencies to exchange different forms of value in an increasingly digital world certainly makes sense, it’s a bigger leap to say that blockchain alone can support a broad set of use cases, including replacing the current Internet infrastructure. - -
- -The Internet’s client-server infrastructure replicates data and workloads across many computers, and uses tons of computing resources and energy while limiting the scalability of our applications. However, the clear inefficiencies and gaps in security in today’s centralized infrastructures are being challenged by simpler means of building, storing and exchanging data. - -
- -Blockchain is a clear evolution to the centralized client-server model, but there are severe challenges sourced from the [blockchain trilemma](https://medium.com/certik/the-blockchain-trilemma-decentralized-scalable-and-secure-e9d8c41a87b3) between decentralization, scalability and security. Peer-to-peer systems transcend those challenges as they don’t require any valid2ation or verification from a third party, and enable end-to-end connections that can scale limitlessly without the potential of being altered or corrupted by intermediaries. In peer-to-peer systems, all participants are equally privileged, presenting a fairer model. Peer-to-peer represents an incredibly simple and efficient paradigm for organizing our digital world, and has already proven to be the most efficient alternative to centralized information systems. - -
- -Simply put, there is no reason to replicate full sets of data and workloads across many computers, and use tons of computing resources and energy while limiting the scalability of our applications. While there is an increasing reliance on blockchain principles to organize our Internet systems, blockchain also makes things redundant, slow, complex and energy intensive. To be clear, blockchain isn’t the problem, as it is a great technology to store and exchange value in a decentralized way, but it is only one piece of the puzzle. - -
- -By inter-connecting the computing processing power and storage capacity of billions of computers worldwide in a peer-to-peer way, data transfers could happen end-to-end between people and machines without the need to be verified. Peer-to-peer is also the only way to achieve a truly self-sovereign Internet – creating a ‘trustful’ environment that allows users and developers to have real data ownership. - -
- -Peer-to-peer systems aren’t meant to replace blockchains – they represent a way to decentralize models that blockchain cannot, such as Internet infrastructures. Peer-to-peer systems and blockchains, side by side. The best of both worlds. Peer-to-peer as the most efficient and decentralized alternative for us to exchange data and Internet resources. And blockchain for establishing trust through an irrefutable record of transactions. - -
- -With the rise of emerging technologies, a new technological foundation is needed to protect our sovereignty and freedom. The rise of blockchains, while well intended, ultimately has made the technological space more complex than ever before, and still benefits a plutocratic few (relative to its promise). More than just technology, peer-to-peer opens a world of new possibilities for humanity to co-initiate new paradigms and experiences. - -
- -By applying blockchain and peer-to-peer technology to the cloud, ThreeFold solves the security and autonomy issues of the Internet and realizes the initial promise of the Internet as an open-source, peer-to-peer, planetary mesh network of nodes owned by the people. - -
- -Support the realization of a peer-to-peer Internet owned by the people today: - -
- -- [Get TFT](https://library.threefold.me/info/threefold#/tokens/threefold__how_to_buy), the currency of the peer-to-peer Internet. -- [Connect a computer](https://library.threefold.me/info/threefold#/tfgrid/farming/threefold__farming_intro) to the peer-to-peer Internet and earn monthly rewards. -- [Build applications](https://library.threefold.me/info/manual/#//manual__manual3_home_new) on the peer-to-peer Internet. diff --git a/content/blog/2022/03/post-8/index.md b/content/blog/2022/03/post-8/index.md deleted file mode 100644 index 86ed9df..0000000 --- a/content/blog/2022/03/post-8/index.md +++ /dev/null @@ -1,68 +0,0 @@ ---- -title: "Co-Realizing the Promise" # Quotation marks allow colons, semicolons, etc. -description: "Together with our global community, we're realizing the initial promise of an open-source, peer-to-peer Internet owned by the people." # Quotation marks allow colons, semicolons, etc. -date: 2022-03-21 -updated: 2022-03-21 # Comment-out this line with a # if content is unchanged -draft: false # Make it "true" if you don't want Zola to "publish" yet -template: blogPage.html -taxonomies: - categories: ["Foundation"] - categories: [threefold_grid, community, farming, interview, update] - -extra: - subtitle: "The UNIQUE Post 1 subtitle" # Quotation marks allow colons, semicolons, etc. - author: Sacha Obeegadoo - authorImg: /images/people/sacha_obeegadoo.jpg - imgPath: images/blog/realizing_the_promise.png - isFeatured: true - ---- - -What was once a massive global movement sparked by the idealism of free culture and the net, is now hosting a wave of unintended consequences that may destroy sovereignty and freedom as we know it. The digital revolution and the “democratization” of the Internet promised to lead us to a prosperous and equitable world, one that brought us closer together, eliminating both physical and virtual boundaries. - -
- -_“We are creating a world that all may enter without privilege or prejudice accorded by race, economic power, military force, or station of birth… a world where anyone, anywhere may express his or her beliefs, no matter how singular, without fear of being coerced into silence or conformity… Your legal concepts of property, expression, identity, movement, and context do not apply to us. They are all based on matter, and there is no matter here.” – Declaration of independence of Cyberspace – John Perry Barlow – Davos, 1996._ - -
- -Unfortunately, this is not the world we live in today. Borders are hardening in our virtual world with the Great Firewall of China and the widespread emergence of Internet “clusters”. Many countries have attempted to turn off Internet services or to prevent free speech. Networks and algorithms turn us into data generators, influencing our daily habits and interests. It’s turning into a big AI-driven machine that commoditizes our lives, leaves the underserved behind and fails to provide sovereignty where we gather. - -
- -A centralized Internet which is controlled by a handful of companies is a serious existential threat. The technology that connects us is now used to distract, manipulate, polarize, divide and control the way we think, act and live our lives. If emerging technologies such as IoT, Blockchain and the Metaverse are not hosted on a self-sovereign, peer-to-peer infrastructure owned by all of us, we may be running head down into the matrix. - -
- -With billions of people and IoT devices expected to join this broken digital world this decade, we have no choice but to heal our broken information ecosystem if we want to address the challenges we face collectively. So as we move towards a world where tech and science are merging together, how do we ensure a neutral, inclusive and regenerative digital future – one that truly serves humanity and eliminates the barriers that divide us? - -
- -The peer-to-peer Internet incentivizes all citizens of our world to connect computers from their homes or offices to participate in a distributed data economy owned by the people. By allowing humans and machines to interweave without intermediaries, a decentralized and self-sovereign Internet can emerge. - -
- -Quite simply – there is no good reason that our data is being stored and controlled by others in the information age. Why are we paying centralized companies to handle our information on our behalf, when it makes us vulnerable to be turned into products, and would take us the same time to do it ourselves? - -
- -Peer-to-peer isn’t an alternative to the Internet, it’s an alternative to centralized cloud giants. The Internet doesn’t need replacing; it is one of the most beautiful inventions of our civilization, if not the greatest. Which is not to say that cloud providers are completely obsolete. They serve functions that decentralized systems cannot (e.g. big data); but peer-to-peer systems are just infinitely more resilient, secure, private and scalable. - -
- -In times of exponential evolution and innovation, we have our fears around the Internet. - -We don’t need to disconnect ourselves even further from our reality and it is our responsibility to ensure a safe and fair future for the generations to come. A centralized Internet which is controlled by a handful of companies is a serious existential threat. If emerging technologies such as IoT, Blockchain and the Metaverse are not hosted on a self-sovereign, peer-to-peer infrastructure owned by all of us, we may be running head down into the matrix. - -
- -The potential of technology to change the world remains endless and limited to our own imagination. We decide to switch from fear to love, and to move forward as one humanity. It is our responsibility as global citizens to pursue greater collective consciousness. - -
- -Join the [ThreeFold](https://t.me/threefold) movement, a community of like-minded people that build the world of tomorrow! - -
- -- Learn how to [host the Internet](http://threefold.io/farm) at your home or office. -- Get [TFT](https://gettft.com/gettft/), the currency of the peer-to-peer Internet. diff --git a/content/blog/2022/04/_index.md b/content/blog/2022/04/_index.md deleted file mode 100644 index 2d0d600..0000000 --- a/content/blog/2022/04/_index.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -transparent: true ---- \ No newline at end of file diff --git a/content/blog/2022/04/post-10/index.md b/content/blog/2022/04/post-10/index.md deleted file mode 100644 index 3bfba37..0000000 --- a/content/blog/2022/04/post-10/index.md +++ /dev/null @@ -1,58 +0,0 @@ ---- -title: "The Internet that connects us also manipulates us. In search of a better future." # Quotation marks allow colons, semicolons, etc. -description: "The Internet as we know it was once free and decentralized by nature. Over time, the Internet lost its neutrality. ThreeFold represents an opportunity to realize the initial promise of a distributed and neutral Internet owned by the people." # Quotation marks allow colons, semicolons, etc. -date: 2022-04-05 -updated: 2022-04-05 # Comment-out this line with a # if content is unchanged -draft: false # Make it "true" if you don't want Zola to "publish" yet -template: blogPage.html -taxonomies: - categories: ["Foundation"] - categories: [threefold_grid, community, farming, interview, update] - -extra: - subtitle: "The UNIQUE Post 1 subtitle" # Quotation marks allow colons, semicolons, etc. - author: HANNAH CORDES - authorImg: /images/people/hannah_cordes.jpg - imgPath: images/blog/in_search_of_a_better_internet.png - ---- - -The Internet is one of humanity’s [greatest inventions](https://coincodex.com/article/14083/threefold-host-the-cloud-at-your-house/). In its early days, it used to be [free and decentralized](https://theconversation.com/web-3-0-the-decentralised-web-promises-to-make-the-internet-free-again-113139) by nature. No single entity was able to control access to the web as it was built on the foundation of a peer-to-peer network of nodes owned by developers and researchers. Until the dot-com era. Throughout the early 2000s, large corporations took over the web. New platforms like YouTube and MySpace were launched and new infrastructure needed to be built at an extreme pace, starting the data revolution and changing the digital landscape forever. - -
- -Twenty years down the line, the Internet’s architecture has become highly centralized – owned by a handful of large corporations that act as the [gatekeepers](https://www.newyorker.com/magazine/2017/08/28/who-owns-the-internet) of our digital world. What was once an open and free platform accessible to anyone has long since built up barriers and lost its neutrality. Users are trapped in a cyberspace that exploits their personal data and allows censorship, hate speech, disinformation and political targeting to thrive. - -## Going down the Rabbit Hole - -The Wall Street Journal’s [investigation](https://www.wsj.com/articles/the-facebook-files-11631713039) “The Facebook Files” and The New York Times’ audio series “[Rabbit Hole](https://www.nytimes.com/2020/04/22/podcasts/rabbit-hole-prologue.html)” are only some of the latest examples that depict the shocking impacts of the manipulation, mental health problems, and extremism that social media algorithms are fuelling. Nevertheless, these incidents are only a glimpse into all the ways we’re being affected and influenced about the way we see the world – by the tech giants and their algorithms. Tech giants like Google and Facebook have been surrounded by a constant stream of data privacy [scandals](https://www.wired.com/story/should-big-tech-own-our-personal-data/) as more and more whistleblowers expose their misconduct. However, there are plenty of other, hidden players using the tools and algorithms of social media platforms for their own agendas. - -
- -[The Great Hack and the Social Dilemma](https://filmthreat.com/features/4-thought-provoking-movies-on-digital-privacy-and-security/) are great documentaries that shed light on how the Internet as we know it became compromised. They depict how algorithms are used to mine user data, control information feeds and manipulate our digital experiences. The [Trump Election and the Brexit vote](https://www.politico.eu/article/cambridge-analytica-chris-wylie-brexit-trump-britain-data-protection-privacy-facebook/) were heavily influenced by private companies like [Cambridge Analytica](https://www.theguardian.com/news/series/cambridge-analytica-files) that manipulated mass audiences through social media. - -
- -By purchasing thousands of personal data points collected by social media platforms and analyzing them, companies like Cambridge Analytica are able to not only predict but influence the behaviour of each and everyone of us. Data collection and analysis to such an extent allow these companies to craft and push perfectly targeted messages to users in a way that’s optimized to sway their opinions in favour of whatever agenda they have. - -## Can a neutral and free Internet still exist? - -On 24th of March 2022, the European Parliament and Council negotiators agreed upon the [Digital Markets Act](https://variety.com/2022/digital/global/facebook-google-amazon-apple-digital-market-act-europe-regulation-1235214516/) (DMA). It seeks to give users more choice by demanding the most popular apps to open up and interoperate with smaller apps. Moreover, the act aims to ensure a fairer market competition by prohibiting certain gatekeeper practices like self-preferencing and targeted advertising. This set of new EU regulations is likely to impact the daily business of tech giants significantly once it becomes law. While the [DMA](https://www.europarl.europa.eu/news/en/press-room/20220315IPR25504/deal-on-digital-markets-act-ensuring-fair-competition-and-more-choice-for-users) promises to mitigate some of the issues discussed, it is doubtful that the act will be enough to fundamentally change the current system. This is a step in the right direction, but much more needs to be done. - -
- -The Internet has become our digital home. It’s impacting our lives in many ways by creating new opportunities, and changing how we communicate and connect. Therefore, it is crucial to restore the Internet’s neutrality to ensure a fair and equal environment. We need an Internet where we can rely on data security and privacy. An Internet where we’re empowered to truly and completely have ownership of and control of our own data. An Internet that empowers us with digital sovereignty. - -
- -The Internet used to be a free movement of culture and the Web. It started with an open-source and peer-to-peer vision to connect people. And while Web 3.0 projects are looking to liberalize the Internet as we know it, most of them still rely on centralized Web 2.0 infrastructure to some degree. The world needs better, holistic solutions. ThreeFold is [realizing the initial vision and promise](https://threefold.io/blog/post/realizing_the_promise/) of the Internet as an open-source, peer-to-peer planetary mesh network of nodes owned by humanity. It’s a 100% open-source and community-driven project that builds the critical, neutral infrastructure for a decentralized world – one that is built and owned by the people. With ThreeFold, individuals and organizations are empowered to store their data and run their applications on a peer-to-peer network of nodes in a way that ensures their data will not be manipulated, hacked or lost. - -
- -Powered by a global community, ThreeFold is the world’s largest peer-to-peer Internet infrastructure with a few thousand 3Nodes connected from 74 countries and the neutral foundation for [any current and future IT workload](https://medium.com/authority-magazine/the-future-is-now-kristoff-de-spiegeleer-of-threefold-on-how-their-technological-innovation-will-7acc0e51c365). ThreeFold is now on the verge of opening up a new Internet era free from censorship, user tracking and privacy breaches. And anyone can participate in ThreeFold’s model by building or buying a 3Node, and connecting Internet capacity from their home or office – creating a fully [decentralized Internet](https://coincheckup.com/blog/threefold-is-the-decentralized-web-the-future-of-the-internet/). - -
- -- Join the ThreeFold [movement](https://t.me/threefold) today and drive a new Internet era. -- Break free from big tech and [be the Internet](https://threefold.io/blog/post/what_is_farming/) by setting up a 3Node at your home. -- Help us [connect the dots](https://threefold.io/blog/post/connecting_the_dots/). diff --git a/content/blog/2022/_index.md b/content/blog/2022/_index.md deleted file mode 100644 index 2d0d600..0000000 --- a/content/blog/2022/_index.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -transparent: true ---- \ No newline at end of file diff --git a/content/blog/_index.md b/content/blog/_index.md deleted file mode 100644 index 6804c98..0000000 --- a/content/blog/_index.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Blog" -paginate_by: 5 -# paginate_reversed: false -sort_by: "date" -insert_anchor_links: "left" -#base_url: "posts" -#first: "first" -#last: "last" -template: "layouts/blog.html" -page_template: "blogPage.html" -#transparent: true -extra: - imgPath: /images/threefold_img2.png ---- diff --git a/content/experiences/bg_home.jpg b/content/experiences/bg_home.jpg new file mode 100644 index 0000000..ae62655 Binary files /dev/null and b/content/experiences/bg_home.jpg differ diff --git a/content/experiences/index.md b/content/experiences/index.md new file mode 100644 index 0000000..0c07a2d --- /dev/null +++ b/content/experiences/index.md @@ -0,0 +1,26 @@ +--- +title: "Experiences" +description: "" +date: 2018-09-14 +updated: 2021-02-20 +draft: false +weight: 4 +--- + + + +{% row(style="center" margin="header" bgPath="bg_home.jpg" bgStyle="hero") %} + +![FF Logo](tf_experience_small.png#mx-auto) + + +
+ + +## THE FREEFLOW EXPERIENCES + +Fully decentralized and completely secure applications built to enable and to empower. + + + +{% end %} \ No newline at end of file diff --git a/content/experiences/tf_experience.png b/content/experiences/tf_experience.png new file mode 100644 index 0000000..983f117 Binary files /dev/null and b/content/experiences/tf_experience.png differ diff --git a/content/experiences/tf_experience_small.png b/content/experiences/tf_experience_small.png new file mode 100644 index 0000000..7d580cb Binary files /dev/null and b/content/experiences/tf_experience_small.png differ diff --git a/content/footer/_index.md b/content/footer/_index.md deleted file mode 100644 index ab303a7..0000000 --- a/content/footer/_index.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: "Footer" -description: "The only truly decentralized metaverse on the planet awaits you." -insert_anchor_links: "left" -extra: - logoPath: "/images/OurVerse-logo.png" - socialLinks: { Github: "https://" } ---- - -{% row(style="center narrow invert-color" bgColor="#2d103e") %} - -## WANNA GET INVOLVED? - -
- -Interested in partnering up? Or just wanna say hi? - -Drop us a message! - - - -{% end %} diff --git a/content/getting-started.md b/content/getting-started.md deleted file mode 100644 index 4de114d..0000000 --- a/content/getting-started.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "Getting Started" -description: "A better world is where we all have access to endless information and opportunities." -date: 2018-09-14T21:00:00-05:00 -updated: 2021-02-20T14:40:00-06:00 -draft: false -extra: - author: ---- - -# Getting Started - -To use this repository as a template, simply: - -- clone repository -- [install Zola](https://www.getzola.org/documentation/getting-started/installation/), -- run `npm install` to install dependencies -- run `npm run start` - -The site will be built on localhost:1111 where you can preview your changes locally. - -## Customizing Site - -It is recommended that you customize the font, metadata, logo and favicon of your site. - -## Adding Content - -You can edit and add your own content from content directory. Each direct .md child file of the content directory will route to the url of the filename. By default, \_index.md will be your landing page. - -## Pushing to git - -In order to keep fetching updates from the template and yet still be able to deploy site from a different github repository, it is recommended that you keep the remote origin of the template and add your own remote repository. diff --git a/content/home/bg_home.jpg b/content/home/bg_home.jpg new file mode 100644 index 0000000..ae62655 Binary files /dev/null and b/content/home/bg_home.jpg differ diff --git a/content/home/chi.png b/content/home/chi.png new file mode 100644 index 0000000..8848c9a Binary files /dev/null and b/content/home/chi.png differ diff --git a/content/home/f_logo.png b/content/home/f_logo.png new file mode 100644 index 0000000..e4953b8 Binary files /dev/null and b/content/home/f_logo.png differ diff --git a/content/home/f_logo_small.png b/content/home/f_logo_small.png new file mode 100644 index 0000000..a03322e Binary files /dev/null and b/content/home/f_logo_small.png differ diff --git a/content/home/ff_twin.png b/content/home/ff_twin.png new file mode 100644 index 0000000..496827b Binary files /dev/null and b/content/home/ff_twin.png differ diff --git a/content/home/ff_vision.png b/content/home/ff_vision.png new file mode 100644 index 0000000..137fc1e Binary files /dev/null and b/content/home/ff_vision.png differ diff --git a/content/home/get_earn.png b/content/home/get_earn.png new file mode 100644 index 0000000..c76e52d Binary files /dev/null and b/content/home/get_earn.png differ diff --git a/content/home/index.md b/content/home/index.md index a0e01bd..7fccbc6 100644 --- a/content/home/index.md +++ b/content/home/index.md @@ -1,52 +1,75 @@ --- -title: "OurWorld" -description: "A better world is where we all have access to endless information and opportunities." -date: 2018-09-14T21:00:00-05:00 -updated: 2021-02-20T14:40:00-06:00 +title: "Home" +description: "" +date: 2018-09-14 +updated: 2021-02-20 draft: false -template: page.html -extra: - author: +weight: 0 --- -{% row(style="moderate") %} + -# ThreeFold SSG Template +{% row(style="center" margin="header" bgPath="bg_home.jpg" bgStyle="hero") %} -##### A template for easily making minimal sites from markdown documents -{% end %} -{{space()}} - -## How to create pages using this template - -- Pages of the website are markdown files in the content directory. -- These pages are then rendered using HTML templates in /templates. -- To get started, simply create a markdown file and start typing, adding images, links etc. -- To style your pages, check shortcodes, which are short snippets of code. -- Shortcodes are added to your markdown content and spice up your pages -- Row is the most powerful shortcode, allowing vertical alignment and horizontal division of content in columns (whereas plain markdown is strictly vertical) +![FF Logo](f_logo_small.png#mx-auto)
-{% row(style="moderate") %} -### Structure of the content directory -Every index.md file in a content directory corresponds to a page, and the landing page is content/\_index.md. -The path of each page is simply its path relavant to the root of the content directory. -Ex: -content/\_index.md -> yoururl.com/ -content/blog/\_index.md -> yoururl.com/blog -content/careers/index.md or content/careers.md -> yoururl.com/careers + +## FREEFLOW INTO
YOUR DIGITAL LIFE + +### **OWN YOUR DATA, DIGITAL SKILLS AND IDENTITY** + + +It is now possible to own every aspect of your digital life. + + + +{% end %} + + + +{% row(style="center" bgColor="#F5F1ED" margin="moderate" id="fflow_vision") %} + +
+ +## THE FREEFLOW
VISION. + +### Our vision is to create a more
safe and sovereign internet together. + +We dream about a global network of internet capacity
which can be the foundation for our digital life
where everyone can be equal and powerful,
where we don't have to be a product,
where information can be authentic. + + + + ||| -### Image sizing with source paths -You can size your markdown images by adding #small, #medium or #large at the end of the images source url. -See /content/\_index.md for implementation. + +![FreeFlow Life](ff_vision.png) {% end %} + +{% row(style="center" margin="moderate" bgColor="#fff" padding="top") %} + +## JOIN THE
MOVEMENT + +### **FreeFlow invites you to your new sovereign digital life.** + +{% end %} + +{% featured_stories() %} + +## Join The Movement + +{% end %} + + + + diff --git a/content/node/1_plug_in.png b/content/node/1_plug_in.png new file mode 100644 index 0000000..18518de Binary files /dev/null and b/content/node/1_plug_in.png differ diff --git a/content/node/2_offer_capacity.png b/content/node/2_offer_capacity.png new file mode 100644 index 0000000..479d5a4 Binary files /dev/null and b/content/node/2_offer_capacity.png differ diff --git a/content/node/3_earn.png b/content/node/3_earn.png new file mode 100644 index 0000000..a6b7b71 Binary files /dev/null and b/content/node/3_earn.png differ diff --git a/content/node/be_the-internet.png b/content/node/be_the-internet.png new file mode 100644 index 0000000..7d03919 Binary files /dev/null and b/content/node/be_the-internet.png differ diff --git a/content/node/index.md b/content/node/index.md new file mode 100644 index 0000000..b6a5511 --- /dev/null +++ b/content/node/index.md @@ -0,0 +1,81 @@ +--- +title: "Node" +description: "" +date: 2018-09-14 +updated: 2021-02-20 +draft: false +weight: 3 +--- + + + +{% row(style="center" margin="moderate" bgColor="#FCFBF9" bgStyle="hero") %} + +
+ +
+ +
+ +## DIGITAL FARMING {#text-8xl} + +### Become a digital farmer for the FreeFlow network,
add decentralized storage and compute capacity, earn rewards. + +
+ +
+ +![FF Logo](nodify_small.png#mx-auto) + + + + + +{% end %} + + + +{% row(bgColor="#F5F1ED" margin="moderate") %} + +![FreeFlow Life](be_the-internet.png) + +||| + +## BE THE
INTERNET + +By simply plugging in a FreeFlow Node, you can provide the services that the world’s largest tech companies provide to billions of users. + +
+ + + +{% end %} + +{% row(style="center" margin="moderate" padding="top" bgColor="#EAE8E3" bgStyle="hero") %} + +## THE FREEFLOW INTERNET
IS GROWING FAST + +FreeFlow extends and has been built on top of the [threefold.io](http://www.threefold.io) project. + +![FreeFlow map](map.png#mx-auto) + +{% end %} + +{% grid_stats() %} + +## THE FREEFLOW INTERNET
IS GROWING FAST + +{% end %} + +{% row(style="center" bgColor="#F2EDE8" padding="top") %} + +## EARN + +Provide the compute, storage and network capacity needed to
store data and run applications on the FreeFlow Network and start earning + +{% end %} + +{% earn_sec() %} +## THE FREEFLOW INTERNET
IS GROWING FAST + +{% end %} diff --git a/content/node/map.png b/content/node/map.png new file mode 100644 index 0000000..0302307 Binary files /dev/null and b/content/node/map.png differ diff --git a/content/node/nodify_small.png b/content/node/nodify_small.png new file mode 100644 index 0000000..380d748 Binary files /dev/null and b/content/node/nodify_small.png differ diff --git a/content/partials.md b/content/partials.md deleted file mode 100644 index 774f089..0000000 --- a/content/partials.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Partials" -description: "A better world is where we all have access to endless information and opportunities." -date: 2018-09-14T21:00:00-05:00 -updated: 2021-02-20T14:40:00-06:00 -draft: false -extra: - author: ---- - -### Header & Footer - -The header and footer are also created from markdown files in the content directory. In /content/header/\_index.md, each header item is bulleted. If a header item has a row beneath it, the row will be displayed as a sub-menu on click. Otherwise, if header item is a link, it will simply navigate to the linked page. - -The footer, likewise, is structured using the row shortcode. However the left section with page summary is built in. To edit the site destcription, one should edit the description (in the yaml header) of the footer md file. To edit the social links, simply add the social outlets name and your link into the socialLinks dictionary attribute on the yaml header of the footer/\_index.md. If a social icon exists for the social outlet, the link wiill be automatically rendered within the icon, displayed in the footer. diff --git a/content/resources.md b/content/resources.md deleted file mode 100644 index a5dcf18..0000000 --- a/content/resources.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -title: "Resources" -description: "A better world is where we all have access to endless information and opportunities." -date: 2018-09-14T21:00:00-05:00 -updated: 2021-02-20T14:40:00-06:00 -draft: false -template: page.html -extra: - author: ---- - -{% row() %} - -## Resources & References - -This project was started using a [Zola Tailwind starter set](https://github.com/brycewray/zola_twcss) -Some templates were created using [Tailwind UI](https://tailwindui.com) - -{% end %} diff --git a/content/shortcodes.md b/content/shortcodes.md deleted file mode 100644 index 4d23dc6..0000000 --- a/content/shortcodes.md +++ /dev/null @@ -1,147 +0,0 @@ ---- -title: "OurWorld" -description: "A better world is where we all have access to endless information and opportunities." -date: 2018-09-14T21:00:00-05:00 -updated: 2021-02-20T14:40:00-06:00 -draft: false -extra: - author: ---- - -{% row() %} - -# Shortcodes - -To give website creators freedom in styling without necessitating getting outside of the /content directory and in to the html files, the template has a few features. - -||| - -{% end %} - -{% row() %} - -### **row** - -
- -Markdown only goes vertical, but this shortcode allows one to add horizontal elements to their web pages. - -||| - -### **button** - -
- -A simple button shortcode that takes a body and displays it inside a button that is animated on hover. The button also is entirely clickable, and navigates to the first of if any children link elements. - -||| - -### **mermaid** - -
- -Simple mermaid shorcode that can be used to create mermaid diagrams in markdown. Also supported in row shortcode. - -[Mermaid]("https://mermaid-js.github.io/mermaid/#/") - -||| - -### **admonition** - -
- -Simple annotation shorcode that can be used to create annotation objects in markdown. - -||| - -### **space** - -
- -The space shortcode allows for some space. The size can be small, medium, and large. - -{% end %} - -{{ space(size="small") }} - -## Row - -Simply use the `{% row() %} {% end %}` syntax and place your content in between. You can create columns in your row by using three vertical bars. ( `|||` ) You can fill in your columns with regular markdown, but they can also be empty. For instance, in the top of this page, the title and description of shortcodes is in the left column while the right column is empty. - -The row shortcode can also take a bgPath parameter if you want your row to have a background. (see /content/careers/index.html) - -{{ space(size="small") }} - -{% row(bgColor="#ed991c") %} - -_Rows can also be colorful and full width!_ - -{% end %} - -{{space()}} - -## Admonition - -{% admonition() %} - -!!! note - -Did you know these could also be expandable? - -{% end %} - -{% admonition() %} - -!!! warning - -inline and inline end qualifiers do not work - -{% end %} - -{% admonition() %} - -!!! bug - -Markdown styling support _buggy_ - -{% end %} - -You can learn more about using admonitions here: -[Admonitions]("https://squidfunk.github.io/mkdocs-material/reference/admonitions/") - -{{space(size="small")}} - -## Mermaid - -
- -I wanted to use mermaid in this project, and it looks like this - -{{space(size="small")}} - -{% mermaid() %} - -classDiagram -Animal <|-- Duck -Animal <|-- Fish -Animal <|-- Zebra -Animal : +int age -Animal : +String gender -Animal: +isMammal() -Animal: +mate() -class Duck{ -+String beakColor -+swim() -+quack() -} -class Fish{ --int sizeInFeet --canEat() -} -class Zebra{ -+bool is_wild -+run() -} - -{% end %} -{{space()}} diff --git a/content/take-part/index.md b/content/take-part/index.md new file mode 100644 index 0000000..8047de9 --- /dev/null +++ b/content/take-part/index.md @@ -0,0 +1,21 @@ +--- +title: "Take Part" +description: "" +date: 2018-09-14 +updated: 2021-02-20 +draft: false +weight: 5 +--- +{% row(style="center" margin="moderate" padding="top") %} + +## JOIN THE
MOVEMENT + +### **FreeFlow invites you to your new
sovereign digital life.** + +{% end %} + +{% featured_stories() %} + +## Join The Movement + +{% end %} \ No newline at end of file diff --git a/content/take-part/takepart1.png b/content/take-part/takepart1.png new file mode 100644 index 0000000..4e0b6c9 Binary files /dev/null and b/content/take-part/takepart1.png differ diff --git a/content/take-part/takepart2.png b/content/take-part/takepart2.png new file mode 100644 index 0000000..cc42136 Binary files /dev/null and b/content/take-part/takepart2.png differ diff --git a/content/take-part/takepart3.png b/content/take-part/takepart3.png new file mode 100644 index 0000000..56de50f Binary files /dev/null and b/content/take-part/takepart3.png differ diff --git a/content/templates.md b/content/templates.md deleted file mode 100644 index 2c26545..0000000 --- a/content/templates.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "OurWorld" -description: "A better world is where we all have access to endless information and opportunities." -date: 2018-09-14T21:00:00-05:00 -updated: 2021-02-20T14:40:00-06:00 -draft: false -extra: - author: ---- - -### Section Templates - -#### Blog.html - -The blog page is created by default if there is a blog folder in the content directory. The blog page consists of a featured post row, a paginated grid of posts sorted by recency, and a side nav of post categories and featured posts. - -Blog posts can have categories, and can be filtered by said categries. To add a new category simply define the posts category in the yaml header of the blog's index.md file. See /content/blog/2019/01/post-3/index.md for example. The side navigation and category based listing will be automatically updated. - -To make a blog post featured, simply add an isFeatured attribute to the yaml header of the blog post. The most recent featured blog post wiil be displayed on the heading row of the blog page, and the rest will be displayed under featured posts in the side nav. See /content/blog/2019/03/post-5/index.md for implementation. - -#### Section.html - -The default section template, displays section body without styling (except for margins), and displays subpages of the section below. The subpages of the page are displayed as small summaries of pages with title, description, and categories, as rendered by partials/pageBox.html. The subpages are grouped by the taxonomy name passed in as the "group_pages_by" extra attribute, defined in the section's yaml header. - -### Creating custom pages - -To create your own page, simply create a markdown file following the examples provided above. -By default, the markdown file will be displayed plainly as it is. - -#### Page templates - -If you wish to display your markdown files in a specific page template, simply define the template you would like to use in the yaml header of your markdown file. For instance, the blogPage.html template displays blog posts with author info, date, side margins, and a hero image on top of the post. See any blog page in /content for implementation. diff --git a/content/twin/FF_life.png b/content/twin/FF_life.png new file mode 100644 index 0000000..02ad566 Binary files /dev/null and b/content/twin/FF_life.png differ diff --git a/content/twin/FF_twin.png b/content/twin/FF_twin.png new file mode 100644 index 0000000..01aff12 Binary files /dev/null and b/content/twin/FF_twin.png differ diff --git a/content/twin/FF_twin_experiences.png b/content/twin/FF_twin_experiences.png new file mode 100644 index 0000000..4dfd718 Binary files /dev/null and b/content/twin/FF_twin_experiences.png differ diff --git a/content/twin/FREEFLOW - WS - 2022.JUL Asset 43.jpg b/content/twin/FREEFLOW - WS - 2022.JUL Asset 43.jpg new file mode 100644 index 0000000..00edb99 Binary files /dev/null and b/content/twin/FREEFLOW - WS - 2022.JUL Asset 43.jpg differ diff --git a/content/twin/FREEFLOW - WS - 2022.JUL Asset 44.jpg b/content/twin/FREEFLOW - WS - 2022.JUL Asset 44.jpg new file mode 100644 index 0000000..390690a Binary files /dev/null and b/content/twin/FREEFLOW - WS - 2022.JUL Asset 44.jpg differ diff --git a/content/twin/F_sustainable.png b/content/twin/F_sustainable.png new file mode 100644 index 0000000..ce595b2 Binary files /dev/null and b/content/twin/F_sustainable.png differ diff --git a/content/twin/bg_home.jpg b/content/twin/bg_home.jpg new file mode 100644 index 0000000..ae62655 Binary files /dev/null and b/content/twin/bg_home.jpg differ diff --git a/content/twin/centralized.png b/content/twin/centralized.png new file mode 100644 index 0000000..c7c7940 Binary files /dev/null and b/content/twin/centralized.png differ diff --git a/content/twin/digital_life.png b/content/twin/digital_life.png new file mode 100644 index 0000000..8707098 Binary files /dev/null and b/content/twin/digital_life.png differ diff --git a/content/twin/index.md b/content/twin/index.md new file mode 100644 index 0000000..640fa16 --- /dev/null +++ b/content/twin/index.md @@ -0,0 +1,142 @@ +--- +title: "Twin" +description: "" +date: 2018-09-14 +updated: 2021-02-20 +draft: false +weight: 2 +--- + + + +{% row(style="center" bgPath="bg_home.jpg" bgStyle="hero") %} + +
+ + + +### THE FREEFLOW TWIN + +## own every
aspect of your
digital life + + + +The FreeFlow Twin is your digital avatar. + + + + +||| + +
+ +
+ +
+ + + +![FF TWIN](twin_header.png) + + + +{%end%} + + + + +{% row(style="center" bgColor="#F5F1ED" margin="wide" id="identity") %} + +![FF LIFE](twin3.png) + +||| + + +### **THE FREEFLOW KEY** + +## YOUR VALUABLE KEY
TO YOUR DIGITAL LIFE + +To get access to your FreeFlow Twin you need a unique NTF known as a FreeFlow Key (FFK), these keys are valuable and unique. + + +{% end %} + + + +{% row(style="center" margin="narrow" padding="top") %} + +## DO ANYTHING.
DO EVERYTHING. + +Your FreeFlow Twin comes with all required skills and capabilities. + +{% end %} + +{% fflow_skills() %} + +## fflow_skills + +{% end %} + +{% row(style="center" bgColor="#EAF3F7" margin="wide") %} + +![FF LIFE](twin5.png) + +||| + +## FREE FLOWING
EXPERIENCES + +Communicate, Explore and Collaborate with you in the center of your digital life. Your twin can be used as alternative to Whatsapp, Google Drive, Zoom, Facebook, Linkedin, ... + + + +{% end %} + +{% row(style="center" bgColor="#EFEDEB" margin="moderate") %} + +## THIS IS WHERE
DATA COMES
TOGETHER + +### Quantum Safe Data Storage System + +All your data is yours, can not be stolen, not corrupted nor lost.
Your data is usable over all your experiences. + +Your digital twin manages all of this for you. e.g. you can use same chat from your collaboration app or your metaverse exploration. + + + +||| + +![FF LIFE](twin8.png#fill) + +{% end %} + +{% row(bgColor="#f3fcf6" style="center" margin="moderate lean-right") %} + +## RIDICULOUSLY
GREEN. + +A typical FreeFlow user consumes less than 1 watt to live their entire digital life. + +This ultra-sustainable approach allows the system to easily scale without being a burden to the planet. + +||| + +![FreeFlow Benefits](twin7.png) + +{% end %} + + +{% row(style="center" bgColor="#EFEDEB" margin="moderate") %} + +![FF LIFE](digital_life.png) + +||| + +## LETS GET STARTED
OWN YOUR TWIN + +Become the center of your digital life and
Get your FreeFlow key now! + + + + + + +{% end %} \ No newline at end of file diff --git a/content/twin/twin3.png b/content/twin/twin3.png new file mode 100644 index 0000000..7b2ae19 Binary files /dev/null and b/content/twin/twin3.png differ diff --git a/content/twin/twin4.png b/content/twin/twin4.png new file mode 100644 index 0000000..964d1b6 Binary files /dev/null and b/content/twin/twin4.png differ diff --git a/content/twin/twin5.png b/content/twin/twin5.png new file mode 100644 index 0000000..d6d4187 Binary files /dev/null and b/content/twin/twin5.png differ diff --git a/content/twin/twin7.png b/content/twin/twin7.png new file mode 100644 index 0000000..6b03bfa Binary files /dev/null and b/content/twin/twin7.png differ diff --git a/content/twin/twin8.png b/content/twin/twin8.png new file mode 100644 index 0000000..70596f4 Binary files /dev/null and b/content/twin/twin8.png differ diff --git a/content/twin/twin_header.png b/content/twin/twin_header.png new file mode 100644 index 0000000..0bcae0e Binary files /dev/null and b/content/twin/twin_header.png differ diff --git a/content/vision/be_with_us.png b/content/vision/be_with_us.png new file mode 100644 index 0000000..236cd5c Binary files /dev/null and b/content/vision/be_with_us.png differ diff --git a/content/vision/bg_home.jpg b/content/vision/bg_home.jpg new file mode 100644 index 0000000..ae62655 Binary files /dev/null and b/content/vision/bg_home.jpg differ diff --git a/content/vision/index.md b/content/vision/index.md new file mode 100644 index 0000000..f43feb5 --- /dev/null +++ b/content/vision/index.md @@ -0,0 +1,110 @@ +--- +title: "Vision" +description: "" +date: 2018-09-14 +updated: 2021-02-20 +draft: false +weight: 1 +--- + + + +{% row(style="center" bgPath="bg_home.jpg" bgStyle="hero" margin="header") %} + +![FF TWIN](vision_header.png#medium#mx-auto) + +### provide a platform which allows us to restore the original intent of the Internet
where everyone is equal, communication is direct, secure and private
where you can trust the information presented
where everything is free without becoming a product. + + + + +{% end %} + + + +{% row(bgColor="#f0ece8" margin="moderate" padding="top" id="fflow_grid") %} + +![FF LIFE](vision2.png#fill) + +||| + +## IT STARTS WITH
THE FREEFLOW NETWORK + +![FF LIFE](vision3.png) + +People like you and me deploy FreeFlow Nodes to provide the required compute and storage capacity. + +Our unique operating system interconnects these nodes to create the FreeFlow Network, our own sovereign and decentralized Internet. + + + +{% end %} + + +{% fflow_grid() %} + +## fflow_grid + +{% end %} + +{% row(bgColor="#D9E7DF" margin="moderate" padding="top") %} + +## GET YOUR FREEFLOW TWIN +### YOU BECOME THE CENTER OF YOUR INTERNET. + +The FreeFlow Twin allows everyone to experience a more sustainable and safe Internet Life. + +By eliminating the need for centralized servers, the FreeFlow Twin allows you, the user, to be the only central point of data accumulation, communication and execution of digital capabilities. + + + +
+ +||| + +![FF LIFE](vision6.png#fill) + +{% end %} + + +{% fflow_twin() %} + +## fflow_twin + +{% end %} + +{% row(margin="moderate" bgColor="#F9F8F6" padding="top") %} + +![FF LIFE](vision8.png#fill) + +||| + +## EXPERIENCES
ARE BEING CREATED + +
+ +Numerous applications (experiences) will be available soon to users of the FreeFlow Network. + +Each experience is decentralized and allows users to be fully private and secure. + + + +{% end %} + +{% fflow_experiences() %} + +## fflow_experiences + +{% end %} + +{% row(style="center" margin="tight" bgColor="#f9f8f6") %} + +![FF LIFE](be_with_us.png#mx-auto) + +### Become part of this movement where we create
a new version of the internet with us in the center. + + + +
+ +{% end %} \ No newline at end of file diff --git a/content/vision/vision10.png b/content/vision/vision10.png new file mode 100644 index 0000000..ebc6226 Binary files /dev/null and b/content/vision/vision10.png differ diff --git a/content/vision/vision2.png b/content/vision/vision2.png new file mode 100644 index 0000000..67b3e1b Binary files /dev/null and b/content/vision/vision2.png differ diff --git a/content/vision/vision3.png b/content/vision/vision3.png new file mode 100644 index 0000000..d5b8d32 Binary files /dev/null and b/content/vision/vision3.png differ diff --git a/content/vision/vision5.png b/content/vision/vision5.png new file mode 100644 index 0000000..1a5f02e Binary files /dev/null and b/content/vision/vision5.png differ diff --git a/content/vision/vision6.png b/content/vision/vision6.png new file mode 100644 index 0000000..695958f Binary files /dev/null and b/content/vision/vision6.png differ diff --git a/content/vision/vision7.png b/content/vision/vision7.png new file mode 100644 index 0000000..c34fcfc Binary files /dev/null and b/content/vision/vision7.png differ diff --git a/content/vision/vision8.png b/content/vision/vision8.png new file mode 100644 index 0000000..ad5ba02 Binary files /dev/null and b/content/vision/vision8.png differ diff --git a/content/vision/vision_header.png b/content/vision/vision_header.png new file mode 100644 index 0000000..105dfd7 Binary files /dev/null and b/content/vision/vision_header.png differ diff --git a/css/index.css b/css/index.css index 573bbcc..7716e9a 100644 --- a/css/index.css +++ b/css/index.css @@ -33,6 +33,13 @@ src: url("../fonts/CercoDEMO-Light.otf") format("opentype"); } +@font-face { + font-family: "BebasNeue"; + font-weight: 600; + src: url("https://www2.freeflow.life/fonts/BebasNeue-Bold.ttf") format("opentype"); + src: url("../fonts/BebasNeue-Bold.ttf") format("opentype"); +} + * { font-family: "CercoDEMO", sans-serif; } @@ -59,7 +66,7 @@ img[src*="#md"] { } img[src*="#medium"] { - width: 400px; + width: 500px; } img[src*="#logo"] { @@ -72,6 +79,11 @@ img[src*="#large"] { margin: auto; } +img[src*="#fill"] { + width: 100%; + height: 100%; +} + img[src*="#tft_img"] { width: 150px; margin: 8px; @@ -81,27 +93,36 @@ img[src*="#tft_img"] { width: 200px; } +.advance{ + + font-family: "BebasNeue"; +} + @layer components { - h1 { - @apply text-4xl md:text-5xl lg:text-6xl leading-none font-normal; + h1, #h1 { + @apply text-4xl md:text-4xl lg:text-6xl leading-none font-normal my-4; + font-family: "BebasNeue", sans-serif } h1 strong { @apply font-medium; } h2 { - @apply text-3xl md:text-4xl lg:text-5xl xl:text-5xl font-normal leading-none; + @apply text-3xl md:text-4xl lg:text-5xl xl:text-8xl font-bold leading-none my-4; + font-family: "BebasNeue", sans-serif; + line-height: 0.8; + font-size:4.5rem } h2 strong { @apply font-medium; } h3 { - @apply text-xl md:text-2xl lg:text-3xl font-light; + @apply text-xl md:text-xl lg:text-2xl font-normal my-4; } h3 strong { @apply font-medium; } h4 { - @apply text-xl lg:text-2xl font-normal; + @apply text-xl lg:text-xl font-normal; } h5 { @apply text-xl lg:text-xl font-normal; @@ -110,14 +131,14 @@ img[src*="#tft_img"] { @apply text-lg not-italic font-normal my-1; } p { - @apply text-lg lg:text-xl leading-tight tracking-normal font-normal; + @apply text-base lg:text-xl leading-tight tracking-normal font-normal my-4; font-family: "CercoDEMO", sans-serif; } blockquote { @apply border-l-4 border-gray-400 mx-2 my-2 p-2; } li { - @apply text-lg lg:text-xl font-normal; + @apply text-lg lg:text-xl font-normal my-2; } li li { @apply text-sm lg:text-sm font-light; @@ -126,23 +147,43 @@ img[src*="#tft_img"] { @apply inline-block text-base lg:text-lg - px-12 + px-8 py-1 mr-5 - my-10 + my-4 border-2 shadow - capitalize; } } -button:hover :is(:where(a)) { - color: #c6f8ff; +button:hover { + color: #984210; } -button :is(:where(p)) { - color: #3d3b39; - font-weight: 400; +button { +font-weight: 500; +} + +.experience-btn { + border: none; + margin: 0; + padding: 0; + color: black; + padding: 20px; + width: fit-content; +} + +.experience-btn p { + @apply text-lg; +} + +.experience-btn:hover { + background: white; +} + + +.experience-btn h4 { + white-space: normal; } header .freeflow { @@ -172,25 +213,14 @@ header .freeflow div { } button { - background-color: #1a1a1a; - border-radius: 20px; - border: 2px solid white; + background: transparent; + color: black; + border-radius: 10px; + border: 2px solid black; box-shadow: none; font-size: 20px; } -button { - background-color: #1a1a1a; - border-radius: 10px; - border: none; - box-shadow: none; - font-size: 20px; - } - -button a { - color: white; -} - a { border: none; } @@ -339,6 +369,11 @@ header { .header:hover .back { transform: none; } +@media (max-width: 768px) { + h2 { + font-size: 4rem; + } +} @media (max-width: 640px) { .banner h2 { font: 600 7vw/10vw; @@ -358,4 +393,8 @@ header { .header { padding: 80px 0; } + + h2 { + font-size: 3rem; + } } diff --git a/css/layout.css b/css/layout.css index 678ebfa..e1ef0cb 100644 --- a/css/layout.css +++ b/css/layout.css @@ -7,10 +7,14 @@ main { #text-3xl { @apply text-3xl } #text-4xl { @apply text-4xl } #text-5xl { @apply text-5xl } -#text-6xl { @apply text-6xl } +#text-6xl { @apply xl:text-6xl lg:text-5xl md:text-4xl sm:text-3xl} #text-7xl { @apply text-7xl } #text-8xl { @apply text-8xl } +#text-9xl { + font-size: 8rem; +} +#xp-heading { @apply m-0 } /* html, body { @apply dark:bg-black; diff --git a/start.sh b/start.sh old mode 100644 new mode 100755 diff --git a/static/fonts/BebasNeue-Bold.ttf b/static/fonts/BebasNeue-Bold.ttf new file mode 100644 index 0000000..6fff605 Binary files /dev/null and b/static/fonts/BebasNeue-Bold.ttf differ diff --git a/static/fonts/CercoDEMO-Bold.otf b/static/fonts/CercoDEMO-Bold.otf new file mode 100644 index 0000000..37f437d Binary files /dev/null and b/static/fonts/CercoDEMO-Bold.otf differ diff --git a/static/fonts/CercoDEMO-Light.otf b/static/fonts/CercoDEMO-Light.otf new file mode 100644 index 0000000..0e74f02 Binary files /dev/null and b/static/fonts/CercoDEMO-Light.otf differ diff --git a/static/fonts/CercoDEMO-Medium.otf b/static/fonts/CercoDEMO-Medium.otf new file mode 100644 index 0000000..801f6fa Binary files /dev/null and b/static/fonts/CercoDEMO-Medium.otf differ diff --git a/static/images/1_plug_in.png b/static/images/1_plug_in.png new file mode 100644 index 0000000..18518de Binary files /dev/null and b/static/images/1_plug_in.png differ diff --git a/static/images/2_offer_capacity.png b/static/images/2_offer_capacity.png new file mode 100644 index 0000000..479d5a4 Binary files /dev/null and b/static/images/2_offer_capacity.png differ diff --git a/static/images/3_earn.png b/static/images/3_earn.png new file mode 100644 index 0000000..a6b7b71 Binary files /dev/null and b/static/images/3_earn.png differ diff --git a/static/images/capacity_icon.png b/static/images/capacity_icon.png new file mode 100644 index 0000000..3a5be51 Binary files /dev/null and b/static/images/capacity_icon.png differ diff --git a/static/images/chi.png b/static/images/chi.png new file mode 100644 index 0000000..8848c9a Binary files /dev/null and b/static/images/chi.png differ diff --git a/static/images/collaborate.png b/static/images/collaborate.png new file mode 100644 index 0000000..d40a0c4 Binary files /dev/null and b/static/images/collaborate.png differ diff --git a/static/images/collaboration.png b/static/images/collaboration.png new file mode 100644 index 0000000..c7759a9 Binary files /dev/null and b/static/images/collaboration.png differ diff --git a/static/images/create.png b/static/images/create.png new file mode 100644 index 0000000..26f6eab Binary files /dev/null and b/static/images/create.png differ diff --git a/static/images/develop.png b/static/images/develop.png new file mode 100644 index 0000000..70f0cf2 Binary files /dev/null and b/static/images/develop.png differ diff --git a/static/images/discover.png b/static/images/discover.png new file mode 100644 index 0000000..c420c7a Binary files /dev/null and b/static/images/discover.png differ diff --git a/static/images/education.png b/static/images/education.png new file mode 100644 index 0000000..8a60d9d Binary files /dev/null and b/static/images/education.png differ diff --git a/static/images/empowerment.png b/static/images/empowerment.png new file mode 100644 index 0000000..a0d1100 Binary files /dev/null and b/static/images/empowerment.png differ diff --git a/static/images/endless.png b/static/images/endless.png new file mode 100644 index 0000000..e497d32 Binary files /dev/null and b/static/images/endless.png differ diff --git a/static/images/exchange.png b/static/images/exchange.png new file mode 100644 index 0000000..12e998f Binary files /dev/null and b/static/images/exchange.png differ diff --git a/static/images/ff_logo.png b/static/images/ff_logo.png new file mode 100644 index 0000000..6c59f7d Binary files /dev/null and b/static/images/ff_logo.png differ diff --git a/static/images/ff_twin.png b/static/images/ff_twin.png new file mode 100644 index 0000000..496827b Binary files /dev/null and b/static/images/ff_twin.png differ diff --git a/static/images/footer_logo.png b/static/images/footer_logo.png new file mode 100644 index 0000000..ba390a5 Binary files /dev/null and b/static/images/footer_logo.png differ diff --git a/static/images/get_earn.png b/static/images/get_earn.png new file mode 100644 index 0000000..c76e52d Binary files /dev/null and b/static/images/get_earn.png differ diff --git a/static/images/key.png b/static/images/key.png new file mode 100644 index 0000000..78d45db Binary files /dev/null and b/static/images/key.png differ diff --git a/static/images/meet.png b/static/images/meet.png new file mode 100644 index 0000000..6da5fb5 Binary files /dev/null and b/static/images/meet.png differ diff --git a/static/images/node_icon.png b/static/images/node_icon.png new file mode 100644 index 0000000..a77f980 Binary files /dev/null and b/static/images/node_icon.png differ diff --git a/static/images/nomads_logo.png b/static/images/nomads_logo.png new file mode 100644 index 0000000..f90d393 Binary files /dev/null and b/static/images/nomads_logo.png differ diff --git a/static/images/organize.png b/static/images/organize.png new file mode 100644 index 0000000..62a5df0 Binary files /dev/null and b/static/images/organize.png differ diff --git a/static/images/own_data.png b/static/images/own_data.png new file mode 100644 index 0000000..5ca1541 Binary files /dev/null and b/static/images/own_data.png differ diff --git a/static/images/own_identy.png b/static/images/own_identy.png new file mode 100644 index 0000000..c5eb694 Binary files /dev/null and b/static/images/own_identy.png differ diff --git a/static/images/partake.png b/static/images/partake.png new file mode 100644 index 0000000..c83563a Binary files /dev/null and b/static/images/partake.png differ diff --git a/static/images/publish.png b/static/images/publish.png new file mode 100644 index 0000000..4c0a8c5 Binary files /dev/null and b/static/images/publish.png differ diff --git a/static/images/share.png b/static/images/share.png new file mode 100644 index 0000000..a6de9b8 Binary files /dev/null and b/static/images/share.png differ diff --git a/static/images/ston_bg.png b/static/images/ston_bg.png new file mode 100644 index 0000000..fffd6c0 Binary files /dev/null and b/static/images/ston_bg.png differ diff --git a/static/images/succeed.png b/static/images/succeed.png new file mode 100644 index 0000000..18188dc Binary files /dev/null and b/static/images/succeed.png differ diff --git a/tailwind.config.js b/tailwind.config.js index 7a6a263..2331478 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,15 +1,18 @@ /** @type {import('tailwindcss').Config} */ module.exports = { - content: ['./templates/**/*.html'], - safelist: [ - { - pattern: /(-|)(ml|mr)-(4|8|12|16|20|24|28)/, - variants: ['sm', 'md', 'lg', 'first', 'first:sm', 'first:md', 'first:lg', 'last', 'last:sm', 'last:md', 'last:lg'], - } - ], - theme: { - extend: {}, + content: ['./templates/**/*.html', './content/**/*.md'], + safelist: [ + { + pattern: /(-|)(ml|mr)-(4|8|12|16|20|24|28)/, + variants: ['sm', 'md', 'lg', 'first', 'first:sm', 'first:md', 'first:lg', 'last', 'last:sm', 'last:md', 'last:lg'], }, - plugins: [], + { + pattern: /(pt|pb)-(0)/, + variants: ['!', 'lg', 'first', 'first:sm', 'first:md', 'first:lg', 'last', 'last:sm', 'last:md', 'last:lg'], + } + ], + theme: { + extend: {}, + }, + plugins: [], } - \ No newline at end of file diff --git a/templates/_default/base.html b/templates/_default/base.html index 9816847..3518e02 100644 --- a/templates/_default/base.html +++ b/templates/_default/base.html @@ -5,7 +5,7 @@ {% include "partials/header.html" %} -
+
{% block content %}{% endblock %}
{% include "partials/footer.html" %} diff --git a/templates/partials/header.html b/templates/partials/header.html index e8daba4..5076287 100644 --- a/templates/partials/header.html +++ b/templates/partials/header.html @@ -123,6 +123,7 @@
\ No newline at end of file diff --git a/templates/shortcodes/row.html b/templates/shortcodes/row.html index 67961bb..9fa7561 100644 --- a/templates/shortcodes/row.html +++ b/templates/shortcodes/row.html @@ -35,7 +35,7 @@ Parameters: {% set columns = body | safe | markdown | split(pat="

|||

") %} -{% set row_class = "relative py-12 flex flex-col sm:grid sm:grid-cols-2 sm:gap-10 md:flex md:flex-row flex-wrap max-w-fit "%} +{% set row_class = "relative flex flex-col md:flex md:flex-row flex-wrap max-w-fit overflow-hidden"%} {% if 2 < columns | length %} @@ -44,66 +44,89 @@ Parameters: {% set row_class = row_class ~ " lg:items-center" %} {% endif %} -{% set col_class = "flex-1 mb-4 md:mb-12 lg:mb-0 " %} -{% set col_class = col_class ~ " lg:mx-8 " %} +{% set col_class = "flex-1 mb-4 md:mb-12 lg:mb-0 lg:mx-8 xl:mx-12 " %} + + +{% set row_id = '' %} + +{% if id %} +{% set row_id = id %} + +{% endif %} + + + +{% set padding_class = " py-8 md:py-8 lg:py-28" %} + +{% if padding %} + {% if "none" in padding %} + {% set padding_class = " py-0" %} + {% elif "top" in padding %} + {% set padding_class = " py-2 md:py-4 lg:pt-28" %} + {% elif "bottom" in padding %} + {% set padding_class = " py-2 md:py-4 lg:pb-28" %} + {% endif %} +{% endif %} + +{% if css %} + {% set padding_class = padding_class ~ " " ~ css %} +{% endif %} + +{% set row_class = row_class ~ padding_class %} -{% set margin_class = " mx-4 md:mx-16 lg:mx-24 " %} +{% set margin_class = " mx-4 md:mx-16 lg:mx-24" %} {% if margin %} {% if "none" in margin %} - {% set margin_class = " mx-0 " %} + {% set margin_class = " mx-0" %} {% elif "wide" in margin %} - {% set margin_class = " mx-4 sm:mx-8 md:mx-12 lg:mx-16 xl:mx-20 " %} + {% set margin_class = " mx-4 sm:mx-8 md:mx-12 lg:mx-16 xl:mx-20" %} {% elif "moderate" in margin %} - {% set margin_class = " mx-8 sm:mx-16 md:mx-24 lg:mx-28 " %} + {% set margin_class = " mx-8 sm:mx-16 md:mx-20 lg:mx-28" %} {% elif "narrow" in margin %} - {% set margin_class = " mx-12 sm:mx-20 md:mx-28 lg:mx-32 " %} + {% set margin_class = " mx-12 sm:mx-20 md:mx-28 lg:mx-40" %} {% elif "tight" in margin %} - {% set margin_class = " mx-20 sm:mx-32 md:mx-60 lg:mx-80 xl:mx-96 " %} + {% set margin_class = " mx-20 sm:mx-32 md:mx-40 lg:mx-80 xl:mx-96" %} + {% elif "header" in margin %} + {% set margin_class = " mx-12 sm:mx-20 md:mx-28 lg:mx-40 my-10" %} {% endif %} {% if "lean-left" in margin %} - {% set col_class = col_class ~ " lg:last:px-20 lg:max-w-[50%] lg:mx-0 " %} - {% set row_class = row_class ~ " !ml-0 sm:gap-0 " %} + {% set margin = margin_class | replace(from=" ", to=" first:")%} + {% set margin_left = margin | replace(from="mx", to="-ml") %} + {% set margin_right = margin | replace(from="mx", to="mr") %} + {% set col_class = col_class ~ " md:last:px-8 lg:last:px-20 lg:max-w-[50%] lg:mx-0 " ~ margin_left ~ margin_right %} + {% set row_class = row_class ~ " sm:gap-0 " %} {% elif "lean-right" in margin %} - {% set col_class = col_class ~ " lg:first:px-20 lg:max-w-[50%] lg:mx-0 " %} - {% set row_class = row_class ~ " !mr-0 sm:gap-0 " %} + {% set margin = margin_class | replace(from=" ", to=" last:")%} + {% set margin_left = margin | replace(from="mx", to="ml") %} + {% set margin_right = margin | replace(from="mx", to="-mr") %} + {% set col_class = col_class ~ " md:first:px-8 lg:first:px-20 lg:max-w-[50%] lg:mx-0 " ~ margin_left ~ margin_right %} + {% set row_class = row_class ~ " sm:gap-0 " %} {% endif %} {% endif %} +{% if css %} + {% set margin_class = margin_class ~ " " ~ css %} +{% endif %} + {% set row_class = row_class ~ margin_class %} {% if style %} {% if "center" in style %} - {% set row_class = row_class ~ " text-center items-center mx-auto justify-center " %} + {% set row_class = row_class ~ " text-center items-center mx-auto " %} {% set col_class = col_class ~ " flex-1 " %} {% endif %} - - {% if "lean" in style %} - {% if "lean-left" in style %} - {% set col_class = col_class ~ " last:px-20 lg:max-w-[50%] " %} - {% set row_class = row_class ~ " sm:gap-0 " %} - {% elif "lean-right" in style %} - {% set col_class = col_class ~ " first:px-20 lg:max-w-[50%] -mr-8 md:-mr-12 lg:-mr-16 xl:-mr-20 " %} - {% set row_class = row_class ~ " sm:gap-0 " %} - {% else %} - {% set row_class = row_class ~ " md:py-0 " %} - {% set col_class = col_class ~ " lg:m-0" %} - {% endif %} - {% else %} - {% set row_class = row_class ~ " w-screen " %} - {% endif %} - - {% if "between" in style %} - {% set row_class = row_class ~ " lg:max-w-6xl " %} - {% elif "moderate" in style %} - {% set row_class = row_class ~ " " %} - {% endif %} + {% if "between" in style %} + {% set row_class = row_class ~ " lg:max-w-6xl " %} + {% elif "moderate" in style %} + {% set row_class = row_class ~ " " %} + {% endif %} {% if "narrow" in style %} @@ -150,20 +173,20 @@ Parameters: {% if "full" in bgStyle %} {% set styles = styles ~ "height: -webkit-fill-available; height: 100vh;" %} {% elif "hero" in bgStyle %} - {% set div_class = div_class ~ " -mt-24 pt-24 " %} + {% set div_class = div_class ~ " -mt-24 pt-12 " %} {% endif %} {% endif %} {% if bgColor %} {% set styles = "background-color: " ~ bgColor ~ "; background-size: cover" %} - {% set row_class = row_class ~ " py-0 " %} + {% set row_class = row_class %} {% endif %} {% set no_margins = " -mx-8 md:-mx-12 lg:-mx-16 xl:-mx-20" %} -
-
+
+
{% for column in columns%}