Skip Navigation

Posts
51
Comments
314
Joined
9 mo. ago

  • Andorians, Delphics, Chameloids...

  • Can I get some Cheez Whiz? Or hollandaise?

  • How does one patch KDE2 under FreeBSD?

  • That is exactly as I would hope this would be handled! It is entirely compliant with the rules (at least how I interpret them), so mods should leave it alone, but the community can vote on it however they please.

  • WHAT

    Jump
  • Also the internet icon shows there is Internet.

    Looks to me like the icon that indicates the machine being connected to a network, but that network is not connected to the Internet.

  • When someone puts in just enough extra effort to not break rule seven

  • What doesn't it stand for?

  • What is being implied here? That Website A encourages you to download an image from them in WEBP format, but you cannot then upload that image to Websites B through Z because those sites do not support WEBP?

  • Am I missing a reference here or something?

  • I figured she already shared Picard's hairstyle

  • What a bizarre omission?

  • https://words.englishbix.com/browse/words/w

      javascript
        
    var matches = [];
    document.querySelectorAll('.p-2').forEach(e => {
        var word = e.innerText;
        if(word.endsWith('t')){
            matches.push(`* ${word}`);
        }
    });
    console.log(matches.join('\n'));
    
      
  • 7 centuries? I know that star dates in Star Trek definitely correspond to a specific datetime, but other than the vague "a long time ago", was it ever established when Star Wars took place compared to us?

  • I am referring to this, with Tracy talking directly to the camera and what seems to be Kenneth wearing denim jeans as if he were Theodore Wrangler.

  • when putting in long text like image links, it gets ugly fast and stuff starts to break.

    In that case, I think that tool should prove very helpful. Starting off in a spreadsheet program like Excel is great for keeping things neat/tidy/readable, then you would use that tool to convert to markdown when you are finished and ready to post the table to Lemmy.

    That is sort of how I manage my GIF todo list and the markdown list that I publish on Codeberg. I have a LibreOffice Calc spreadsheet that I use as my todo list, adding new ideas to it as they come to my attention and then marking them off as I complete them. Then, when I am done for the day, I have a custom Python script that I run that reads all the cells in the spreadsheet, rearranges things a bit, and outputs it as a markdown table into the file you see on Codeberg.

    EDIT: @ptz@dubvee.org could possibly even build that functionality right into Tesseract, allowing you to copy from Excel and paste directly into a Tesseract textbox as a markdown table.