- 1023 > technique
- "blabla mes server et camera marche plus..." mot clé: rétractation ou résiliation
- transfer service résiliation
- service résiliation:
- confirmer la demande de résiliation pour le faire passer en mode rétention de client
- "blabla j ai des camera ca marche plus" mot clé: camera
- transfer service technique niveau 2
- service technique niveau 2: Demander un rollback ipv4
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
04bfa926d9e6478baca4e10ca21b41f46c86781b794765e95dd33514c88f10b05d5088df4d12ed7f834efcf0de1d99199bd4874e0acfac8692650870b0600af0b4;vesparny |
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 | |
use GuzzleHttp\Client; | |
trait MailTestHelper | |
{ | |
/** | |
* @var \GuzzleHttp\Client | |
*/ | |
protected $mailService; |
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
/** | |
* Animate a dashed svg path | |
* @param el DOM path element | |
* @param width Width of the dashes | |
* @param space Space between the dashes | |
*/ | |
animateLine (el, width, space) { | |
let total = Math.floor(el.getTotalLength()) | |
let segment = [width, space] |
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 | |
# Adds reference to GitHub issue if available in branch name. | |
# The issue number should be at the end of the branch name, following | |
# a hyphen. | |
# Only proceed if no second parameter is given to the script. | |
if [ x = x${2} ]; then | |
branch=$(git symbolic-ref --short HEAD) | |
if [[ $branch =~ ^([^/]+)/([A-Z]+\-[0-9]+) ]]; then |
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 python | |
# post-receive hook for git-based deployments | |
import sys | |
import os | |
from subprocess import call | |
# configuration | |
deploy_to_path = os.path.realpath('./deploy_dir') | |
deploy_branch = 'master' |
- 2016-05-27-raspbian-jessie-lite
Best way i found is to install it via nvm (node version manager) Check the version on https://github.com/creationix/nvm/releases
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
postgresql: | |
restart: always | |
image: sameersbn/postgresql:9.4-10 | |
environment: | |
- DB_USER=gitlab | |
- DB_PASS=***changeme*** | |
- DB_NAME=gitlabhq_production | |
volumes: | |
- /srv/docker/gitlab/postgresql:/var/lib/postgresql | |
gitlab: |
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 | |
# Install ssh-agent if not already installed, it is required by Docker. | |
# (change apt-get to yum if you use a CentOS-based image) | |
which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y ) | |
# Run ssh-agent (inside the build environment) | |
eval $(ssh-agent -s) |
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
server { | |
listen 443; | |
server_name docker.domain.tld; | |
client_max_body_size 1G; | |
ssl on; | |
ssl_certificate /path/to/certs/registry.bundle.crt; | |
ssl_certificate_key /path/to/certs/registry.key; | |
location / { |
NewerOlder