Tootfinder

Opt-in global Mastodon full text search. Join the index!

@Techmeme@techhub.social
2026-01-16 21:35:51

Claude Code represents a "ChatGPT moment repeated" and an "extinction-level event" for horizontal software companies focused on human-oriented consumption (Doug OLaughlin/Fabricated Knowledge)
fabricatedknowledge.com/p/the-

@anildash@me.dm
2026-01-09 16:26:50

I've been working on this one for a while. The multi-trillion-dollar AI industry? Their *most advanced platforms* are controlled by a plain text format that John Gruber made up for his blog, and then bounced off of a 17-year-old Aaron Swartz, before sharing it with the world for free. *That* is the internet. Here's the amazing (true!) story of how Markdown took over the world.

@aral@mastodon.ar.al
2025-12-11 14:46:51

I love how simple Kitten’s Streaming HTML workflow makes building features like this, especially when using class-based Kitten pages and components :)
#Kitten

Screen capture of the Team schedule interface from the Gaza Verified admin site. It is a table of names and days (Aral, Casey, Joy, Aseel, Fabio And Mondays … Fridays) with checkboxes at each name/day pair. It starts out greyed out. The Unlock to edit button is clicked and the interface comes alive (opacity returns to full and the checkboxes become green and clickable). The person toggles a few checkboxes and clicks the Lock button to lock the interface again and then repeats the process to und…
Screenshot of code (the lines editable=false and the button tag code are highlighted):

class TeamSchedule extends kitten.Component {
  editable = false

  html () {
    return kitten.html`
      <section>
        <h3>Team schedule</h3>
        <button
          name='toggle'
          connect
        >${this.editable ? 'Lock' : 'Unlock to edit'}</button>
        <table id='team-schedule' ${this.editable ? '' : 'inert'}>
          <caption id='caption'>
            <markdown>
              Show…
Screenshot of code, continuation of the same class, starting with the end of the html() method from the previous screenshot and going till the end of the class (the table[inert] style and the onToggle() method are highlighted:

          <style>
            table[inert] {
              opacity: 0.9;
              filter: grayscale(100%);
            }
          </style>
        </table>
      </section>
    `
  }

  onToggle () {
    this.editable = !this.editable
    console.log(this.editable)…
Screenshot of code (the <${TeamSchedule.connectedTo(this)} /> line is highlighted):

export default class InterviewsPage extends kitten.Page {
  html () {
    const today = db.calendar.today
    const futureDays = db.calendar.futureDays
    const pastDays = db.calendar.pastDays

    return kitten.html`
      <${MainLayout} page='/admin/interviews/'>
        <h2>Interviews</h2>

        <${SignUpsSwitch.connectedTo(this)} />
        <${InternalNav} />
        <${TeamSchedule.connectedTo(this)} /…
@kubikpixel@chaos.social
2025-11-14 06:05:16

bulletty - The TUI RSS/ATOM feed reader that lets you decide where to store your data.
bulletty is a TUI feed reader (RSS and ATOM). Read your subscriptions within your terminal. It downloads the entries for offline reading so all the data is local and yours: your subscriptions, highlights, comments, etc. All in an universal format: Markdown. Backup and sync your data directory your own way.
📰

Animation: bulletty - The TUI RSS/ATOM feed reader that lets you decide where to store your data.
@penguin42@mastodon.org.uk
2025-12-03 16:49:51

Okular is a great PDF - and a lot of other format - document viewer.
It's quite happy to deal with a few thousand page PDF file; and I just learnt it can also do images, and mark down (and others).
okular.kde.org/

@gla@mastodon.social
2026-01-11 08:04:17

I just published the tiniest utility to strip TOML/YAML front matter from my markdown files. I use it with the excellent Marked, by @…
blog.lanzani.nl/2026/strip-fr…

@frankel@mastodon.top
2025-10-26 17:17:48

Why I switched from #Markdown to #Asciidoc for #technicalwriting.
Markdown is good, but Asciidoc is much more! It natively handles file includes, admonitions, spans in tables, and even diagrams—…

@zachleat@zachleat.com
2025-10-20 18:24:26

Look, very few people will care about this but I wrote it up anyway zachleat.com/web/markdown-code

@aral@mastodon.ar.al
2025-11-17 09:19:45

“TABS [by Mozilla] pulls exactly the data you need—from HTML to Markdown to JSON—using the fastest, most efficient method for each page. It adapts to the structure and complexity of the site, staying stealthy and reliable so your [AI] agents always get what they need without friction.”
Ethical Stealthy AI Scraping (tm) by Mozilla.
#Mozilla

@hynek@mastodon.social
2025-12-18 15:50:17

RE: fosstodon.org/@squidfunk/11573
since nobody listened to me, now you heard it from The Man: stop using MkDocs 😇
⁃ Sphinx: still maintained
⁃ API docs and cross links: work out of the box
⁃ MyST (Markdown in Sphinx): …

@xiffy@mastodon.nl
2025-12-25 12:49:30

Besides publishing the PDF of this guide, I've also added the source documents to github.
You can view the Markdown files here: #xbrlQuickguide #opensource

@ellie@ellieayla.net
2026-01-05 19:19:41

Waiting for AsahiLinux to support Thunderbolt on Apple M1. It's listed in the docs as WIP. Folks will probably get it working eventually, we just don't know when. Isn't that an annoying thing to (remember to) check on occasionally?
The AsahiLinux docs are built from markdown files in a GitHub repo. Which exposes an Atom feed of commits affecting each file. So a feed reader can occasionally check #github #atom #rss #commits

@xiffy@mastodon.nl
2025-12-23 08:55:43

Along the way I learned how to create a nice document from all the Markdown files I have written in Obsidian. With Pandoc and LaTeX stitching the chapters together as one PDF or EPUB. And of course I lost way too much time solving the last typesetting problems, reading documentation of either Pandoc or templating for Latex. It was a fun ride.
#pandoc #latex #obsidian #writing