This file contains 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
var circleSegment = function(centerX, centerY, radius, startAngle, endAngle) { | |
var PI = Math.PI, | |
cos = Math.cos, | |
sin = Math.sin | |
var startRadians = startAngle * PI / 180, | |
endRadians = endAngle * PI / 180, | |
largeArc = ((endRadians - startRadians) % (PI * 2)) > PI ? 1 : 0 |
This file contains 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
define(`SMART_HOST',`smtp.free.fr') | |
GENERICS_DOMAIN(localhost.localdomain localhost)dnl | |
FEATURE(`genericstable')dnl | |
MASQUERADE_AS(`free.fr')dnl | |
FEATURE(masquerade_envelope)dnl |
This file contains 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
@servers(['web' => 'tuto@localhost']) | |
@setup | |
$dir = "/home/tuto"; | |
$dirlinks = ['tmp/cache/models', 'tmp/cache/persistent', 'tmp/cache/views', 'tmp/sessions', 'tests', 'logs']; | |
$filelinks = ['config/app.php']; | |
$releases = 3; | |
$remote = false; | |
$shared = $dir . '/shared'; |
This file contains 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
#!/usr/bin/env ruby | |
require 'date' | |
servers = { | |
"hostname" => "directory_name", | |
"hostname" => "directory_name", | |
"hostname" => "directory_name", | |
"hostname" => "directory_name", | |
"hostname" => "directory_name" | |
} |
This file contains 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 | |
### | |
# Ce fichier sert à construire un serveur de test (pour les tutoriels) rapidement | |
# NE PAS UTILISER EN PROD ! | |
### | |
# Variables | |
export DEBIAN_FRONTEND=noninteractive |
This file contains 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
" Use exclude option if you don't want the full Layer, | |
" e.g., Layer 'better-defaults', { 'exclude': 'itchyny/vim-cursorword' } | |
function! Layers() | |
" Default layers, recommended! | |
Layer 'fzf' | |
Layer 'unite' | |
Layer 'airline' | |
Layer 'better-defaults' | |
Layer 'syntax-checking' |
This file contains 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 | |
namespace AppBundle\Command; | |
use AppBundle\Entity\Departement; | |
use AppBundle\Entity\Region; | |
use AppBundle\Entity\Ville; | |
use Doctrine\ORM\EntityManager; | |
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand; | |
use Symfony\Component\Console\Input\InputArgument; |
This file contains 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
{ | |
"PresetList": [ | |
{ | |
"AudioCopyMask": [ | |
"copy:aac", | |
"copy:ac3", | |
"copy:dtshd", | |
"copy:dts", | |
"copy:mp3", | |
"copy:truehd", |
This file contains 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 DOMAnimations { | |
/** | |
* Masque un élément avec un effet de repli | |
* @param {HTMLElement} element | |
* @param {Number} duration | |
* @returns {Promise<boolean>} | |
*/ | |
static slideUp (element, duration = 500) { | |
return new Promise(function (resolve, reject) { | |
element.style.height = element.offsetHeight + 'px' |
This file contains 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 { paths } from "../types/generated-schema"; | |
/** | |
* Utility types | |
*/ | |
// Filtre un objet en retirant les clefs qui ne satisfont pas la condition C | |
type Filter<T, C> = Pick< | |
T, | |
{ | |
[Key in keyof T]: T[Key] extends C ? Key : never; |
OlderNewer