Skip to main content

How to Earn online from Medium.com

 As freelancer I started writing on medium (Tech blogs) from Aug 2024 but I was already writing tech blogs on c-sharpcorner.com

“The purpose of this post is to encourage new writers by helping them understand how they can earn as freelancers.”

“Medium is a great platform for writers. When I started writing, I had no idea that I would reach the $100 benchmark in just four months. Now, I’m feeling self-inspired, as it has become a valuable source of income as a freelancer.”

AUG 2024 ( $0 )

It was just beginning, and I posted 4 articles and had only few views 455 and 165 reads. During this time, I was learning about medium rules for writers and partner program. It will take some time to understand over all process.

SEP 2024 ($6)

As I started writing and I was getting few cents on Aug 2024, I posted 8 more articles in SEP, and it was good month because my blogs were getting noticed and I started getting claps etc.

“This month, I went from $0 to $6, which was an achievement when starting something new in life. I’m still really happy to see that my posts are being noticed by both writers and readers.”

OCT 2024 ($21)

Earning was 3X SEP

October was also a good month, and I posted more than 10 articles. However, let me tell you that posting more doesn’t necessarily mean you’ll earn more money. It’s important to focus on creating high-quality content

One of my Post was getting viral and earned $8 from single post and still earning with it and reached to $12 till date.

Below is my post which was viral in Oct 2024.

15 Things that you must know about Entity framework core | by .Net Labs | Stackademic

Nov 2024 ($42)

Earning was 2X Oct

Momentum of keep writing will help yourself to keep earning because medium have some internal algorithm which helps you keep earning if you will keep writing else it will be very difficult.

This was another good month as earning was 2X from Oct month

In this month another post got viral and earned more than $9 in single month from single post

Below is the post which was getting more attraction from readers and writers.

Please go with that and try to see who things was organized in this below post.

Improve Application Performance using “Fire and Forget” in .NET Core | by .Net Labs | Stackademic

DEC 2024 ($34)

In December, I posted fewer articles than in November, and my earnings were also lower. The reason was that I didn’t have enough time to focus on producing quality content, and the articles I posted were general tech blogs with information that was easily available online

Total Income from Aug 2024 to Dec 2024

It took 4 months to reach $100 and it was very happy moment.

AUG 2024 ($0)
SEP 2024 ($6)
OCT 2024 ($21)
Nov 2024 ($42)
DEC 2024 ($34)

Total: $ 103

medium earning page

Conclusion and Key points

If you are new writer, then this is very good platform to earn passive income and even lot of writers doing this as fulltime.

You need to keep writing so that writers and reader will remain engage and will like your post. More Clap you will get more earning you will be getting.

Apart from this if you keep writing writers and reader will start following you and once you post any articles they will easy came to know about your new post. More quality content you will write more followers you will get.

audience screen

I am very thankful to medium.com for this wonderful oppturnuity. Day by day i am getting new energy to write more quality content.

Thanks.

#medium

Comments

Popular posts from this blog

Design Application using Clean Architecture

  Clean Architecture , introduced by  Robert C. Martin   (Uncle Bob), aims to create systems that are: Independent of frameworks Testable Independent of UI Independent of database Independent of any external agency Clean Architecture emphasizes separating the concerns of different parts of the system and ensuring that each part has a clear responsibility. .NET clean architecture as a development approach, available in a layered form to reduce dependency. The architecture consists of several layers, each with a specific role and dependencies that flow in one direction: from the outer layers to the inner layers. Inner most Layer is independent to its outer layer, means inner most layer does not have any references, it builds and stand independently. Dependency Rule The core principle of Clean Architecture is the  Dependency Rule , which states that source code dependencies can only point inward.  This means: Nothing in inner circle can depend on anything in an out...

Fixing High CPU Usage in .NET Core using Parallelism

  We will fix problem occurs due to incorrect use Parallelism in .NET Core To increase application performance sometimes we use process task or work extensively in Parallel and that may lead performance issue. When we do code, we should understand our requirement very carefully along with hardware resources those we have. We should code like that there should be less CPU usage and server should work without issues. In .NET Core, when you’re using parallelism (like Parallel.For, Task.WhenAll, or Task.Run), you might encounter performance issues if the number of concurrent threads or tasks exceeds what your system can efficiently handle. A common issue is high CPU usage or resource contention, which can degrade overall performance, cause excessive context switching, and even lead to thread starvation or deadlocks. Non members can access from here Effective Parallelism Strategies to Mitigate High CPU Usage in .NET Core We will fix problem occurs due to incorrect use Parallelism in .NE...