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
main[-1u]={1}; |
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
security: | |
encoders: | |
Symfony\Component\Security\Core\User\User: | |
algorithm: bcrypt | |
cost: 12 | |
providers: | |
in_memory: | |
memory: | |
users: | |
admin: |
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 GetGloryFromWins(totalwins) { | |
if (totalwins <= 150) | |
return 20 * totalwins; | |
return Math.floor((10 * (45 * Math.pow(Math.log10(totalwins * 2), 2))) + 245); | |
} | |
function GetGloryFromBestRating(bestrating) { | |
var retval = 0; | |
if (bestrating < 1200) | |
retval = 250; |
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
// ==UserScript== | |
// @name AutoCreatorPatient | |
// @namespace http://tampermonkey.net/ | |
// @version 0.2 | |
// @description try to take over the world! | |
// @author @DylanDelobel | |
// @match https://dev.alaxione.fr/point-vision/* | |
// @icon https://www.google.com/s2/favicons?domain=alaxione.fr | |
// @require https://cdnjs.cloudflare.com/ajax/libs/Faker/3.0.1/faker.min.js | |
// @require https://code.jquery.com/jquery-3.4.1.min.js |
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
{ | |
"basics": { | |
"label": "Fullstack Developer", | |
"characterClass": "Programmer", | |
"website": "https://dylandelobel.com", | |
"phone": "+33 6 10 62 56 57", | |
"email": "[email protected]", | |
"name": "Dylan Delobel", | |
"summary": "Rigorous, autonomous, curious and passionate about computers.", | |
"picture": "dylan.png", |
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
FROM node:alpine | |
WORKDIR /app | |
# COPY package.json and package-lock.json files | |
COPY package*.json ./ | |
# generated prisma files | |
COPY prisma ./prisma/ |