Skip to content

Instantly share code, notes, and snippets.

// Exemple de boot AXIOS pour Quasar
import { boot } from 'quasar/wrappers'
import axios from 'axios'
// Initialisation de l'API
const monApi = axios.create({
baseURL: 'https://mon.api.com/',
timeout: 30000,
headers: {
<!DOCTYPE html>
<html lang="fr">
<head>
<!-- Jeu de caractères utilisé pour l'encodage du fichier HTML -->
<meta charset="UTF-8">
<!-- Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Titre de la page -->
<title>Titre de la page | Nom du site</title>
<!-- Auteur -->
<!DOCTYPE html>
<html lang="fr">
<head>
<!-- Jeu de caractères utilisé pour l'encodage du fichier HTML -->
<meta charset="UTF-8">
<!-- Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Titre de la page -->
<title>Titre de la page | Nom du site</title>
<!-- Auteur -->
<!DOCTYPE html>
<html lang="fr">
<head>
<!-- Jeu de caractères utilisé pour l'encodage du fichier HTML -->
<meta charset="UTF-8">
<!-- Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Titre de la page -->
<title>Titre de la page | Nom du site</title>
<!-- Auteur -->
@fallinov
fallinov / html-base-etape-1.html
Last active January 19, 2021 09:04
Fichier HTML de base
<!DOCTYPE html>
<html lang="fr">
<head>
<!-- Jeu de caractères utilisé pour l'encodage du fichier HTML -->
<meta charset="UTF-8">
<!-- Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Titre de la page -->
<title>Titre de la page | Nom du site</title>
<!-- Auteur -->
@fallinov
fallinov / gist:543a191e4ed9a7d3ecd75049c04b73bb
Last active November 10, 2017 10:03
Test d’annotation d’un gist
<!-- SFA : Ajouter titre principal -->
<p>Je suis un paragraphe</p>
<h2>Je suis un titre de niveau 2</h2>
@fallinov
fallinov / hello.php
Last active June 5, 2016 11:11
Plugin "Hello Dolly" de WordPress
<?php
/**
* @package Hello_Dolly
* @version 1.6
*/
/*
Plugin Name: Hello Dolly
Plugin URI: http://wordpress.org/plugins/hello-dolly/
Description: This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from <cite>Hello, Dolly</cite> in the upper right of your admin screen on every page.
Author: Matt Mullenweg
@fallinov
fallinov / dabblet.css
Last active February 11, 2016 16:24
Untitled
body {
margin : 0;
padding : 0;
font-size : 1.5em;
background-color: black;
}
a, a:visited {
color : #45B29D;
text-decoration : none;
var villes = [
"Porrentruy, CH",
"Delémont, CH",
"Lausanne, CH",
"Genève, CH",
"Sion, CH",
"Neuchâtel, CH",
"Fribourg, CH",
"Berne, CH",
"Zurich, CH",
@fallinov
fallinov / httpd-vhosts.conf
Last active August 29, 2015 14:19
XAMPP - Ajout d'un virtual host
NameVirtualHost *
<VirtualHost *>
DocumentRoot "C:\xampp\htdocs"
ServerName localhost
</VirtualHost>
<VirtualHost *>
DocumentRoot "C:\mes-sites\yoda-shop\www"
ServerName yoda-shop.local