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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Première page</title> | |
<link | |
rel="stylesheet" | |
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" |
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
[["AAEXA","Assurance accident des exploitants agricoles"],["AAH","Allocation aux adultes handicapés"],["AAI","Autorités administratives indépendantes"],["ACAATA","Allocation de cessation anticipée d'activité des travailleurs de l'amiante"],["ACBUS","Accord de bon usage des soins"],["ACCA","Associations communales de chasse agréées"],["ACCRE","Aide aux chômeurs créateurs ou repreneurs d'entreprise"],["ACOSS","Agence centrale des organismes de sécurité sociale"],["ACOFA","Agence centrale des organismes d'intervention dans le secteur agricole"],["ACP (pays)","Pays d'Afrique, des Caraïbes et du Pacifique"],["ACSE","Agence nationale pour la cohésion sociale et l'égalité des chances"],["ACTA","Association de coordination technique agricole"],["ACTES","Aide au contrôle de la légalité dématérialisée"],["ACTIA","Association de coordination technique des industries agricoles et alimentaires"],["ACTIM","Agence pour la coopération technique, industrielle et économique"],["ACTP","Allocation compensatrice pour tierce perso |
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 pin_project::pin_project; | |
use thiserror::Error; | |
use tokio_postgres::{Client, Connection, Error as PgError}; | |
pub type Oid = tokio_postgres::types::Oid; | |
pub type NoTlsConnection = Connection<tokio_postgres::Socket, tokio_postgres::tls::NoTlsStream>; | |
pub struct LargeObjectBridge { | |
client: Client, | |
} |
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 { expect } from 'chai' | |
import { curry, isArity0, castToCurry20, castToCurry21 } from '../../src/domain/FunctionalProgramming' | |
describe("Domain | FunctionalProgramming", () => { | |
describe("#isArity0", () => { | |
it("should be true when function takes zero arguments", () => { | |
expect(isArity0(() => void 0)).to.be.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
YELLOW = 1 | |
RED =2 | |
EMPTY =0 | |
COL = 7 | |
ROW = 6 | |
class Board: | |
def __init__(self): | |
self.state = [] | |
for i in range(COL): |
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
YELLOW = 1 | |
RED =2 | |
EMPTY =0 | |
COL = 7 | |
ROW = 6 | |
class Board: | |
def __init__(self): | |
self.state = [] | |
for i in range(COL): |
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
YELLOW = 1 | |
RED = 2 | |
EMPTY = 0 | |
COL = 7 | |
ROW = 6 | |
class Board: | |
def __init__(self): | |
self.state = [] |
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 unittest | |
YELLOW = 1 | |
RED = 2 | |
EMPTY = 0 | |
COL = 7 | |
ROW = 6 | |
class Board: |
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 unittest | |
YELLOW = 1 | |
RED =2 | |
EMPTY =0 | |
COL = 7 | |
ROW = 6 | |
class Board: | |
def __init__(self): |
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 unittest | |
class Dictionnary: | |
def __init__(self): | |
self._words = [] | |
def add(self, word): | |
self._words.append(word) |
NewerOlder