you shytposting and don't have an answer to the nonsense your posting
twitter.Com/NerdAtCoolTable
you shytposting and don't have an answer to the nonsense your posting
no one is mad but you making accusations with zero evidenceY’all gotta lighten up
no one is mad but you making accusations with zero evidence
I guess we will need a site update to embed Mastodon and eventually threads...
I'm down to one working instance on Nitter but I think I'll hold off on threads until something similar is created. I'm thinking/hoping it'll be a lot easier to create w/ ActivityPub running it
Kreig Durham (@kreig@writing.exchange)
Attached: 1 image The Zuck suck is in full swing. In the few short hours since I started using #Threads, #DuckDuckGo has already blocked over 200 data tracking attempts. These include things like "headphone status" and "screen density." EDIT for clarity: The 200+ attempts *may* have been...writing.exchange
Looking forward to the Mastodon embeds
I'm down to one working instance on Nitter but I think I'll hold off on threads until something similar is created. I'm thinking/hoping it'll be a lot easier to create w/ ActivityPub running it
I got chatgpt to make a userscript that would load mastodon links like twitter posts.
it basically determines if a link is a mastodon link based on the @Username and post id. it's then add to the end /embed.js for each mastodon instance link with it's unique domain.
Code:// ==UserScript== // @name Mastodon Embed Links // @version 1 // @description Embed Mastodon posts in Xenforo-compatible forums // @match https://www.thecoli.com/threads/* // @match https://thecoli.com/threads/* // ==/UserScript== (function() { 'use strict'; // Regex pattern to match Mastodon links const mastodonRegex = /^https?:\/\/([a-z\d-_]+\.)*([a-z\d-_]+)\.([a-z]{2,})(\/@[a-zA-Z0-9-_]+\/\d+)/; // Find all links on the page const links = document.getElementsByTagName("a"); for (let i = 0; i < links.length; i++) { const link = links[i]; const href = link.getAttribute("href"); // Check if the link matches the Mastodon regex pattern if (mastodonRegex.test(href)) { const match = href.match(mastodonRegex); const username = match[4].split("/")[1]; const postID = match[4].split("/")[2]; const domain = match[2]; // Create the iframe embed code const embedUrl = `${href}/embed`; const scriptSrc = `https://${domain}/embed.js`; const iframe = document.createElement("iframe"); iframe.src = embedUrl; iframe.classList.add("mastodon-embed"); iframe.style.maxWidth = '550px'; iframe.style.border = "0"; iframe.style.width = '100%'; iframe.style.height = '400px'; iframe.setAttribute("allowfullscreen", "allowfullscreen"); const script = document.createElement("script"); script.src = scriptSrc; script.async = true; iframe.appendChild(script); // Replace the link with the embedded post link.parentNode.replaceChild(iframe, link); // Listen for the "load" event on the iframe iframe.addEventListener("load", () => { // Get the width and height of the content inside the iframe const iframeContentWidth = iframe.contentWindow.document.body.offsetWidth; const iframeContentHeight = iframe.contentWindow.document.body.offsetHeight; // Set the width and height of the iframe to the size of the content iframe.width = iframeContentWidth; iframe.height = iframeContentHeight; }); } } })();
To use this script:
- Install the Tampermonkey browser extension if you haven't already.
- Open the Tampermonkey dashboard and click on the "Create a new script" button.
- Replace the default content with the userscript provided above.
- Save the script (Ctrl+S or Command+S) and make sure it's enabled in Tampermonkey.
some posts with a mastodon link.
Repped. Imma give it a shot (and take into account the very clear reminder that I need to step up my LLM requests )i've been using a userscript to view mastodon links as embeds on the coli. the only issue is it doesn't dynamically resize.
Repped. Imma give it a shot (and take into account the very clear reminder that I need to step up my LLM requests )
Woooooowwww
it was a tweet from and he banned her account so all her tweets on thecoli are dead like all the other ones from the people he banned.
No hashtags, no search, no DMs, no following feed. Seems like they pushed this out early just to capitalize on Twitter's restrictions. But they could've waited couple of more months and I'm sure Elon would've done something stupid again.So Threads don't have hashtags it seems ?
@NerdNash
pretty good write-up noting elons lies.
Elon Musk Is Pathologically Full of Sh*t
It's been extremely annoying to hear conservatives now accuse critics of Musk of disliking him because he's a free speech crusader or some kind of conservative.www.mediaite.com
No hashtags, no search, no DMs, no following feed. Seems like they pushed this out early just to capitalize on Twitter's restrictions. But they could've waited couple of more months and I'm sure Elon would've done something stupid again.
Developers will have their hands full