Tech News 2 : Project Mariner, Tecno Phantom V Fold2

Google has just announced Project Mariner Date : [15/12/2024] Google has just announced “Project Mariner”, a Chrome extension that explores human-machine interactions to understand and analyze the content of your screen (Google Chrome) using Gemini AI and to offer you actions to interact with you. Read more: Tecno Phantom V Fold2 Date : [15/12/2024] Tecno … Read more

Tech News 1 : Telegram, Android XR

Telegram has removed more than 15 million illegal groups Date : [14/12/2024] Telegram has removed more than 15 million illegal groups from its platform during the year 2024, and continues to delete illegal accounts and content every day through the use of artificial intelligence. Read more: Google announces Android XR OS Date : [14/12/2024] To … Read more

Daily Reminders – Reminders App

Daily Reminders is a productivity app designed to help you manage tasks effortlessly with a clean, simple interface. It allows you to set time-based reminders, group tasks into categories, and track your task history, making it easier to stay organized and prioritize what’s important. With features like task editing and progress monitoring, Daily Reminders is … Read more

Javascript : Get current url

Hello friends, if you want to have the URL address of a page in JavaScript you can use the following function: window.location.href Here is an example: Explanations: var pageURL = window.location.href : put the page URL in the variable. console.log(pageURL) : display the URL.

Javascript : endsWith()

Returns true or false depending on if a string finishes with characters from another string. searchString: The characters to be searched for at the end of the string.length (optional): The length of the string to be considered. Default is the length of the string. Here is an example of the function: