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
<?php | |
// Avec cela tu peut compter le nombre d'occurences d'un courriel dans une liste | |
$list = [ | |
['bon' => true, 'email' => '[email protected]'], | |
['bon' => true, 'email' => '[email protected]'], | |
['bon' => false, 'email' => '[email protected]'], | |
]; |
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
<script src="https://player.vimeo.com/api/player.js"></script> | |
.video-overlay { | |
background-color: rgba(0, 0, 0, 0.904); | |
position: fixed; | |
height: 100%; | |
z-index: 999; | |
width: 100%; | |
top: 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
{ | |
'fr_Hauteur':'100 cm', | |
'fr_Largeur':'50 cm', | |
'fr_Zone':'3', | |
'fr_Floraison':'Mi-été, Fin été', | |
'fr_Couleur':'Blanche, Mauve', | |
'fr_Feuillage':'Caduc', | |
'fr_Utilisation':'Accent, Platebande', | |
'fr_Exposition':'Soleil, Mi-ombre', | |
'fr_Port':'Érigé', |
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
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="600" > | |
<tr> | |
<td style="background-color: #ffffff;"> | |
<a target="_blank" href="https://www.agencesudo.com"> | |
<img src="https://sudo-website-production.s3.ca-central-1.amazonaws.com/email-thumbnails/logo-3.jpg" width="600" height="40" alt="alt_text" border="0" style="width: 600px; height: auto; background: #dddddd; font-family: sans-serif; font-size: 15px; line-height: 15px; color: #555555; margin: auto; display: block; text-align: left;" class="g-img"> | |
</a> | |
</td> | |
</tr> |
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
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="600" > | |
<tr> | |
<td style="background-color: #ffffff;"> | |
<a target="_blank" href="https://www.agencesudo.com"> | |
<img src="https://sudo-website-production.s3.ca-central-1.amazonaws.com/email-thumbnails/logo-3.jpg" width="600" height="40" alt="alt_text" border="0" style="width: 600px; height: auto; background: #dddddd; font-family: sans-serif; font-size: 15px; line-height: 15px; color: #555555; margin: auto; display: block; text-align: left;" class="g-img"> | |
</a> | |
</td> | |
</tr> |
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
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="600" > | |
<tr> | |
<td style="background-color: #ffffff;"> | |
<img src="https://sudo-website-production.s3.ca-central-1.amazonaws.com/email-thumbnails/line.jpg" width="500" height="20" alt="alt_text" border="0" style="width: 600px; height: auto; background: white; font-family: sans-serif; font-size: 15px; line-height: 15px; color: white; margin: auto; display: block; text-align: left;" class="g-img"> | |
</td> | |
</tr> | |
<!-- Clear Spacer : BEGIN --> | |
<tr> |
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 * as vegetalLib from "some-weird-vegetal-lib"; | |
let eatables = ["banana", "apple", "watermelon", "tomato", "carrot", "cucumber", "lettuce", "kiwi", "orange"]; | |
function findWidelyAcceptedAsVegetable (eatables) { | |
return eatables.filter(eatable => vegetableLib.lexicalCheck(eatable) && vegetableLib.debatable(eatable) ? !vegetableLib.isTomato(eatable) : true); | |
} |
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 * as vegetalLib from "some-weird-vegetal-lib"; | |
let eatable = [ | |
"banana", "apple", "watermelon", "tomato", "carrot", | |
"cucumber", "lettuce", "kiwi", "orange" | |
]; | |
function isWidelyAcceptedVegetable (eatable) { | |
let validLexically = vegetableLib.lexicalCheck(eatable); | |
let isTomato = vegetableLib.isTomato(eatable); |
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
type Cat = { name: string, purrVelocity: number }; | |
var Cat = { slideStuffOffTheTable = true }; |
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
class Dog { | |
isDog () { | |
return true; | |
} | |
} | |
// This is fine | |
var dog: Dog; | |
// This is wrong, Syntax error 'Dog' has already been declared. | |
var Dog; |