What are **some** possible applications of Blockchain technology?

Are there only cryptocurrencies? Are there more possible applications? Let's take a look at three possible applications outside of finance here to give you a general idea of what is possible.

🧵🔽
0️⃣ Foreword

A blockchain can be used to solve a lot of problems. Cryptocurrencies are only one possible way of applying the technology but there is way more to it.

We can take a look at some possible applications and what they each provide to users.
1️⃣ Social Networks

The current generation of social networks is centralized. Whether we talk about Facebook, Twitter, Instagram, TikTok, or whatever else. They all own your account, your content, your followers, and everything else.
If one of them ever decides that you are not a "good member of the community", you're gone. When your content "violates the (community) guidelines", it's gone.

Sometimes such actions may be justified, but sometimes those actions are questionable.
In the end, there is nothing you can do about it other than to try and talk to them. More than often, this doesn't lead to the desired result.
You can, however, create a social network that is backed by a public blockchain. All your content and followers are simply an entry within the blocks of the chain.

When someone decides to follow you, it's an entry within the blockchain. If the same person wants to unfollow ...
... you again, it's also an entry. Your content? Persisted on the blockchain. All comments? Persisted. Likes? Persisted.

The only issue that still needs to be solved is more of a legal thing. Many countries require social networks to do some form of content moderation.
On a public blockchain, this is difficult to do. There somehow needs to be a mechanism to at least add new entries that delete "bad content" of other users.

It's however not an unsolvable problem and a pretty interesting one to tackle.
2️⃣ Music Royalties Tracking

Whether you like it or not. Every time you play a song, the artist of this song actually deserves to be paid some money. It's their work you enjoy.

In today's world, labels put a lot of work into enforcing their rights to be paid ...
... money each and every time a song of one of their artists is played. The sad thing about it is that those labels usually get a lot, if not the majority, of that money with only a fraction finding its way to the original creator. Artists simply don't have the power to ...
... do what their labels can do for them.

If we, however, put music on a blockchain and track its usage through the same chain, we could reliably tell how often a song was played, and then collect money based on the usage of that song.
This money would directly flow to the artist instead of their labels. Overall a way fairer system than the current one, eliminating the need for a middleman.
3️⃣ Your Personal Data Vault

You don't own your data. Whenever you give someone some of your data, they replicate it on one of their systems. Every service provider can do everything with it they'd like to. Yes, there are data protection laws, but let's be realistic here, ...
... how transparent do you think is it for regulators to look at the internals of each company and find out whether they are compliant with the law? My honest opinion: It's nearly impossible to check that reliably.
But what if you could put all your data into an encrypted vault that is stored on a blockchain? And what if you could grant AND revoke access to parts of your data whenever you feel like it?

That's actually possible with blockchain technology.
This type of application gives you full power over your data. When you don't feel like service provider A should use your data anymore, you can simply revoke access to it. When you sign up at service provider B, you can give them partial access to your data.
Another benefit of this particular application is that it can also possibly empower users to get paid for certain usage of their data. Sure, let those companies build ML models with your data, but not without paying you for it.
4️⃣ Conclusion

We only talked about three possible applications in this thread but there are so many more. It currently seems as if the range of application of a blockchain is only limited by our creativity and imagination.
What would you say, do you have a great idea you want to share? Feel free to!

• • •

Missing some Tweet in this thread? You can try to force a refresh
 

Keep Current with Oliver Jumpertz

Oliver Jumpertz Profile picture

Stay in touch and get notified when new unrolls are available from this author!

Read all threads

This Thread may be Removed Anytime!

PDF

Twitter may remove this content at anytime! Save it as PDF for later use!

Try unrolling a thread yourself!

how to unroll video
  1. Follow @ThreadReaderApp to mention us!

  2. From a Twitter thread mention us with a keyword "unroll"
@threadreaderapp unroll

Practice here first or read more on our help page!

More from @oliverjumpertz

18 Feb
Proof-Of-Work is the name of a cryptographic algorithm that is used for some blockchains when new blocks are to be appended to the chain.

Let's take a higher-level look at how this one works, shall we?

🧵🔽
1️⃣ The Basics

This algorithm creates a system in which one party (the prover) has to prove to one or multiple other parties (the verifiers) that they put in a certain amount of work for some purpose.
The work the prover has to put in is moderately hard to very hard, while the verifiers can pretty easily check whether the proof is correct. This creates an asymmetric system.

The original idea was to create protection against DDoS attacks and spam.
Read 18 tweets
16 Feb
What actually is a Blockchain?

Bitcoin is breaking record after record, but there must be more to the technology than just crypto, or not? Well, we can take a look at the underlying technology first to understand what it actually provides to us.

🧵⬇️
1️⃣ Foreword

This will be a high-level overview to give you an intro to blockchain technology. With further threads, we will dive deeper and deeper, so don't be sad if something you really looked forward to isn't included as detailed as you would have wished for, yet!
2️⃣ Client-Server Architecture

Before we dive into blockchain technology, we should take a look at how most of the internet works. We need this to understand the fundamental differences between a traditional model and the change blockchain technology brings.
Read 29 tweets
11 Feb
AWS Lambda is an awesome offering. You provide the code, AWS handles the infrastructure and execution for you.

But where is your code actually executed? How does AWS do it?

I recently tried to find it out for myself, and this thread is the result of what I learned!

🧵⏬
1️⃣ Thinking about Lambda

We know that we can write a script that looks like below, and then upload it to AWS while they take care of everything else.

And from simply looking at the code, it doesn't look like the usual API method we'd implement in Express.
We're exporting a function, so something else must take our code, import it, and then handle everything else. 🤔

Conclusion number one:
Something must run our code.
Read 29 tweets
6 Feb
Here are _some_ of the most essential git operations you will need when working as a developer.

🧵🔽
1️⃣ Create A New Repository

This is the most basic command you'll need. When you start a repository locally, your start with git init. # Initialize a new repository git init
2️⃣ Clone A Repository

You can clone a remote repository to get a local copy of it. Your local repository is connected to the remote one so you can pull in changes and push yours to the remote. # Copies the repository from the remote location and links y
Read 15 tweets
4 Feb
Want to optimize your LinkedIn profile and boost your chance of being contacted by recruiters?

Here are some super effective but still relatively easy to implement tips for you.

🧵⬇️
1️⃣ Optimize Your Headline

Recruiters search for keywords. These do not only apply to your skills but also to your headline.

If you want that new job, add there what you want to do, not what you currently are.
Here is an example:

"Frontend Engineer / 5 years of (professional) experience / TypeScript, React, Next.js, Serverless"

This gives recruiters everything they'd want at first sight. What you are (or want to be), your experience, and some key skills.
Read 16 tweets
4 Feb
Let's take a look at the Jamstack,

the architectural approach that makes your websites faster, safer, cheaper, and all that with a better developer experience.

🧵🔽
1️⃣ What Is It?

The Jamstack is an architectural approach.

The letters "J A M" are an acronym and actually stand for:

▶️ JavaScript
▶️ APIs
▶️ Markup
🟢 JavaScript

JavaScript is the universal runtime of the web. Every browser can handle JavaScript and it's the language that brings interactivity to every modern-day browser.

JavaScript can either be written directly or act as a compile target.
Read 25 tweets

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3/month or $30/year) and get exclusive features!

Become Premium

Too expensive? Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal Become our Patreon

Thank you for your support!

Follow Us on Twitter!