- Basic Concepts
- Continuous Delivery
Delivering Software with confidence, small increments, frequent releases, requires automated tested, automated deployment, automated infrastructure
- Continuous Delivery
- Pipelines
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 sys | |
from awsglue.transforms import * | |
from awsglue.utils import getResolvedOptions | |
from pyspark.context import SparkContext | |
from awsglue.context import GlueContext | |
from awsglue.job import Job | |
from pyspark.sql.functions import col | |
from awsglue.dynamicframe import DynamicFrame | |
## @params: [JOB_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
import sys | |
from awsglue.transforms import * | |
from awsglue.utils import getResolvedOptions | |
from pyspark.context import SparkContext | |
from awsglue.context import GlueContext | |
from awsglue.job import Job | |
from pyspark.sql.functions import col, spark_partition_id | |
from awsglue.dynamicframe import DynamicFrame | |
## @params: [JOB_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
import groovy.transform.ToString | |
/** | |
* identité => type | |
* | |
* Objet : element à une vie | |
* => créé ( réification , donner vie, donner substance à un concept abstrait) | |
* => utilisé | |
* => détruit | |
*/ | |
class Utilisateur { |
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
const rewire = require("rewire") | |
const example = rewire("./example") | |
const isFrenchPhoneNumber = example.__get__("isFrenchPhoneNumber") | |
// @ponicode | |
describe("isFrenchPhoneNumber", () => { | |
test("0", () => { | |
let result = isFrenchPhoneNumber("+33688261221") | |
expect(result).toBe(true) | |
}) | |
}) |
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
function addition(operandA, operandB) { | |
return operandA + operandB; | |
} | |
function fullName(firstName, lastName) { | |
return firstName + " " + lastName; | |
} | |
function isFrenchPhoneNumber(phoneNumber) { | |
return phoneNumber.startsWith("+33"); |
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
package ch.salt.code.challenge; | |
import java.util.ArrayList; | |
import java.util.LinkedList; | |
import java.util.List; | |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="description" content="What does artificial intelligence mean? How does machine learning work? These are tough questions, but important ones to answer. In The Verge’s Real World AI Issue we’re going to look at how this technology is being used in the world around you — here and now."> | |
<meta name="author" rel="www.linkedin.com/in/sylvain-leroy-byoskill"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" | |
crossorigin="anonymous"> |
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
# docker build -t sleroy/byoskill-agent:0.1 . | |
FROM docker:rc | |
MAINTAINER sleroy <sleroy0@gmail.com> | |
# GKE build & testing environment for Circle CI 2.0 | |
USER root | |
ENV NODEJS_VERSION v8 | |
ENV DOCKER_VERSION rc |
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
buildscript { | |
repositories { | |
mavenLocal() | |
mavenCentral() | |
repositories { jcenter() } | |
} | |
dependencies { | |
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") | |
} | |
} |
NewerOlder