DEV Community

Should you use Medium or dev.to?

David MM👨🏻‍💻 on September 20, 2019

Original Post Should you use Medium or dev.to? Should you use Medium or dev.to? Medium or dev.to, which one should you use as a blogg...
Collapse
 
jmfayard profile image
Jean-Michel 🕵🏻‍♂️ Fayard • Edited

What should note is that on dev.to you can have embedded runnable snippets.

I think they are sooo much better than just a block of code.

They are documented at dev.to/p/editor_guide

For example:

Kotlin Playground {% kotlin URL %}

To create a runnable Kotlin snippet, go to play.kotlinlang.org

And embed it like this:

{% kotlin https://pl.kotl.in/owreUFFUG?theme=darcula&from=3&to=6&readOnly=true %}

Glitch

Go to glitch.com and embed it like {% glitch vuejs %}

CodePen

Go to codepen.io/ and embed it like {% codepen https://codepen.io/twhite96/pen/XKqrJX %}

JSFiddle

Go to jsfiddle.net/ and embed it like: {% jsfiddle https://jsfiddle.net/link2twenty/v2kx9jcd %}

Others

See dev.to/p/editor_guide

Collapse
 
davidmm1707 profile image
David MM👨🏻‍💻

Oh, I didn't know! I'm going to update the post

Collapse
 
cescquintero profile image
Francisco Quintero 🇨🇴

This is gold

Collapse
 
tbhaxor profile image
Gurkirat Singh

That's great. I didn't know that. Thinking to become more active on the dev.to now

Collapse
 
brentonhouse profile image
Brenton House

The big thing missing from dev.to is custom domain names. I'm sure there are a lot of developers (and others) that would quickly move their blog off of Medium if dev.to supported adding custom domain names to their product.

Collapse
 
sinewalker profile image
Mike Lockhart

or, just run your own static blog (served from GHPages or wherever) with a custom domain, and cross-post to DEV with a Canonical URL back to your blog post. Better than custom-domain.dev.to or custom-domain.medium.com

Collapse
 
brentonhouse profile image
Brenton House

I like your idea but I was was thinking about top level domains (i.e., I have brenton.house as my medium blog). I can still can (and may yet) do what you suggested though until they add support for custom domains.

Collapse
 
chakrit profile image
Chakrit Wichian

Second this. It is always possible, of course, to run a blog software by ourselves on our own domain but that is not the same thing as publishing on a platform or a network.

Collapse
 
elseraa profile image
Sera

I've been thinking about start writing a long time ago. But just yesterday I do it. And I was making me this question all day. Where to start? I think I'll follow your advice and make it in both places and see how is it goes. Thanks!

Collapse
 
adrienpoly profile image
Adrien Poly

Another Pros for dev.to is that its SEO is great.

My last article dev.to/adrienpoly/critical-css-wit... on critical CSS for Rails, has been in the top 5 Google results (q="Rails critical CCS") almost since day one

Collapse
 
mzaini30 profile image
Zen

It's right. My posts too.

Collapse
 
davidmm1707 profile image
David MM👨🏻‍💻

You're right on that. Most of my posts are on the first (sometimes second) page of Google. But having my own blog I don't know if that's a good or a bad thing, SEO-wise...

Collapse
 
ben profile image
Ben Halpern

Great post!

As the creator of DEV I definitely have some bias, but I'll add a few posts that sort of define the values we have on this issue, and why we make some of our choices...

We really work hard to be a value-add part of the ecosystem, rather than being an all-consuming monopoly on any of this stuff. I hope our work in supporting data portability and the open web are appreciated. 😊

And, of course, we're open source. Together with the community we'll just keep getting better and adding more value to the ecosystem that we don't entirely capture for ourselves.

Collapse
 
mzaini30 profile image
Zen

You're MVP 👍👍👍

Collapse
 
davidmm1707 profile image
David MM👨🏻‍💻 • Edited

Self-hostable static blogs is a great new feature.

And yes, you can tell by the number of comments and its type, that this is geared more towards developers.

Collapse
 
alexisbenamar profile image
Alexis Benamar • Edited

Great article, it's nice to always have a choice.

But, I don't agree with your last statement about ugly code, as markdown offers syntax highlighting as a built-in feature. You just need to add the language you used in your code snippet next to the first triple backticks at the top. (You can find the right name for your language on numerous markdown help pages)

For example:

```javascript
const hello = (name) => {
    console.log(`hello, ${name}`)
}
```
Enter fullscreen mode Exit fullscreen mode

will render as:

const sayHello = (name) => {
    console.log(`hello, ${name}`)
}
Enter fullscreen mode Exit fullscreen mode

PS: there are many bullet points where the bold text isn't properly rendered because the closing ** sticks to a word, you might want to check it out 👍

Collapse
 
davidmm1707 profile image
David MM👨🏻‍💻

I didn't know. I'm going to update the OP.

Collapse
 
mzaini30 profile image
Zen

Markdown is amazing. I like this.

Collapse
 
maxkatz profile image
Max Katz

I published an article about this exact topic: dev.to/maxkatz/where-to-publish-co.... My opinion - developers should publish on their own blog and then syndicate. This way no matter what happens with Medium, Dev.to or any future web site - your content is always on your site.

Collapse
 
beroal profile image
beroal

How do you get comments on a standalone blog?

Collapse
 
maxkatz profile image
Max Katz

I use Wordpress.com for my personal blog (maxkatz.org). It has a built-in comments feature.

Collapse
 
lpellis profile image
Loftie Ellis

What I'm doing is publish to my own site, then distribute it to Dev.to from there, and link to dev.to for the conversation. That way I get to maintain full control but still engage with the dev.to community.
Example: loftie.com/post/programming-music/

I used to also publish to medium but I'm getting quite literally zero views from them so I stopped, its a bad user experience anyway to get hit with that massive banner.

Collapse
 
davidmm1707 profile image
David MM👨🏻‍💻

Linking the comments to dev.to is super clever.

Collapse
 
alara_joel profile image
Alara Oluwatoyin Joel

I see what you did there, and I definitely like it. SMART
Will go for dev.to for now, then work on having mine later.
What do you think? Something from scratch in GitHub blog, or this whole Wordpress thing.
Thanks

Collapse
 
patrixr profile image
Patrick R

I feel Medium is more for proper "articles" and "publications", not so much for discussions.

Dev.to kinda mixes things up a bit, which is good, but I often click on what I think is an article, only to find a one-liner asking a question to the community.

I'd love for that difference to exist in a more meaningful way.

Collapse
 
davidmm1707 profile image
David MM👨🏻‍💻

That's what the #help is for (or it should be).

I always check how long is a post before clicking on it.

Collapse
 
patrixr profile image
Patrick R

True, I don't have the habit of looking for those.

That either says something about the UX, or about me :)

Collapse
 
michi profile image
Michael Z • Edited

Writing markdown was one of the main reasons I started using dev.to.

I have yet to see a fully functional wysiwyg editor that doesn't bug out after writing 2 sentences with different styling.

If I want a live preview, I usually just write the article in vs code.

Collapse
 
patrickalphac profile image
Patrick Collins

Agreed. I actually love writing in markdown. I don't know why it's not the default for everything.

Collapse
 
tomavelev profile image
Toma

My answer is on all of them, not just medium and dev.to - also LinkedIn, Steemit.com, Facebook (probably better in some dev group/page), audio version in sound cloud, anchor.co, video version - on youtube, dailymotion, vimeo, wherever is free. The core process of programming is code and run - to develop something. For the content is the same idea - test, change, test, test, test. The top spot should be the one you control (self-host), not some platform that you have account on (in User Mode). This is the Internet Game of - who would acquire the most attention (and content generation). That is what makes all big companies valuable (content, user base, attention).

Collapse
 
davidmm1707 profile image
David MM👨🏻‍💻

I didn't know about Steemit.com. I might give it a try.

Collapse
 
tomavelev profile image
Toma

I barely have any reach there, because, it is flooded with content, like most others, but, I'm republishing my stuff there also. It doesn't take too much time. Who knows, from which hat the rabbit will appear.

Collapse
 
celebi90 profile image
celebi ati

it is so annoying for using some portfolio websites (like adobe) does not support social media icon and link of dev.to , but supports medium.

Collapse
 
davidmm1707 profile image
David MM👨🏻‍💻 • Edited

Especially when considering Medium practises of forcing you to register and/or pay....

Collapse
 
celebi90 profile image
celebi ati

both (adobe and medium) business model is subscription base, make sense

Collapse
 
justchapman profile image
Chapman

Support the open web - host your own blog and distribute content as you wish. Don't silo your own work into something you have zero control over. Being dependent on a single vendor is just a bad idea, imho.

Collapse
 
dorshinar profile image
Dor Shinar

I have a few posts published on both platforms, and I feel like it's nearly impossible to gain traction in Medium without being behind the paywall (which I disagree with entirely), so I still post my articles there, but Dev is my first option.

Collapse
 
pavelloz profile image
Paweł Kowalski

Why do you post there if you dont agree with their hostility towards users?

Collapse
 
dorshinar profile image
Dor Shinar

Good question. I don't have a clear answer, but it doesn't cost me anything so I guess why not?

Thread Thread
 
davidmm1707 profile image
David MM👨🏻‍💻

Good Backlinks and views to my own blog are the only reason I see on posting at Medium. If I didn't had one, I wouldn't be there.

Thread Thread
 
dorshinar profile image
Dor Shinar

I didn't mention it, but I do have a blog of my own, so yeah you pretty much summed it up better than I was able to.

Collapse
 
tam360 profile image
Mirza

If you find writing markup really annoying, consider using Remarkable . It's a markup editor which gives renders your marktup to actual text in a parallel window. It's really helpful when it comes to writing posts for dev.to or editing MD type documents in general.

Collapse
 
davidmm1707 profile image
David MM👨🏻‍💻

Thanks for the tip! I'm going to try it as soon as I can.

Collapse
 
fyodorio profile image
Fyodor

All these articles intended to compare two things and whose authors say "It depends" in the end... I believe it should be considered as a crime... separate boiler in the hell is booked for them, definitely...

Be bold! Express your opinion!!!

Collapse
 
joppedc profile image
JoppeDC

You should change the title for the Dev.to pro's and cons (its currently Medium pros and cons)

Collapse
 
davidmm1707 profile image
David MM👨🏻‍💻

Done. Thanks!

Collapse
 
joppedc profile image
JoppeDC

Sweet! Great post, just finished reading. Always loved Medium because of how clean it looks. And i've always loved dev.to because of the audience and content. This post sums it up pretty accurate!

Collapse
 
smalluban profile image
Dominik Lubański

**Ugly code. **While you can use your code in, it is an ugly black background chunk with the text in white. it works but it is hard to read it. Still better than the one in Medium.

Dev.to supports marking language type of the code snippet, so you can get very nice highlighting :)

The only what you have to do is to add language name after opening quotes like javascript. For example:

console.log("I'm highlighted");
Enter fullscreen mode Exit fullscreen mode
Collapse
 
davidmm1707 profile image
David MM👨🏻‍💻

Thanks. I edited the OP and add the code highlighting as a (another) pro for dev.to.

Collapse
 
yellow1912 profile image
yellow1912

Medium asks you to pay if you go above the number of posts you can read (3 per week or something like that?). While I think that's fair when the money goes directly to the writer to support the time and effort, if you plan to share your knowledge for free the. . medium is NOT a good place. I think that there are just so many free options out there such as dev.to for you to choose from. That said, you can always sync to multiple news portals.

Collapse
 
highcenburg profile image
Vicente G. Reyes

I also had this comparison back in June. DEV definitely has more audience than medium. I even gained 6k followers in 2 months because of that one post. Check it here on my blog icenreyes.xyz/posts/a-post-statist...

Collapse
 
davidmm1707 profile image
David MM👨🏻‍💻

Hm, the audience is tricky.

With Medium, like you, I had between 1-4, until (I don't know why) I was spotted by somebody on a Vue publication. The articles on the publication hit +1000 views easy, as they publish every week a curated list of articles.

But yeah, by myself my posts have like 6-7 views now. On dev.to you get more reads and, more important, feedback in comments.

The followers' thing, as I said, is not real. When I started here I was automatically following 50 people (because the tags I selected).

For example, on my first day, with less than 100 views, I had 152 followers by the end of the day, almost everyone registered the same day.

Today it is my 17th day here and I have 3165 followers, that roughly makes 1 follower by every 2 views...

Collapse
 
highcenburg profile image
Vicente G. Reyes

You gain more followers with more posts. I checked your profile and see that you are a consistent writer. Congratulations on that!

Collapse
 
anshsaini profile image
Ansh Saini

Lol! I am one of your "fake" followers you can say xD
I was automatically following you when i created the account. But hey, now I'm a real follower.
cheers.

Collapse
 
sinewalker profile image
Mike Lockhart

I have noticed that I'm getting a lot of followers who signed up the same day I'm notified. And I have, like, ONE post, and a few comments. So now I understand: something's adding me automatically.

I guess it's incentive for me to get off my butt and WRITE A POST more :-)

Collapse
 
davidmm1707 profile image
David MM👨🏻‍💻

Thanks for keeping it real :)

Collapse
 
sinewalker profile image
Mike Lockhart

What is this vague "polish" word that reviewers throw about?

Seriously.

Why does Medium get the "polished" comment and DEV.to not?

I mean, I'm not a front-end person, and I don't do design. I really cannot see what is "unpolished" about DEV?

It annoys me. Linux reviews are (or were) the same "this is great but it's not polished like Windows" -- Um. Windows crashes all the time and Linux doesn't so why is it "polished"?

Also, Markdown is a serious Pro for DEV, not a Con. It fails back to HTML which is a huge win. Medium clearly gets in your way, like WordPress, Drupal and 95% other CMSes.

Collapse
 
matthias profile image
Matthias 🤖

When you create a user you automatically follow 50 people. Not that it is super bad, but I get like 150 followers daily and I don't know which one is real and which one automatically assigned.

Is that true?

Collapse
 
s_aitchison profile image
Suzanne Aitchison • Edited

When I joined (fairly recently) I definitely wasn't assigned people to follow... Or at least definitely not 50 🤷‍♀️

Collapse
 
davidmm1707 profile image
David MM👨🏻‍💻

Unless I get 1 follower for every 3 views because I'm secretly a future media mogul...yes.

6,054
Total Post Views

FOLLOWERS (1762)

Collapse
 
matthias profile image
Matthias 🤖

@ben - can you help us here?

Collapse
 
jwp profile image
John Peters

I cannot stand Medium personally. It's a platform for disgruntled woe is me posts.

Dev.to is a programming haven.

Collapse
 
jcastaneyra profile image
Jose Castaneyra

Wow, thanks, long time ago I had a blog but wasn't updated for about eight years, now I want to start again to write and your great post helped me to make a decision.

Collapse
 
davidmm1707 profile image
David MM👨🏻‍💻

Happy to see that my post helped someone :)

Collapse
 
cescquintero profile image
Francisco Quintero 🇨🇴

All Dev.to pros outweigh Medium ones.

Besides, Dev.to community is so welcome and kind. Something you won't get in Medium.

Collapse
 
flrnd profile image
Florian Rand • Edited

For me, the best DEV.to selling points are:

  • Ruled by an indi company (with pretty cool staff).
  • Really good community.
  • It gives everyone fair chances of visibility.

Great article!

Collapse
 
mzaini30 profile image
Zen

I have shared this post with my friend who will join in Dev. He was amazed at the speed of this website; switch pages almost without loading.

Collapse
 
steelwolf180 profile image
Max Ong Zong Bao

I would go for Dev.to the last thing you want is be in a paid wall that is not specifically for the target audience you are writing it for

Collapse
 
chinmayghule profile image
Chinmay Ghule

It's usually useless to expect a conclusion for anything 'this vs that' nowadays since you never get a result. In the end they always give a vague answer to avoid offending the either party.

Collapse
 
cedricmurairi profile image
Cédric Murairi

Can one use medium or dev.to api to post and display content to and from his website other than going to both platform every time?

Collapse
 
curtlycritchlow profile image
Curtly Critchlow

I recently joined dev and I was pondering on this question. I agree with your conclusion and would like to thank you for highlighting the pros and cons of each platform.

Collapse
 
molinux profile image
Molinero

Markdown is not a cons for me... it's a pro !
All of my documentation and tutorials are written in Markdown

Collapse
 
khusyasy profile image
Luthfi Khusyasy

Thank you so much for your insight, I recently thought of starting a blog but kinda got confused because too many platforms to choose from, but now I kinda know where should I start.