This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Client, createClient, dedupExchange, errorExchange, fetchExchange, ssrExchange } from '@urql/core' | |
| import { ref } from 'vue' | |
| import { devtoolsExchange } from '@urql/devtools' | |
| import * as Session from 'supertokens-web-js/recipe/session' | |
| import { authExchange } from '@urql/exchange-auth' | |
| import { defineNuxtPlugin } from '#app' | |
| const ssrKey = '__URQL_DATA__' | |
| export default defineNuxtPlugin((nuxtApp) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export interface GridInstance { | |
| el: HTMLElement | |
| items: HTMLElement[] | |
| gap: number | |
| columns: number | |
| count: number | |
| } | |
| export function masonryGridPolyfill(selectors = '.masonry-grid') { | |
| const elements = [...document.querySelectorAll<HTMLElement>(selectors)] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 000abv | |
| 0db | |
| 0mb | |
| 0we | |
| 0wf | |
| 0z | |
| 1 | |
| 11v | |
| 18ani | |
| 18plus |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import type { Ref } from 'vue'; | |
| export const useLang: () => Ref<string> = () => { | |
| if (process.client) { | |
| return ref(navigator.language); | |
| } | |
| const parseLangString: (languages: string) => string = (languages) => { | |
| return languages.split(',')[0]; | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Working code with Vue3 | |
| // Create Folder plugin > Create file useEmitter.js | |
| import { defineNuxtPlugin } from '#app' | |
| import mitt from 'mitt' | |
| const emitter = mitt() | |
| export default defineNuxtPlugin((nuxtApp) => { | |
| nuxtApp.provide('bus', { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Unicode 0x2680-0x2685 are the sides of a dice (⚀⚁⚂⚃⚄⚅) | |
| console.log('%c'+String.fromCodePoint(0x267f + Math.floor(Math.random() * 6) + 1), 'font-size: 4rem;') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/bash | |
| # Si vous rencontrez une erreur du type `declare: -A: invalid option` | |
| # c’est qu’il vous faut mettre à jour votre version bash à v4. | |
| # Pour Mac OS, regardez ici : http://clubmate.fi/upgrade-to-bash-4-in-mac-os-x/ | |
| # Hash utilisant la clé comme expression de recherche (Regex) et la valeur | |
| # associée comme message d’erreur | |
| declare -A PATTERNS; | |
| PATTERNS['^[<>|=]{4,}']="Vous avez des marqueurs de conflits qui traînent"; | |
| PATTERNS['TODO|FIXME']="Vous avez des tâches non terminées (FIXME/TODO)"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fastify.get('/api/watch', async function (req, res) { | |
| const mp4Url = "https://download1319.mediafire.com/ky961ln87icg/cl1lndr4pyy4cv4/aAbnw92_460svav1+%281%29.mp4"; | |
| const response = await axios.get(mp4Url, { | |
| responseType: "stream", | |
| headers: { | |
| "User-Agent": | |
| "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36", | |
| }, | |
| }); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| String.prototype.slugify = function (separator = '-') { | |
| return this.toString() | |
| .normalize('NFD') | |
| .replace(/[\u0300-\u036f]/g, '') | |
| .toLowerCase() | |
| .trim() | |
| .replace(/[^a-z0-9 ]/g, '') | |
| .replace(/\s+/g, separator) | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const countries = [ | |
| "Afghanistan", | |
| "Albania", | |
| "Algeria", | |
| "Andorra", | |
| "Angola", | |
| "Antigua and Barbuda", | |
| "Argentina", | |
| "Armenia", | |
| "Australia", |