Skip to main content tdro tdro

Another wandering soul whispering into the void. If you are looking for my blog you are in the wrong place. The profile and header pictures are brought to you by cdd20.

The Bahamas

thedroneely.com

Appeared sometime around early May, 2022

6 Feeds

tdro

Another wandering soul whispering into the void. If you are looking for my blog you are in the wrong place. The profile and header pictures are brought to you by cdd20.

tdro micro.thedroneely.com view
  • Markdown Plaintext Embed Permalink
  • 14/50 words 5s read
    tdro

    Another wandering soul whispering into the void. If you are looking for my blog you are in the wrong place. The profile and header pictures are brought to you by cdd20.

    tdro micro.thedroneely.com (edited) view
  • Markdown Plaintext Embed Permalink
  • 68/50 words 23s read

    I’ve noticed that attacks are becoming commonplace on my domain hosting provider’s name servers (Porkbun).

    Looks like they’ve migrated over to Cloudflare to remedy the situation, but the migration was wonky.

    In the end, having full programmatic control over dns records, transfers, and zones is priceless. So… with a few glue records and zone files — my dns is now back under my control with bind.

    #musings
    tdro

    Another wandering soul whispering into the void. If you are looking for my blog you are in the wrong place. The profile and header pictures are brought to you by cdd20.

    tdro micro.thedroneely.com view
  • Markdown Plaintext Embed Permalink
  • 68/50 words 23s read

    Kiwi Browser (download) is a Chromium derivative on Android that can directly expose the built–in dev tools on device. Remote debugging is my preference, but it makes quick web development a complete disaster debugging on Chrome for Android just a touch easier.

    #clips #programs #webdev
    tdro

    Another wandering soul whispering into the void. If you are looking for my blog you are in the wrong place. The profile and header pictures are brought to you by cdd20.

    tdro micro.thedroneely.com view
  • Markdown Plaintext Embed Permalink
  • 48/50 words 16s read

    I’ve returned from the depths of The Fediverse with a reaction hover i'll... just copy that short code. The version of this post should replace that reaction with a image link.

    I’ll play around with this stolen idea for a bit. Audio reactions might also be another idea worth exploring.

    #metas
    tdro

    Another wandering soul whispering into the void. If you are looking for my blog you are in the wrong place. The profile and header pictures are brought to you by cdd20.

    tdro micro.thedroneely.com view
  • Markdown Plaintext Embed Permalink
  • 48/50 words 16s read
    tdro

    Another wandering soul whispering into the void. If you are looking for my blog you are in the wrong place. The profile and header pictures are brought to you by cdd20.

    tdro micro.thedroneely.com view
  • Markdown Plaintext Embed Permalink
  • 73/50 words 24s read

    There’s an old article from the developer of NetNewsWire ( reader) that questions the idea of the unread count. You can’t read all the unread — so why entertain a time consuming mythos around that number?

    It applies everywhere — What narratives might people create around the programming language % numbers on GitHub? Do they waste time thinking/fretting about their mythos? Fun to think about.

    GitHub’s Language Savant
    GitHub’s Language Savant Linguist
    Index: Cache · Source
    #musings
    tdro

    Another wandering soul whispering into the void. If you are looking for my blog you are in the wrong place. The profile and header pictures are brought to you by cdd20.

    tdro micro.thedroneely.com (edited) view
  • Markdown Plaintext Embed Permalink
  • 143/50 words 48s read
    My puppeteer scripts now use deno.

    No more need for npm in my personal stack! The native browser’s path comes from which.

    javascript
    import puppeteer from "https://deno.land/x/puppeteer@16.2.0/mod.ts";
    
    const chrome = "chromium";  // Browser Chrome: "firefox" | "chromium" | "google-chrome" | ...
    const product = "chrome";   // Product Base:   "firefox" | "chrome"
    
    const command = new Deno.Command("which", { args: [chrome] });
    const { status, stdout, stderr } = command.outputSync();
    const executablePath = new TextDecoder().decode(stdout).trim();
    
    const browser = await puppeteer.launch({
      headless: false,
      executablePath: executablePath,
      product: product,
    });
    
    const site = "example.com";
    const page = await browser.newPage();
    
    await page.setViewport({ width: 1024, height: 768 });
    await page.goto("https://" + site);
    await page.screenshot({ path: site + ".png" });
    
    await page.waitForSelector('a');
    
    const url = await page.evaluate(() => {
      return document.querySelector('a').href;
    });
    
    console.log(url);
    
    await browser.close();
    Basic Boilerplate: Captures a picture of example.com (main.ts)
    shell
    deno run --allow-all main.ts
    Deno Version: 1.45.5
    #gists #webdev
    tdro

    Another wandering soul whispering into the void. If you are looking for my blog you are in the wrong place. The profile and header pictures are brought to you by cdd20.

    tdro micro.thedroneely.com view
  • Markdown Plaintext Embed Permalink
  • 58/50 words 19s read

    The best articles on are from about 15 years ago. In hindsight, RSS was probably thrown away by influential companies and technologists because it was too hard to monetize. The great thing about RSS though is that the spec can be explained to a non–programmer in about an hour — that’s probably why it’s hard to kill.

    #web
    tdro

    Another wandering soul whispering into the void. If you are looking for my blog you are in the wrong place. The profile and header pictures are brought to you by cdd20.

    tdro micro.thedroneely.com view
  • Markdown Plaintext Embed Permalink
  • 62/50 words 21s read

    Meta Platform’s Metaverse (Internet ≈ Facebook in my country) might just succeed. Well… not because they deliver on the “metaverse” (whatever that means) but because it sets up a hardware distribution chain for software/browsers (the only thing that actually matters).

    The problem of global discoverability (in this case ) is partly technical and human. Habbo Hotel might just make a return :-)

    #web
    tdro

    Another wandering soul whispering into the void. If you are looking for my blog you are in the wrong place. The profile and header pictures are brought to you by cdd20.

    tdro micro.thedroneely.com view
  • Markdown Plaintext Embed Permalink
  • 24/50 words 8s read

    Squint hard enough and it sure looks like a command line interface.

    Google’s Search Suggestions
    Google’s Search Suggestions for the command apk add
    Index: Cache · Source
    #musings

    Authors

    Gallery

    Web Feeds (6)

    Web Links