Another social media site, Bluesky, founded by Jack Dorsey, who was incidentally one of the founding members of Twitter, also revealed a similar vertical video feed feature. These announcements are speculated to be in response to TikTok’s uncertain future in the US. Notably, Elon Musk-owned for users in the US. The company claims it will be “an immersive new home for videos.” The feed can be accessed through a play button at the bottom of the screen. The company did not confirm if this feature will be available to other users outside the US. Bluesky, on the other hand, revealed that it is getting “in on the video action too,” and that a customizable video feed is available for all users. . Like other Bluesky feeds, users “can choose to pin these or not.” The company clarified that the users will be able to swipe up to access a timeline of “only video posts.” It is available to all users on the mobile app, the company said.The series of dedicated vertical video feed integration among competing apps is speculated to be related to the disruption that the short-lived TikTok ban created in the US. The Bytedance-owned app stopped working for US users late on Saturday, but the ban was reversed the very next day.The discussion surrounding the ban in the country went on for months. The uncertainty of the popular short-video-sharing app’s future in the country led to a lot of users and competing developers scrambling for alternatives. According to a recent report, Perplexity AI, a US search engine startup, offered a bid to ByteDance on Saturday for the firm to merge with TikTok US. For the latest tech news and reviews, follow Gadgets 360 on X, Facebook, WhatsApp, Threads and Google News. For the latest videos on gadgets and tech, subscribe to our YouTube channel. If you want to know everything about top influencers, follow our in-house Who’sThat360 on Instagram and YouTube. Microsoft Brings Semantic Indexing to Windows Search on Snapdragon-Powered Copilot+ PCs
Credit-Read More
// Function to fetch the latest posts
function fetchLatestPosts() {
const feedUrl = ‘https://newskiosk.pro/feed/’; // Replace with your blog’s RSS feed URL
fetch(feedUrl)
.then(response => response.text())
.then(str => new window.DOMParser().parseFromString(str, “text/xml”))
.then(data => {
const items = Array.from(data.querySelectorAll(“item”));
const latestPostsContainer = document.getElementById(“latest-posts”);
latestPostsContainer.innerHTML = ”; // Clear previous posts
// Shuffle the items array
const shuffledItems = items.sort(() => Math.random() – 0.5);
Random Latest Posts Display // Select the first 5 items from the shuffled array
const selectedItems = shuffledItems.slice(0, 5);
// Loop through the selected items and display them
selectedItems.forEach(post => {
const link = post.querySelector(“link”).textContent;
const description = post.querySelector(“description”).textContent;
// Create a new post element
const postElement = document.createElement(“div”);
postElement.classList.add(“latest-post”);
postElement.innerHTML = `
${description} Read more
`;
// Append the new post element to the container
latestPostsContainer.appendChild(postElement);
});
})
.catch(error => console.error(‘Error fetching the latest posts:’, error));
}
// Call the function to fetch and display the latest posts
fetchLatestPosts();