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
| ; AutoHotkey v2 | |
| ; QWERTY International + raccourcis français | |
| ; https://www.autohotkey.com/ | |
| ; Accents français | |
| ; AltGr + A -> à | |
| ; AltGr + E -> é (déjà fourni par English International) | |
| ; AltGr + 3 -> è | |
| ; AltGr + C -> ç | |
| ; AltGr + U -> ù |
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
| thème : visual studio | |
| dark visual studio c/c++ visual studio dark c++ | |
| extensions: |
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
| @tailwind base; | |
| @tailwind components; | |
| @tailwind utilities; | |
| //COLORS----------------------------------- | |
| :root { | |
| --color-red: #ef7b7b; | |
| --color-jellow: #fcf3ca; | |
| --color-green: #c4eada; | |
| /* --color-grey: #919190; */ |
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
Show hidden characters
| { | |
| "compilerOptions": { | |
| "target": "ES2020", | |
| "useDefineForClassFields": true, | |
| "lib": ["ES2020", "DOM", "DOM.Iterable"], | |
| "module": "ESNext", | |
| "skipLibCheck": true, | |
| /* Bundler mode */ | |
| "moduleResolution": "bundler", |
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
| { | |
| "compilerOptions": { | |
| "composite": true, | |
| "skipLibCheck": true, | |
| "module": "ESNext", | |
| "moduleResolution": "bundler", | |
| "allowSyntheticDefaultImports": true | |
| }, | |
| "include": ["vite.config.ts"] | |
| } |
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
| { | |
| "présentation":{ | |
| "nom": "", | |
| "prénom": "", | |
| "fonction": "WebDeveloper", | |
| "date-naissance": "29 janvier 1975", | |
| "residant": "Liège, Belgique" | |
| }, | |
| "reseaux":{ | |
| "nom": "", |
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
| /*création des liens ----------------------------------------------------------*/ | |
| const PageLink = () => { | |
| return ( | |
| <div> | |
| <NavLink exact to="/">Home</NavLink> | |
| <NavLink exact to="Works">Works</NavLink> | |
| <NavLink exact to="Contact">Contact</NavLink> | |
| </div> | |
| ); |
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
| npm install gh-pages --save-dev | |
| package.json : | |
| "homepage": "http://olygood.github.io/cardReact", | |
| "scripts": { | |
| "predeploy": "npm run build", | |
| "deploy": "gh-pages -d build" | |
| } | |
| npm run deploy | |
| aller sur gihub, repos, settings, pages, branch, gh-pages |
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
| const setBg = () => { | |
| const square = document.querySelector('.items'); | |
| const randomColor = Math.floor(Math.random()*16777215).toString(16); | |
| console.log(square); | |
| square.style.background = "#" + randomColor; | |
| // console.log(square); | |
| } | |
| setInterval(setBg,1000); |
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
| { | |
| "sync.gist": "fc99bd18f5e19914c135375d46e4e8bc", | |
| "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
| "workbench.colorTheme": "Dracula", | |
| "explorer.confirmDragAndDrop": false, | |
| "explorer.compactFolders": false, | |
| "editor.fontSize": 16, | |
| "editor.wordWrap": "on", | |
| "emmet.syntaxProfiles":{ | |
| "javascript":"jsx" |
NewerOlder