diff --git a/content/.DS_Store b/content/.DS_Store deleted file mode 100644 index 97b277ef..00000000 Binary files a/content/.DS_Store and /dev/null differ diff --git a/content/about/index.md b/content/about/index.md deleted file mode 100644 index bc1994e3..00000000 --- a/content/about/index.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "About" -date: 2022-06-13T20:55:37+01:00 -draft: false - -showDate : false -showDateUpdated : false -showHeadingAnchors : false -showPagination : false -showReadingTime : false -showTableOfContents : true -showTaxonomies : false -showWordCount : false -showSummary : false -sharingLinks : false -showEdit: false - ---- - -I’ve been building and shipping products across multiple roles and industries, from video streaming applications to API platforms. As a product person, my main goal is to understand my users and their specific needs, in order to deliver a product that truly improves their lives. - -I’ve worked for several years in big companies and recently decided to trade that for the opportunity of working in smaller teams. Definitely prefer the latter where one can succeed/fail faster, learn faster, and overall have a way bigger impact. - -Currently, I am focused on improving the lives of developers worldwide. I’m trying to write more about my previous experiences / random thoughts and would love to gather your feedback on it. I also love to dedicate my time to helping and mentoring other PMs or people that want to get into product. - -Recently I’ve also joined AWS Loft to help Startups and their founders with their product strategy. - -Feel free to reach out. \ No newline at end of file diff --git a/content/music/.DS_Store b/content/music/.DS_Store deleted file mode 100644 index 5008ddfc..00000000 Binary files a/content/music/.DS_Store and /dev/null differ diff --git a/content/music/addifferentkindoftango.jpg b/content/music/addifferentkindoftango.jpg deleted file mode 100644 index b833bf9c..00000000 Binary files a/content/music/addifferentkindoftango.jpg and /dev/null differ diff --git a/content/music/anotherbeginning.jpg b/content/music/anotherbeginning.jpg deleted file mode 100644 index 2bd0515a..00000000 Binary files a/content/music/anotherbeginning.jpg and /dev/null differ diff --git a/content/music/apple.png b/content/music/apple.png deleted file mode 100644 index cdad1d18..00000000 Binary files a/content/music/apple.png and /dev/null differ diff --git a/content/music/bellucciscatwalk.jpg b/content/music/bellucciscatwalk.jpg deleted file mode 100644 index f7a7ec26..00000000 Binary files a/content/music/bellucciscatwalk.jpg and /dev/null differ diff --git a/content/music/blueingreen.jpg b/content/music/blueingreen.jpg deleted file mode 100644 index 042e0fc2..00000000 Binary files a/content/music/blueingreen.jpg and /dev/null differ diff --git a/content/music/burka.jpg b/content/music/burka.jpg deleted file mode 100644 index 05e78368..00000000 Binary files a/content/music/burka.jpg and /dev/null differ diff --git a/content/music/dreamingincolor.jpg b/content/music/dreamingincolor.jpg deleted file mode 100644 index 421c6b7e..00000000 Binary files a/content/music/dreamingincolor.jpg and /dev/null differ diff --git a/content/music/index.md b/content/music/index.md deleted file mode 100644 index 8e096c0d..00000000 --- a/content/music/index.md +++ /dev/null @@ -1,155 +0,0 @@ ---- -title: "Music" -date: 2022-06-13T20:55:37+01:00 -draft: false - -showDate : false -showDateUpdated : false -showHeadingAnchors : false -showPagination : false -showReadingTime : false -showTableOfContents : true -showTaxonomies : false -showWordCount : false -showSummary : false -sharingLinks : false -showEdit: false - -#groupByYear : false - ---- - -I started learning music by myself at the age of 14. I play several instruments and I love to record, compose and produce my own music. I've been releasing my songs under the name "Doppler Effect" in the usual streaming services. Here are the links if you want to listen. - -
config/_default/
which will contain all the important configuration files for Hugo and Congo.
-
-Please run the following commands in order:
-
-```
-mkdir -p config/_default
-rm config.toml
-cp themes/congo/config/_default/*.toml config/_default/
-echo 'theme = "congo"' | cat - config/_default/config.toml > temp && mv temp config/_default/config.toml
-```
-
-Congratulations, you should have your site up and running now. Let's try it out by running Hugo's debug server:
-
-```
-hugo server -D
-```
-
-Please open your favorite browser and navigate to localhost:1313 to see your page.
-
-
-
-You should see something similar to the image above. Doesn’t look that exciting, does it? Let’s configure the theme in the next sections and learn how to create your first article.
-
-
-## Configure Theme
-
-Now I’ll be covering how to change the look and feel of your website, add some personal information, and activate the dark mode toggle (aka the most important feature in any website these days).
-
-{{< alert >}}
-A note, I am covering a very simple configuration for this theme please check Congo’s theme documentation to understand everything you can do with this theme.
-{{< /alert >}}
-
-### Profile picture
-
-Let’s start by adding a profile picture to your site. Create a folder called “assets” at the root of your project. Choose a profile picture and place it inside the assets folder. The rest of the guide will assume the final picture is named "profile.jpg", so please rename your picture or take that into account when configuring some of the other files.
-
-
-
-
-
-### Configuration Files
-
-Let’s open a couple of configuration files and start updating them. All the files we are going to change are inside config/_default/
folder.
-
-#### config.toml
-
-Uncomment the baseURL
parameter and replace it with the final domain of your website. This value will be used to create the robots.txt file for any search engines to successfully crawl and index your website.
-
-
-
-{{< alert >}}
-Note: if you want to configure Google Analytics please add the following line with your id to this file `googleAnalytics = "G-XXXXXX"`
-
-{{ alert >}}
-
-#### languages.en.toml
-
-This file will drive the main information for the website and the author of the page (you). Replace the title
and description
for the ones you want for your page, these values will drive the HTML title and description tags.
-
-Within the [author]
block you can update the details that you wish to highlight in your profile. The bare minimum would be name
, image
, headline
, and links
. For the links
parameter don't forget to uncomment the last line of the file as this is a json array. Update each entry with your personal links.
-
-
-
-#### params.toml
-
-This file defines much of the overall behavior across the entire framework. For this tutorial I changed some of the overall values and one for the homepage, if you want to learn more about the other available configurations please consult Congo’s theme documentation.
-
-I've changed colorScheme
to "ocean" which changes the global UI theme. Congo defines a three-color palette that is used throughout the theme. Valid values are congo (default), avocado, ocean, fire, and slate. Although these are the default schemes, you can also create your own. Refer to the theme's main documentation to learn how.
-
-Activated showAppearanceSwitcher
to enable the light/dark mode toggle. Activated enableSearch
which indexes all future posts each time you build the site and provides a simple search feature. I've also changed the value of layout
, inside [homepage]
, to "profile" which changes the way the landing page is rendered. Finally, the last interesting value here is showRecent
, which when turned on shows the recent posts on the homepage.
-
-
-
-### Final
-
-Let’s see how it looks, run the Hugo again:
-
-```
-hugo server -D
-```
-
-And navigate to localhost:1313 you should see something similar to the page below.
-
-
-
-Congrats it’s looking great, let’s learn how to generate your first articles.
-
-## How to generate articles
-
-Hugo provides some tools to generate your articles (markdown files) with a base set of tags already in them. Run the following command to create your first post
-
-```
-hugo new posts/my-first-post.md
-```
-
-replace the contents of the file with the following:
-
-```
----
-title: "My Published Post"
-date: 2022-06-19T20:10:29Z
-draft: false
-categories: ["published", "test"]
-tags: ["first", "awesome"]
----
-
-This is my first blog post
-```
-
-This just created your first blog post. We've added a couple of categories and tags, which will be indexed by Hugo during build time. These tags will be used to create the Categories and Tags section of the website automatically for you. Notice that I've changed the draft
to false to simulate a published post.
-
-Run the following command to create your second post
-
-```
-hugo new posts/my-draft-post.md
-```
-and replace the contents of that file with the following:
-
-```markdown
----
-title: "My Draft Post"
-date: 2022-06-19T20:20:39Z
-draft: true
-categories: ["draft", "test"]
-tags: ["second", "awesome"]
----
-
-This is my second blog post
-```
-For the second post, I've left the draft
parameter true to simulate a draft post.
-
-Hugo automatically hides draft posts from the final site generation. You can keep working on articles leaving the draft label true and they will be ignored by the engine. If you want to run in DEBUG mode just use the command:
-
-```
-hugo server -D
-```
-
-If you go to the posts on the site you should be able to see both entries. If you then run the server in normal mode the draft articles will disappear. You can use the command below to do so:
-
-
-```
-hugo server
-```
-
-You can use this command to test the final version of the website or an article before generating the final build. When you're ready just use the command 'Hugo' to generate the final website inside the /public folder.
-
-```
-hugo
-```
-
-All files are written in Markdown which Hugo then uses to generate the final pages. I'll not teach you how to write markdown files in this guide but I can recommend this "getting started" tutorial and this "cheat sheet" to get you started.
-
-## Deploy
-
-Ok, you’ve configured your website and created a couple of articles, but we still need to deploy it somewhere. As I mentioned before I chose Firebase for this guide, even though I know that it offers much more than just a simple hosting service it allows me to host my site for free without much of a hassle.
-
-### Create Firebase Project
-
-Let’s start by going to https://firebase.google.com and creating an account. Once that is done you can create a project for free. The process should be straightforward and when you finish you should be in Firebase's project dashboard.
-
-### Setup Firebase
-
-Now you can go back to your environment which already has Firebase CLI tools installed and ready to go. Let’s start by authenticating using:
-
-```
-firebase login
-```
-Once you are successfully logged in you need to initiate the project configurations for firebase. For that please use:
-
-```
-firebase init
-```
-
-The tool will offer you a wide variety of different options in order to configure your Firebase project. For now, we just want to configure hosting. If you are using GitHub, you might want to consider configuring GitHub action deploys which can automatically build and deploy your site every time there is a push to a specific branch or a merged pull request.
-
-
-
-Choose the Firebase project created before as the hosting destination. And select the configurations you wish for the deployment process. The important one here is the folder where the final files to the server will be placed and this is the public
folder. For the other parameters you experiment with what better matches your use-case, the image below shows you what I picked (*Note: for this tutorial I didn't configure GitHub actions but I am using that in my real setup*).
-
-
-
-### Deploy
-
-Ok, now for the long and boring process of deployment… joking! Once you are ready and have all your files generated by the hugo
command in the public folder just use the following command to deploy:
-
-```
-firebase deploy
-```
-
-
-
-The process should take a couple of seconds and there you go your site is deployed. The final line of the CLI tool will give you a URL to see for yourself, otherwise, you can explore your Firebase dashboard hosting section which will have more information regarding the deployment.
-
-
-
-## Conclusion
-
-By now you should have a simple version of your website which you can configure to your needs. The main advantage of this solution is that it is flexible and extensible to a variety of different needs especially if you take the time to explore Hugo's theme catalog. True that it might require some coding to implement complex but I would guess that this solves the problem for almost everyone.
-
-Above all, it’s a completely free solution if you're looking to start and can't (or don't want to) spend money. Hope this guide helps you, feel free to share it with your network and give me feedback so that I can make it better over time.
-
-## Resources
-
-- GitHub Repo for development environment
-- GitHub Repo for base Hugo and Congo configuration
-- GitHub Repo for base image
-- Docker Hub image URL
-- Hugo\'s Documentation
-- Congo\'s Documentation
-- Firebase Documentation
-- Markdown Guide
-- Markdown Getting Started"
-- Markdown Cheat Sheet
\ No newline at end of file
diff --git a/content/posts/202206-homepage-guide/setup/extension.png b/content/posts/202206-homepage-guide/setup/extension.png
deleted file mode 100644
index c9af7e11..00000000
Binary files a/content/posts/202206-homepage-guide/setup/extension.png and /dev/null differ
diff --git a/content/posts/202206-homepage-guide/setup/folder.png b/content/posts/202206-homepage-guide/setup/folder.png
deleted file mode 100644
index 3363b324..00000000
Binary files a/content/posts/202206-homepage-guide/setup/folder.png and /dev/null differ
diff --git a/content/posts/202206-homepage-guide/setup/imagebuild.png b/content/posts/202206-homepage-guide/setup/imagebuild.png
deleted file mode 100644
index d8e2daa0..00000000
Binary files a/content/posts/202206-homepage-guide/setup/imagebuild.png and /dev/null differ
diff --git a/content/posts/202206-homepage-guide/setup/newterminal.png b/content/posts/202206-homepage-guide/setup/newterminal.png
deleted file mode 100644
index 272a68ba..00000000
Binary files a/content/posts/202206-homepage-guide/setup/newterminal.png and /dev/null differ
diff --git a/content/posts/202206-homepage-guide/setup/selectfolder.png b/content/posts/202206-homepage-guide/setup/selectfolder.png
deleted file mode 100644
index 93264768..00000000
Binary files a/content/posts/202206-homepage-guide/setup/selectfolder.png and /dev/null differ
diff --git a/content/posts/202206-homepage-guide/theme/vanilla.png b/content/posts/202206-homepage-guide/theme/vanilla.png
deleted file mode 100644
index 1963ed59..00000000
Binary files a/content/posts/202206-homepage-guide/theme/vanilla.png and /dev/null differ
diff --git a/content/posts/202206-mentorcruise-interview/featured.jpeg b/content/posts/202206-mentorcruise-interview/featured.jpeg
deleted file mode 100644
index d2a949da..00000000
Binary files a/content/posts/202206-mentorcruise-interview/featured.jpeg and /dev/null differ
diff --git a/content/posts/202206-mentorcruise-interview/index.md b/content/posts/202206-mentorcruise-interview/index.md
deleted file mode 100644
index b7bb5975..00000000
--- a/content/posts/202206-mentorcruise-interview/index.md
+++ /dev/null
@@ -1,42 +0,0 @@
----
-title: "Nuno Coração – Meet the Mentor"
-description: "Nuno Coração is one of our professional mentors on MentorCruise and works as Staff Product Manager at Docker."
-summary: "Nuno Coração is one of our professional mentors on MentorCruise and works as Staff Product Manager at Docker."
-categories: ["Product", "Mentorship", "Interview"]
-tags: ["Product", "Mentorship", "Interview", "Mentorcruise"]
-externalUrl: "https://mentorcruise.com/blog/nuno-coracao-meet-the-mentor-01006/"
-showSummary: true
-date: 2022-06-26
-draft: false
-showReadingTime: false
----
-
-{{< alert >}}
-This article was originally published externally, read the original here.
-{{ alert >}}
-
-
-I’ve been building and shipping products across multiple roles and industries, from video streaming applications to API platforms.
-
-# Why did you decide to become a mentor?
-Throughout my career, I was fortunate enough to find (or be found by) amazing mentors that helped me in several different ways. Some provided advice for professional decisions and career management, others access to opportunities, and some just took me along for the ride to “watch & learn”. All of those contributed so much to make me a better professional and gave me some really interesting opportunities in my career. In the last few years, I started being a mentor myself and I am really enjoying the experience of helping others grow and fulfill their career dreams.
-
-# What benefits did you gain from working with mentors early on?
-The main benefit was the ability to tap into someone else’s experience and seniority and learn from their past experiences. It allowed me to get a glimpse of the future and accelerate some career milestones I wanted for myself. As an example, I never had the dream of working or living abroad, but after talking about it with my mentors (that had that experience) I learned so much about what it could bring me professionally and personally that when that opportunity came I was better prepared to make the right decision. Overall, it gave me the chance to learn how to become a better professional by watching how my mentors did it on a professional setting. Moreover, it gave me the chance to manage my career by tapping into their advice and experience in order to achieve my goals.
-
-# How did you get your career start?
-My career started as a trainee in a telco company here in Portugal. I just left university and a junior researcher position to become a solutions architect for the TV department. It was amazing to get the first job with such responsibility and exposure to the entire organization. However, I have to say that the best part of that role was my manager who made an extra effort to coach and teach me so many invaluable lessons that I do still remember after so many years.
-
-> Good advice is not “one-size-fits-all”
-
-# How do you usually set up mentorships?
-I usually like to understand what are the person’s goals for the mentorship and depending on those design a specific plan. Independently of the goal, I aim to have a weekly 1:1 with each mentee to catch up on progress and see if there is anything that I can do to help with. I also like to have a log file in docs to track questions/actions/open points. What we do within this framework highly depends on the goals themselves. For example, if the mentee is looking for help in switching into a product role, I might help review the CV and LinkedIn profile and prepare them for interviews with material and mock sessions.
-
-# What benefit can you provide to mentees over self-studying?
-As with my own personal experience, the best benefit I can provide my mentees is to allow them to tap into my experiences, and the rational behind them, so that they can learn from it. I don’t mean to say they should do exactly as I did, no advice comes in a “one-size-fits-all” package. Moreover, I definitely made some mistakes along the way. But with that insight, each person can decide what resonates with them and what doesn’t in order to make their own decisions. In summary, I’m here to help with product topics and career management, specially people that want to get into product and don’t know where to start.
-
-# What’s been your favourite mentorship story so far?
-In one of my previous role I was managing two young professionals that joined the product team as QA Engineers. Both of them wanted to become Product Managers and were looking for ways to make that move happen. During one year I made an extra effort to share my experiences, give advice, and try to get them as many opportunities to have a “taste” of what PM is by getting them into meetings and brainstormings with my dev teams, shadow customer calls, attend meetings with management, etc. I was really happy the day I was able to sponsor both of them into their first PM roles still within the company. Since then it has been even more fulfilling to watch them grow and have their own successful careers in Product.
-
-# What are you getting out of being a mentor?
-From my experience, having access to mentors, allowed me to grow and improve at a professional and personal level faster than by myself. At this stage in my life, I feel like I’ve experienced enough to have something valuable to share with others and maybe help them achieve their goals. Ultimately, that is what I am aiming to get out of this experience, to be able to have the same impact as a mentor as my mentors had on me.
\ No newline at end of file
diff --git a/content/posts/202207-docker-bulk-add/Old.jpeg b/content/posts/202207-docker-bulk-add/Old.jpeg
deleted file mode 100644
index cd52db83..00000000
Binary files a/content/posts/202207-docker-bulk-add/Old.jpeg and /dev/null differ
diff --git a/content/posts/202207-docker-bulk-add/featured.jpeg b/content/posts/202207-docker-bulk-add/featured.jpeg
deleted file mode 100644
index 36d407e7..00000000
Binary files a/content/posts/202207-docker-bulk-add/featured.jpeg and /dev/null differ
diff --git a/content/posts/202207-docker-bulk-add/image1.webp b/content/posts/202207-docker-bulk-add/image1.webp
deleted file mode 100644
index 885de5c7..00000000
Binary files a/content/posts/202207-docker-bulk-add/image1.webp and /dev/null differ
diff --git a/content/posts/202207-docker-bulk-add/image2.png.webp b/content/posts/202207-docker-bulk-add/image2.png.webp
deleted file mode 100644
index 9bc587ac..00000000
Binary files a/content/posts/202207-docker-bulk-add/image2.png.webp and /dev/null differ
diff --git a/content/posts/202207-docker-bulk-add/index.md b/content/posts/202207-docker-bulk-add/index.md
deleted file mode 100644
index c9f5a795..00000000
--- a/content/posts/202207-docker-bulk-add/index.md
+++ /dev/null
@@ -1,32 +0,0 @@
----
-title: "Bulk User Add for Docker Business and Teams"
-description: "Forget manually inviting team members to Docker Desktop. With Bulk Add for Docker Business, invite your entire team with a CSV file or their Docker IDs!"
-summary: "Forget manually inviting team members to Docker Desktop. With Bulk Add for Docker Business, invite your entire team with a CSV file or their Docker IDs!"
-categories: ["Product", "Docker"]
-tags: ["Product", "Docker", "Feature", "Docker Hub"]
-externalUrl: "https://www.docker.com/blog/bulk-user-add-for-docker-business-and-teams/"
-showSummary: true
-date: 2022-07-27
-draft: false
-showReadingTime: false
----
-
-{{< alert >}}
-This article was originally published externally, read the original here.
-{{ alert >}}
-
-Docker’s goal is to create a world-class product experience for our customers. We want to build a robust product that will help all teams achieve their goals. In line with that, we’ve tried to simplify the process of onboarding your team into the Docker ecosystem with our Bulk User Add feature for Docker Business and Docker Team subscriptions.
-
-You can invite your team to their accounts by uploading a file including their email addresses to Docker Hub. The CSV file can either be a file you create for this specific purpose, or one that’s extracted from another in-house system. The sole requirement is that the file contains a column with the email addresses of the users that will be invited into Docker. Once the CSV file is uploaded using Docker Hub, each team member in the file will receive an invitation to use their account.
-
-
-
-We’ve also updated Docker Hub’s web interface to add multiple members at once. We hope this is useful for smaller teams that can just copy and paste a list of emails directly in the web interface and onboard everyone they need. Once your team is invited, you can see both the pending and accepted invites through Docker Hub.
-
-
-
-Bulk User Add can be used without needing to have SSO setup for your organization. This feature allows you to get the most out of your Docker Team or Business subscription, and it greatly simplifies the onboarding process.
-
-Learn more about the feature on our docs page, and sign in to your Docker Hub account to try it for yourself.
-
-And if you have any questions or would like to discuss this feature, please attend our upcoming
\ No newline at end of file
diff --git a/content/posts/202209-streaming-wars/feature.jpg b/content/posts/202209-streaming-wars/feature.jpg
deleted file mode 100644
index ea021bbc..00000000
Binary files a/content/posts/202209-streaming-wars/feature.jpg and /dev/null differ
diff --git a/content/posts/202209-streaming-wars/index.md b/content/posts/202209-streaming-wars/index.md
deleted file mode 100644
index 038f4ca0..00000000
--- a/content/posts/202209-streaming-wars/index.md
+++ /dev/null
@@ -1,61 +0,0 @@
----
-title: "Streaming Wars and What Comes After… "
-description: "Last July and for the first time ever, streaming viewership surpassed cable. The streaming wars began around 2010 when Netflix introduced their first streaming-only plan with no DVD rentals, other players laughed at the time… little did they know. A decade after, there’s a multitude of streaming services available for mainstream entertainment and also for specific niches. What will happen next?"
-summary: "Last July and for the first time ever, streaming viewership surpassed cable. The streaming wars began around 2010 when Netflix introduced their first streaming-only plan with no DVD rentals, other players laughed at the time… little did they know. A decade after, there’s a multitude of streaming services available for mainstream entertainment and also for specific niches. What will happen next?"
-categories: ["Product","Strategy",]
-tags: ["Streaming","Wars","Product","Strategy","Netflix","Disney","Amazon","Apple","Prediction"]
-#externalUrl: ""
-showSummary: true
-date: 2022-09-04
-draft: false
----
-
-
-
-Last July and for the first time ever, streaming viewership surpassed cable. The streaming wars began around 2010 when Netflix introduced their first streaming-only plan with no DVD rentals, other players (cough, cough… Blockbuster) laughed at the time… little did they know. A decade after, there’s a multitude of streaming services available for mainstream entertainment and also for specific niches (e.g., Curiosity Stream - documentaries, Crunchyroll - anime, etc.).
-
-
-## How Did We Get Here?
-This question could turn into its series of posts, aka a very long and boring answer. The short version, Netflix hit gold when they launched their streaming-only subscription service that allowed customers to watch what they wanted when they wanted. This was a massive shift from the linear TV experience where you either had to wait in front of the TV to watch your favorite show, record and watch it later, or wait for a rerun (_fun fact: there was another option to set a reminder to watch your shows :D_). Not only did Netflix launch a way better product to **consume** content, but it also changed the way users **discovered** new series and movies by recommending new shows based on previous history. Users flocked to this service, which was significantly better than the alternatives and also cheaper than the average cable subscription at the time (i.e., _cutting the chord_).
-
-
-
-
-After Netflix showed everyone how people really wanted to consume content, several players were interested in replicating that model themselves. Traditional content producers (e.g., HBO, Disney, etc.) saw a way to control their distribution channel and get a direct relationship with their customers. Other players, like Apple and Amazon, saw a good opportunity to expand their _service subscription_ strategy by offering yet-another-service to their user-base. This year, most of these services reached hundreds of millions of paying users, and the competition in this industry was never been this strong.
-
-## Massive Investment in Content
-
-
-
-One of the strong signals of this competition is the huge amounts of money being spent in content production. HBO just released _House of the Dragon_, a prequel to their hit series _Game of Thrones_. The first season had an estimated production cost of just under $20 million per episode, making the 10 episode run cost a full $200 million. In comparison, _Game of Thrones_ cost around $100 million per season, with the average cost per episode starting around $6 million in season 1 and going up to $15 million in the final season. This means HBO just invested roughly double what it did in the last season of _Game of Thrones_.
-
-Amazon, coincidentally, also decided to launch its _prequel_ of a super-loved property in the fantasy drama space, _Lord of the Rings_. Investment in the new series, called _Lord of the Rings: The Rings of Power_, is estimated to be around $1 billion. Amazon bought the franchise rights to _Lord of the Rings_ for $250 million and invested $465 million to produce the eight-episode first season of the show. In comparison, the entire trilogy of the _Lord of the Rings_ was produced for roughly $300 million, $100 million for each movie.
-
-Netflix has been increasing its costs with content production in the last years, arriving at $17 billion this year. Disney is set to spend even more than that, $32 billion (even after cuts). In a different space, big tech companies are also getting into _live sports_. All of this spending creates a super competitive environment across all services, which is not necessarily in the best interest of the viewers.
-
-## Quality is Decreasing
-
-
-
-One could argue that all the investment and all the money being thrown at content production will bring the golden age of entertainment. However, as most big investments, they are made to make someone money. In the entertainment industry, one of the ways to reduce risk is to invest in properties that have already proven their value in opposition to new Intellectual Property (IP).
-
-The levels of “content pumping” that we are seeing nowadays lead to a massive decrease in quality, and worse, viewer fatigue. Especially since it is focused on a minimal set of genres (i.e., fantasy, hero movies, etc.) and franchises (i.e., Marvel Cinematic Universe, DC Cinematic Universe, Star Wars, Fast and the Furious, etc.)
-
-## More Money In… More Money Out
-When a company increases costs, usually the aim is to increase revenue and profit. Streaming services charge a fixed fee per month. Therefore, it doesn’t really matter how much or how little you loved the next big _fantasy drama_ series from your favorite streaming provider – they will make the same amount of money from you.
-
-Unless… streaming companies increase subscription prices and find new ways to monetize content. Aided by the excuse of inflation, most services have increased their prices in the last year. Specifically, Disney+ subscription in the U.S. will rise from $7.99 to $10.99, while Hulu's ad-free offering will jump from $12.99 per month to $14.99 per month. Netflix cheapest plan increased to $9.99, with the top one at $20.00. Additionally, executives from most of these big companies are also planning to roll out ads for their services. Yes, even Netflix that resisted for years
- cannot keep ignoring that option when faced with competition.
-
-Ultimately, this is a worse product for the user. Price increases could make the overall cost of streaming services too high for some users, which will force a choice of which services to keep. Furthermore, you will get ads again, or you can pay more if you would rather not see them.
-
-## What Happens Next?
-The high levels of competition have begun to generate frustration among users. Users are starting to get _fatigued_ with the low-quality and constant recycling of content (I swear, I am uncertain whether I can handle yet another Marvel Movie or Star Wars trilogy). The increase in prices, especially in the current economic situation, will force users to choose which services to pay for, if any. And ultimately, competition for user’s attention has never been so high. Social networks like Twitter, Instagram, and TikTok take hours of engagement daily out of each user. Video game investment has never been so high, with so many options of games and consoles.
-
-In my opinion, the streaming wars have already peaked, and we’ll see a change in the upcoming years before getting to a new equilibrium. I think that one out of three things will happen:
-
-- **Horizontal Expansion** - current streaming services would need to expand to provide additional services and bundle them together. This would increase the _value for money_ and could be interesting to some users depending on what is being bundled. Netflix has begun doing this with games. Companies like Amazon and Apple came into streaming exactly for this reason, expanding into streaming even if it was not their core business.
-- **Aggregation** - One service to rule them all… If one of the existing services, or a new player, can aggregate content from several players at a lower price point, this could create a captivating value proposition for customers on the lower end. This option seems highly unlikely, this was Netflix play years ago, and it didn’t work, potentially because they were greedy. Nevertheless, in the current scenario, it is highly unlikely that big players would share rights with another VS getting exclusivity on those.
-- **Merges and Acquisitions** - Big fish eats smaller fish. This is bound to happen at some point, it’s just a matter of time and which company will acquire which company for what amount of money. It’s not clear if this will be good or bad for customers, depending on who starts playing together.
-
-My prediction is that ultimately, big tech companies like Amazon or Apple will begin acquiring other smaller players. These companies come into streaming as a horizontal expansion from their core businesses. Both are armed with an order of magnitude more revenues than their _content only_ counterparts. As an example, in 2021 Disney’s revenue was $81.10 billion and Netflix's was $24.9 billion. In comparison, Apple’s revenue in the same year was $378.32 billion and Amazon’s was $468.82 billion. With this kind of “war chest” plus their own core business (Apple devices, and Amazon e-commerce business) it will be way easier for these companies to step in when they want to.
diff --git a/content/posts/202209-streaming-wars/pexels-amateur-hub-3571503.jpg b/content/posts/202209-streaming-wars/pexels-amateur-hub-3571503.jpg
deleted file mode 100644
index e35ef492..00000000
Binary files a/content/posts/202209-streaming-wars/pexels-amateur-hub-3571503.jpg and /dev/null differ
diff --git a/content/posts/202209-streaming-wars/players.png b/content/posts/202209-streaming-wars/players.png
deleted file mode 100644
index 0d804b4c..00000000
Binary files a/content/posts/202209-streaming-wars/players.png and /dev/null differ
diff --git a/content/posts/_index.md b/content/posts/_index.md
deleted file mode 100644
index d201b503..00000000
--- a/content/posts/_index.md
+++ /dev/null
@@ -1,18 +0,0 @@
----
-title: "Posts"
-date: 2022-06-13T20:55:37+01:00
-draft: false
-
-showDate : false
-showDateUpdated : false
-showHeadingAnchors : false
-showPagination : false
-showReadingTime : false
-showTableOfContents : true
-showTaxonomies : false
-showWordCount : false
-showSummary : false
-sharingLinks : false
-
----
-