{"id":2233,"date":"2026-07-14T20:51:25","date_gmt":"2026-07-14T19:51:25","guid":{"rendered":"https:\/\/entertainmentnews.site\/index.php\/2026\/07\/14\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\/"},"modified":"2026-07-14T20:51:27","modified_gmt":"2026-07-14T19:51:27","slug":"a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal","status":"publish","type":"post","link":"https:\/\/entertainmentnews.site\/index.php\/2026\/07\/14\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\/","title":{"rendered":"A Dash of dev.to: My Blog Stats Now Live in the Terminal"},"content":{"rendered":"<div class=\"anp-pro-entry\">\n<p class=\"anp-pro-lead\">The topic <strong>A Dash of dev.to: My Blog Stats Now Live in the Terminal<\/strong> is currently the subject of lively discussion \u2014 readers and analysts are keeping a close eye on developments.<\/p>\n<p class=\"anp-pro-p\">This is taking place in a dynamic environment: companies\u2019 decisions and competitors\u2019 reactions can quickly change the picture.<\/p>\n<p class=\"anp-pro-p\">Hello, I&#8217;m Maneshwar. I&#8217;m building git-lrc, a Micro AI code reviewer that runs on every commit. It is free and source-available on Github. Star git-lrc to help devs discover the project. Do give it a try and share your feedback.<\/p>\n<p class=\"anp-pro-p\">I check my dev.to stats more often than I would ever admit in a job interview.<\/p>\n<p class=\"anp-pro-p\">Reactions, views, comments, the little numbers that go up, and the ones that stubbornly refuse to.<\/p>\n<p class=\"anp-pro-p\">Normally that ritual means opening a browser, clicking into the dashboard, and squinting at one article at a time like I&#8217;m reading tea leaves.<\/p>\n<p class=\"anp-pro-p\">My top articles ranked by likes, by views, and by comments, all on screen at once, quietly refreshing itself while I pretend to do real work.<\/p>\n<p class=\"anp-pro-p\">It took a tiny Go program, one wonderful archived project doing the heavy lifting, and two bugs I absolutely did not order but got served anyway.<\/p>\n<p class=\"anp-pro-p\">There is an endpoint, GET \/api\/articles\/me, you send your API key in an api-key header, and you get back every article you have published with the fields that matter already counted for you: positive_reactions_count, page_views_count, and comments_count.<\/p>\n<p class=\"anp-pro-p\">You can generate a key at your dev.to settings under Extensions.<\/p>\n<p class=\"anp-pro-p\">Grids, colors, borders, keyboard handling, refresh loops. Life is short xD<\/p>\n<p class=\"anp-pro-p\">Three, therefore, I needed something that already draws pretty terminal dashboards and would happily show my numbers if I fed it nicely.<\/p>\n<p class=\"anp-pro-p\">devdash is a highly configurable terminal dashboard by Matthieu Cneude, better known as Phantas0s.<\/p>\n<p class=\"anp-pro-p\">It has widgets for GitHub, Google Analytics, Google Search Console, Travis, and more, and the entire layout is driven by a single YAML file.<\/p>\n<p class=\"anp-pro-p\">Two small catches. It has been archived since 2023. And it has precisely zero concept of what dev.to is.<\/p>\n<p class=\"anp-pro-p\">Now, I could have forked it, added a proper Forem service, wired up structs, written tests, and opened a pull request into a repo that is politely closed for business.<\/p>\n<p class=\"anp-pro-p\">You hand it a shell command, it runs that command, and it renders whatever the command prints as a bordered table.<\/p>\n<p class=\"anp-pro-p\">It splits each line of output on whitespace and slots the pieces into columns. That is the whole contract.<\/p>\n<p class=\"anp-pro-p\">It just needs a command that prints rows. I can be that command.<\/p>\n<p class=\"anp-pro-p\">If Matthieu ever reads this: thank you for building a tool flexible enough to be abused this gracefully.<\/p>\n<p class=\"anp-pro-p\">Go bother Matthieu on X and tell him his archived project is still out here pulling shifts.<\/p>\n<figure class=\"anp-pro-inline-figure\" style=\"margin:1.75em auto;text-align:center;max-width:100%\"><img decoding=\"async\" class=\"anp-pro-inline-img\" src=\"https:\/\/entertainmentnews.site\/wp-content\/uploads\/2026\/07\/https3A2F2Fdev-to-uploads.s3.us-east-2.amazonaws.com2Fuploads2Farticles2F5zqtj05d58f57kofef66.webp\" alt=\"\" style=\"display:block;margin:0 auto;max-width:100%;width:auto;height:auto;object-fit:contain;object-position:center\" loading=\"lazy\"><\/figure>\n<p class=\"anp-pro-p\">The little Go binary in the middle is the only thing I actually had to write.<\/p>\n<p class=\"anp-pro-p\">It fetches all my articles (paginating 100 at a time until dev.to runs out), keeps only the published ones, sorts them by whichever metric devdash asks for, and prints clean rows.<\/p>\n<p class=\"anp-pro-p\">And the config just points three table widgets at three flavors of that command.<\/p>\n<p class=\"anp-pro-p\">Three of those blocks, colored red, green, and yellow, sitting side by side. In theory, done.<\/p>\n<p class=\"anp-pro-p\">I turned it on. Overview strip populated. Most Liked, glorious. Most Commented, present.<\/p>\n<p class=\"anp-pro-p\">The clue was in how devdash refreshes: it fires every widget concurrently, each in its own goroutine, all at the same instant.<\/p>\n<p class=\"anp-pro-p\">Four widgets meant four copies of devto-stats sprinting at the dev.to API at once, elbows out. dev.to did the sensible thing and replied 429 Too Many Requests.<\/p>\n<p class=\"anp-pro-p\">I had built a very small, very polite denial of service attack against myself.<\/p>\n<p class=\"anp-pro-p\">The fix is the boring, correct one: on a 429, wait and retry, with backoff plus jitter.<\/p>\n<p class=\"anp-pro-p\">The jitter is the important part. Without it, all four back off by the same amount and collide again, like four people apologizing and stepping the same way in a hallway.<\/p>\n<p class=\"anp-pro-p\">The first row looked fine, then every row below slid one column right.<\/p>\n<p class=\"anp-pro-p\">Here&#8217;s what devdash does under the hood: it splits each line on whitespace to get cells, joins those cells back together with commas, then splits the whole batch on commas again to chunk it into rows of N columns.<\/p>\n<p class=\"anp-pro-p\">A comma inside a title is indistinguishable from a comma devdash added on purpose.<\/p>\n<p class=\"anp-pro-p\">One title becomes two cells, the row has four pieces instead of three, and because the chunking is global, every row after it is shifted forever.<\/p>\n<p class=\"anp-pro-p\">The real fix belongs upstream, in a repo that isn&#8217;t taking visitors.<\/p>\n<p class=\"anp-pro-p\">My binary already slugifies titles to survive the whitespace split.<\/p>\n<p class=\"anp-pro-p\">Here is the raw feed one panel runs on, straight out of the binary, real numbers from my actual account:<\/p>\n<p class=\"anp-pro-p\">devdash takes three of those feeds and frames them into colored, bordered, self refreshing tables sitting shoulder to shoulder: Most Liked in red, Most Viewed in green, Most Commented in yellow, with a summary strip across the top.<\/p>\n<figure class=\"anp-pro-inline-figure\" style=\"margin:1.75em auto;text-align:center;max-width:100%\"><img decoding=\"async\" class=\"anp-pro-inline-img\" src=\"https:\/\/entertainmentnews.site\/wp-content\/uploads\/2026\/07\/https3A2F2Fdev-to-uploads.s3.us-east-2.amazonaws.com2Fuploads2Farticles2Fw1n2nxlqpmpa6ojnuir2.webp\" alt=\"\" style=\"display:block;margin:0 auto;max-width:100%;width:auto;height:auto;object-fit:contain;object-position:center\" loading=\"lazy\"><\/figure>\n<p class=\"anp-pro-p\">Ctrl+R forces a refresh, Ctrl+C quits, and left to its own devices it repaints itself every five minutes.<\/p>\n<p class=\"anp-pro-p\">444 articles, all of them accounted for, no browser, no clicking, just a quiet terminal telling me the truth about which posts people actually read.<\/p>\n<p class=\"anp-pro-p\">The best integration is often no integration. devdash never learned about dev.to.<\/p>\n<p class=\"anp-pro-p\">I made dev.to speak devdash&#8217;s language instead, and a tool that stopped being maintained in 2023 rendered 2026 data without a single change to its source.<\/p>\n<p class=\"anp-pro-p\">The whole thing, Go helper, YAML, and Makefile, is here: lovestaco\/devto_devdash.<\/p>\n<p class=\"anp-pro-p\">Sometimes the best tool for the job is one somebody stopped working on years ago, sitting there quietly, still perfectly happy to dash off one more dashboard.<\/p>\n<p class=\"anp-pro-p\">AI agents write code fast. They also silently remove logic, change behavior, and introduce bugs \u2014 without telling you. You often find out in production.<\/p>\n<p class=\"anp-pro-p\">git-lrc fixes this. It hooks into git commit and reviews every diff before it lands. 60-second setup. Completely free.<\/p>\n<p class=\"anp-pro-p\">Any feedback or contributors are welcome! It&#8217;s online, source-available, and ready for anyone to use.<\/p>\n<p class=\"anp-pro-p\">GenAI today is a race car without brakes. It accelerates fast &#8212; you describe something, and large blocks of code appear instantly. But AI agents silently break things: they remove logic, relax constraints, introduce expensive cloud calls, leak credentials, and change behavior &#8212; without telling you. You often find out in production.<\/p>\n<p class=\"anp-pro-p\">git-lrc is your braking system. It hooks into git commit and runs an AI review on every diff before it lands. 60-second setup. Completely free.<\/p>\n<p class=\"anp-pro-p\">In short, git-lrc helps Prevent Outages, Breaches, and Technical Debt Before They Happen<\/p>\n<p class=\"anp-pro-p\">At a glance: 10 risk categories \u00b7 100+ failure patterns tracked \u00b7 every commit\u2026<\/p>\n<p class=\"anp-pro-p\">Templates let you quickly answer FAQs or store snippets for re-use.<\/p>\n<p class=\"anp-pro-p\">Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment&#8217;s permalink.<\/p>\n<p class=\"anp-pro-p\">For further actions, you may consider blocking this person and\/or reporting abuse<\/p>\n<p class=\"anp-pro-p\">Thank you to our Diamond Sponsors for supporting the DEV Community<\/p>\n<p class=\"anp-pro-p\">Google AI is the official AI Model and Platform Partner of DEV<\/p>\n<p class=\"anp-pro-p\">DEV Community \u2014 A space to discuss and keep up software development and manage your software career<\/p>\n<p class=\"anp-pro-p\">Built on Forem \u2014 the open source software that powers DEV and other inclusive communities.<\/p>\n<p class=\"anp-pro-p\">We&#8217;re a place where coders share, stay up-to-date and grow their careers.<\/p>\n<aside class=\"anp-pro-aside\" aria-label=\"context\">\n<p class=\"anp-pro-kicker\">Why it matters<\/p>\n<p class=\"anp-pro-p\">News like this often changes audience expectations and competitors\u2019 plans.<\/p>\n<p class=\"anp-pro-p\">When one player makes a move, others usually react \u2014 it is worth reading the event in context.<\/p>\n<\/aside>\n<aside class=\"anp-pro-aside\" aria-label=\"outlook\">\n<p class=\"anp-pro-kicker\">What to look out for next<\/p>\n<p class=\"anp-pro-p\">The full picture will become clear in time, but the headline already shows the dynamics of the industry.<\/p>\n<p class=\"anp-pro-p\">Further statements and user reactions will add to the story.<\/p>\n<\/aside>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>The topic A Dash of dev.to: My Blog Stats Now Live in the Terminal is currently the subject of lively discussion \u2014 readers and analysts are keeping a close eye on developments. This is taking place in a dynamic environment: companies\u2019 decisions and competitors\u2019 reactions can quickly change the picture. Hello, I&#8217;m Maneshwar. I&#8217;m building [&hellip;]<\/p>\n","protected":false},"author":0,"featured_media":2234,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[516,783,239,784,515],"class_list":["post-2233","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-entertainment","tag-command","tag-devdash","tag-every","tag-git-lrc","tag-terminal"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>A Dash of dev.to: My Blog Stats Now Live in the Terminal - entertainmentnews.site<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/entertainmentnews.site\/index.php\/2026\/07\/14\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"A Dash of dev.to: My Blog Stats Now Live in the Terminal - entertainmentnews.site\" \/>\n<meta property=\"og:description\" content=\"The topic A Dash of dev.to: My Blog Stats Now Live in the Terminal is currently the subject of lively discussion \u2014 readers and analysts are keeping a close eye on developments. This is taking place in a dynamic environment: companies\u2019 decisions and competitors\u2019 reactions can quickly change the picture. Hello, I&#8217;m Maneshwar. I&#8217;m building [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/entertainmentnews.site\/index.php\/2026\/07\/14\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\/\" \/>\n<meta property=\"og:site_name\" content=\"entertainmentnews.site\" \/>\n<meta property=\"article:published_time\" content=\"2026-07-14T19:51:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-14T19:51:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/entertainmentnews.site\/wp-content\/uploads\/2026\/07\/https3A2F2Fdev-to-uploads.s3.us-east-2.amazonaws.com2Fuploads2Farticles2F350uijku0ozt8ewb19uz.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"805\" \/>\n\t<meta property=\"og:image:height\" content=\"421\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/entertainmentnews.site\\\/index.php\\\/2026\\\/07\\\/14\\\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/entertainmentnews.site\\\/index.php\\\/2026\\\/07\\\/14\\\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\\\/\"},\"author\":{\"name\":\"\",\"@id\":\"\"},\"headline\":\"A Dash of dev.to: My Blog Stats Now Live in the Terminal\",\"datePublished\":\"2026-07-14T19:51:25+00:00\",\"dateModified\":\"2026-07-14T19:51:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/entertainmentnews.site\\\/index.php\\\/2026\\\/07\\\/14\\\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\\\/\"},\"wordCount\":1317,\"image\":{\"@id\":\"https:\\\/\\\/entertainmentnews.site\\\/index.php\\\/2026\\\/07\\\/14\\\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/entertainmentnews.site\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/https3A2F2Fdev-to-uploads.s3.us-east-2.amazonaws.com2Fuploads2Farticles2F350uijku0ozt8ewb19uz.webp\",\"keywords\":[\"Command\",\"Devdash\",\"Every\",\"Git-lrc\",\"Terminal\"],\"articleSection\":[\"Entertainment\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/entertainmentnews.site\\\/index.php\\\/2026\\\/07\\\/14\\\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\\\/\",\"url\":\"https:\\\/\\\/entertainmentnews.site\\\/index.php\\\/2026\\\/07\\\/14\\\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\\\/\",\"name\":\"A Dash of dev.to: My Blog Stats Now Live in the Terminal - entertainmentnews.site\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/entertainmentnews.site\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/entertainmentnews.site\\\/index.php\\\/2026\\\/07\\\/14\\\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/entertainmentnews.site\\\/index.php\\\/2026\\\/07\\\/14\\\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/entertainmentnews.site\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/https3A2F2Fdev-to-uploads.s3.us-east-2.amazonaws.com2Fuploads2Farticles2F350uijku0ozt8ewb19uz.webp\",\"datePublished\":\"2026-07-14T19:51:25+00:00\",\"dateModified\":\"2026-07-14T19:51:27+00:00\",\"author\":{\"@id\":\"\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/entertainmentnews.site\\\/index.php\\\/2026\\\/07\\\/14\\\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/entertainmentnews.site\\\/index.php\\\/2026\\\/07\\\/14\\\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/entertainmentnews.site\\\/index.php\\\/2026\\\/07\\\/14\\\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\\\/#primaryimage\",\"url\":\"https:\\\/\\\/entertainmentnews.site\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/https3A2F2Fdev-to-uploads.s3.us-east-2.amazonaws.com2Fuploads2Farticles2F350uijku0ozt8ewb19uz.webp\",\"contentUrl\":\"https:\\\/\\\/entertainmentnews.site\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/https3A2F2Fdev-to-uploads.s3.us-east-2.amazonaws.com2Fuploads2Farticles2F350uijku0ozt8ewb19uz.webp\",\"width\":805,\"height\":421},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/entertainmentnews.site\\\/index.php\\\/2026\\\/07\\\/14\\\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/entertainmentnews.site\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"A Dash of dev.to: My Blog Stats Now Live in the Terminal\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/entertainmentnews.site\\\/#website\",\"url\":\"https:\\\/\\\/entertainmentnews.site\\\/\",\"name\":\"entertainmentnews.site\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/entertainmentnews.site\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"A Dash of dev.to: My Blog Stats Now Live in the Terminal - entertainmentnews.site","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/entertainmentnews.site\/index.php\/2026\/07\/14\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\/","og_locale":"en_GB","og_type":"article","og_title":"A Dash of dev.to: My Blog Stats Now Live in the Terminal - entertainmentnews.site","og_description":"The topic A Dash of dev.to: My Blog Stats Now Live in the Terminal is currently the subject of lively discussion \u2014 readers and analysts are keeping a close eye on developments. This is taking place in a dynamic environment: companies\u2019 decisions and competitors\u2019 reactions can quickly change the picture. Hello, I&#8217;m Maneshwar. I&#8217;m building [&hellip;]","og_url":"https:\/\/entertainmentnews.site\/index.php\/2026\/07\/14\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\/","og_site_name":"entertainmentnews.site","article_published_time":"2026-07-14T19:51:25+00:00","article_modified_time":"2026-07-14T19:51:27+00:00","og_image":[{"width":805,"height":421,"url":"https:\/\/entertainmentnews.site\/wp-content\/uploads\/2026\/07\/https3A2F2Fdev-to-uploads.s3.us-east-2.amazonaws.com2Fuploads2Farticles2F350uijku0ozt8ewb19uz.webp","type":"image\/webp"}],"twitter_card":"summary_large_image","twitter_misc":{"Estimated reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/entertainmentnews.site\/index.php\/2026\/07\/14\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\/#article","isPartOf":{"@id":"https:\/\/entertainmentnews.site\/index.php\/2026\/07\/14\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\/"},"author":{"name":"","@id":""},"headline":"A Dash of dev.to: My Blog Stats Now Live in the Terminal","datePublished":"2026-07-14T19:51:25+00:00","dateModified":"2026-07-14T19:51:27+00:00","mainEntityOfPage":{"@id":"https:\/\/entertainmentnews.site\/index.php\/2026\/07\/14\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\/"},"wordCount":1317,"image":{"@id":"https:\/\/entertainmentnews.site\/index.php\/2026\/07\/14\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\/#primaryimage"},"thumbnailUrl":"https:\/\/entertainmentnews.site\/wp-content\/uploads\/2026\/07\/https3A2F2Fdev-to-uploads.s3.us-east-2.amazonaws.com2Fuploads2Farticles2F350uijku0ozt8ewb19uz.webp","keywords":["Command","Devdash","Every","Git-lrc","Terminal"],"articleSection":["Entertainment"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/entertainmentnews.site\/index.php\/2026\/07\/14\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\/","url":"https:\/\/entertainmentnews.site\/index.php\/2026\/07\/14\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\/","name":"A Dash of dev.to: My Blog Stats Now Live in the Terminal - entertainmentnews.site","isPartOf":{"@id":"https:\/\/entertainmentnews.site\/#website"},"primaryImageOfPage":{"@id":"https:\/\/entertainmentnews.site\/index.php\/2026\/07\/14\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\/#primaryimage"},"image":{"@id":"https:\/\/entertainmentnews.site\/index.php\/2026\/07\/14\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\/#primaryimage"},"thumbnailUrl":"https:\/\/entertainmentnews.site\/wp-content\/uploads\/2026\/07\/https3A2F2Fdev-to-uploads.s3.us-east-2.amazonaws.com2Fuploads2Farticles2F350uijku0ozt8ewb19uz.webp","datePublished":"2026-07-14T19:51:25+00:00","dateModified":"2026-07-14T19:51:27+00:00","author":{"@id":""},"breadcrumb":{"@id":"https:\/\/entertainmentnews.site\/index.php\/2026\/07\/14\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/entertainmentnews.site\/index.php\/2026\/07\/14\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/entertainmentnews.site\/index.php\/2026\/07\/14\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\/#primaryimage","url":"https:\/\/entertainmentnews.site\/wp-content\/uploads\/2026\/07\/https3A2F2Fdev-to-uploads.s3.us-east-2.amazonaws.com2Fuploads2Farticles2F350uijku0ozt8ewb19uz.webp","contentUrl":"https:\/\/entertainmentnews.site\/wp-content\/uploads\/2026\/07\/https3A2F2Fdev-to-uploads.s3.us-east-2.amazonaws.com2Fuploads2Farticles2F350uijku0ozt8ewb19uz.webp","width":805,"height":421},{"@type":"BreadcrumbList","@id":"https:\/\/entertainmentnews.site\/index.php\/2026\/07\/14\/a-dash-of-dev-to-my-blog-stats-now-live-in-the-terminal\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/entertainmentnews.site\/"},{"@type":"ListItem","position":2,"name":"A Dash of dev.to: My Blog Stats Now Live in the Terminal"}]},{"@type":"WebSite","@id":"https:\/\/entertainmentnews.site\/#website","url":"https:\/\/entertainmentnews.site\/","name":"entertainmentnews.site","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/entertainmentnews.site\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"}]}},"_links":{"self":[{"href":"https:\/\/entertainmentnews.site\/index.php\/wp-json\/wp\/v2\/posts\/2233","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/entertainmentnews.site\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/entertainmentnews.site\/index.php\/wp-json\/wp\/v2\/types\/post"}],"replies":[{"embeddable":true,"href":"https:\/\/entertainmentnews.site\/index.php\/wp-json\/wp\/v2\/comments?post=2233"}],"version-history":[{"count":1,"href":"https:\/\/entertainmentnews.site\/index.php\/wp-json\/wp\/v2\/posts\/2233\/revisions"}],"predecessor-version":[{"id":2243,"href":"https:\/\/entertainmentnews.site\/index.php\/wp-json\/wp\/v2\/posts\/2233\/revisions\/2243"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/entertainmentnews.site\/index.php\/wp-json\/wp\/v2\/media\/2234"}],"wp:attachment":[{"href":"https:\/\/entertainmentnews.site\/index.php\/wp-json\/wp\/v2\/media?parent=2233"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/entertainmentnews.site\/index.php\/wp-json\/wp\/v2\/categories?post=2233"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/entertainmentnews.site\/index.php\/wp-json\/wp\/v2\/tags?post=2233"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}