DEV Mods’ Favorites of 2023

dev-mods’-favorites-of-2023

This past year we saw so many wonderful posts being shared in our community on DEV!

Thankfully, behind the scenes, we have a crew of DEV Community Mods taking action to uplift the best content we have to offer. With their mod abilities, these folks are regularly upvoting the good stuff (👍), downvoting the less-than-good stuff (👎), and reporting any spam to us admins (🧐) so we can take action to remove it. These moderator actions are invisible to the average DEV community member, and our mods are the unsung heroes volunteering their time to help make DEV a better place for all.

Mod Faves

On that note, about a week ago, I sent a survey to our 5,000+ mods to collect their favorite picks of the year and these were the top picks in each category.

Favorite Post of the Year

The most highly voted post of the year by mods goes to @tbroyer‘s “How I teach Git.” 👏

Favorite Discussion of the Year

The discussion with the most votes is @mcharytoniuk‘s “Money or Passion?” 💰❤️

Favorite Series of the Year

As voted by DEV mods, @bekahhw‘s New Maintainer Resources takes the cake for most voted-on series. 🎂

The following is the first post in the series:

Favorite Author of the Year

Lastly, the votes are in, and the mods’ favorite author of the year is…

🥁🥁🥁🥁🥁🥁🥁

the amazing @yuridevat!!!! 🙌

That’s a Wrap! 🎁

And that’s all of this year’s favorites as chosen by the awesome team of DEV Mods.

Total
0
Shares
Leave a Reply

Your email address will not be published. Required fields are marked *

Previous Post
’twas-the-night-before-break-(2023-edition)

’Twas the Night Before Break (2023 Edition)

Next Post
unlocking-synergies:-a-mile-in-the-user’s-shoes

Unlocking synergies: A mile in the user’s shoes

Related Posts
arkui-x平台差异化

ArkUI-X平台差异化

跨平台使用场景是一套ArkTS代码运行在多个终端设备上,如Android、iOS、OpenHarmony(含基于OpenHarmony发行的商业版,如HarmonyOS Next)。当不同平台业务逻辑不同,或使用了不支持跨平台的API,就需要根据平台不同进行一定代码差异化适配。当前仅支持在代码运行态进行差异化,接下来详细介绍场景及如何差异化适配。 使用场景 平台差异化适用于以下两种典型场景: 1.自身业务逻辑不同平台本来就有差异; 2.在OpenHarmony上调用了不支持跨平台的API,这就需要在OpenHarmony上仍然调用对应API,其他平台通过Bridge桥接机制进行差异化处理; 判断平台类型 可以通过let osName: string = deviceInfo.osFullName;获取对应OS名字,该接口已支持跨平台,不同平台上其返回值如下: OpenHarmony上,osName等于OpenHarmony-XXX Android上,osName等于Android XXX iOS上,osName等于iOS XXX 示例如下:…
Read More