This file contains hidden or 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
{ | |
// editor | |
"editor.fontFamily": "Operator Mono, Fira Code, Dank Mono, 'Courier New', Consolas, monospace", | |
"editor.fontWeight": "400", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 16, | |
"editor.lineHeight": 29, | |
"editor.minimap.enabled": false, | |
"editor.formatOnSave": false, | |
"editor.renderControlCharacters": false, |
This file contains hidden or 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
Full Stack Development | |
janvier 2019 - Maintenant | |
Durant mes deux ans d'activité d'auto-entrepreneur, j'ai accepté des très grosses missions et je me suis rendu compte que ce n'était pas fait pour moi. | |
L'objectif étant de faire des missions moyennement courtes jusqu'à trois/six mois au-delà, ça commence à être une routine et je n'aime pas spécialement ça. | |
Cependant vous pouvez proposer quand même votre idée si celui ci est très bien organiser. | |
Just do it ! 👊🏻 |
This file contains hidden or 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
👋Bonjour, | |
Je suis un développeur web __motivé__ et __très passionné__ par son métier depuis quelques années. | |
C'est par curiosité que j'ai découvert la programmation à l'âge de 14 ans. C'est rapidement devenu une passion, toujours guidé par ma curiosité, je me suis mis à expérimenter par moi-même tout un tas de technologie, et je n'ai depuis jamais arrêté ! | |
Je me suis lancé dans l'aventure __Freelance__ car j'apprécie travailler en direct avec le client. __Comprendre__ et __répondre__ à une problématique sont des choses très stimulantes pour moi, et je prends plaisir à m'y impliquer dans le but de livrer un __produit abouti__ ! | |
Force de proposition et créatif, je saurai vous accompagner dans le développement de vos idées. |
This file contains hidden or 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
let bcrypt = require('bcrypt-nodejs'); | |
let password = "hello"; | |
let stored_hash = ""; | |
// first generate a random salt | |
function genSalt(password) { | |
return new Promise((resolve,reject) => { | |
bcrypt.genSalt(10,function(err,salt) { | |
if (err) { |
This file contains hidden or 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
{ | |
"user": { | |
"userId": "b4dc8ddf9839", | |
"name": "Brandon Sueur", | |
"bio" : "Ma curiosité et ma motivation pour le monde du web font de moi quelqu'un de passionné et de travailleur.", | |
"background": "", | |
"mail": "[email protected]" | |
}, | |
"posts": [ |
This file contains hidden or 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
❤️ Like if you think it's good. | |
📝 Comment what you think about it | |
🙏 Thanks for your time |
This file contains hidden or 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 url('https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,600,600i,700,700i'); | |
:root { | |
/* colors */ | |
--colorBlue: #6C87EF; | |
/* fonts */ | |
--fontSize : 16px; | |
--fontColor :#1d1f21; | |
--fontFamily: 'Lato'; |
This file contains hidden or 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
{ | |
"workbench.colorCustomizations": { | |
"input.background": "#263644", | |
"button.background": "#00f8ae", | |
"button.foreground": "#fff", | |
"button.hoverBackground": "#11bf8c", | |
"dropdown.background": "#263644", |
This file contains hidden or 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
[user] | |
name = Brandon Sueur | |
username = brandonsueur | |
email = [email protected] | |
[core] | |
excludesfile = ~/.gitignore | |
autocrlf = false | |
autoclrf = false | |
This file contains hidden or 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
[ | |
{ | |
"key": "cmd+l", | |
"command": "expandLineSelection", | |
} | |
] |