Skip to content

Instantly share code, notes, and snippets.

View Frenchcooc's full-sized avatar
☄️
We're hiring 🤘

Corentin Frenchcooc

☄️
We're hiring 🤘
View GitHub Profile
// Unfollow in batch
async function unfollow() {
// Retrieve all followings
window.following = document.querySelectorAll("[role='button'] .css-901oao.css-16my406.r-poiln3.r-bcqeeo.r-qvutc0")
window.waitFor = function (ms) { return new Promise(function(resolve) { setTimeout(resolve, ms) } ) }
let counter = 0;
// Loop through followings
for (let i = 0; i < following.length; i++) {
@Frenchcooc
Frenchcooc / timezones.js
Created June 24, 2024 14:09
Google Calendar Timezones
const timezones = [
{ zone: 'Pacific/Niue', name: 'Niue Time' },
{ zone: 'Pacific/Pago_Pago', name: 'Samoa Standard Time' },
{ zone: 'Pacific/Rarotonga', name: 'Cook Islands Standard Time' },
{ zone: 'Pacific/Honolulu', name: 'Hawaii-Aleutian Standard Time' },
{ zone: 'Pacific/Tahiti', name: 'Tahiti Time' },
{ zone: 'Pacific/Marquesas', name: 'Marquesas Time' },
{ zone: 'Pacific/Gambier', name: 'Gambier Time' },
{ zone: 'America/Adak', name: 'Hawaii-Aleutian Time (Adak)' },
{ zone: 'America/Anchorage', name: 'Alaska Time - Anchorage' },