Skip to content

Instantly share code, notes, and snippets.

View olygood's full-sized avatar

olygood olygood

  • Liege
View GitHub Profile
@olygood
olygood / .ahk
Last active August 8, 2026 13:33
AutoHotkey — accents français sur clavier QWERTY International
; 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 -> ù
@olygood
olygood / gist:65f0c62db916073d10170861b3edd106
Created August 8, 2026 10:50
configuration visual studio code
thème : visual studio
dark visual studio c/c++ visual studio dark c++
extensions:
@olygood
olygood / globals.css
Created March 25, 2024 08:29
globals de nextjs
@tailwind base;
@tailwind components;
@tailwind utilities;
//COLORS-----------------------------------
:root {
--color-red: #ef7b7b;
--color-jellow: #fcf3ca;
--color-green: #c4eada;
/* --color-grey: #919190; */
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
{
"compilerOptions": {
"composite": true,
"skipLibCheck": true,
"module": "ESNext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true
},
"include": ["vite.config.ts"]
}
@olygood
olygood / cv.json
Last active August 14, 2023 09:13
json files
{
"présentation":{
"nom": "",
"prénom": "",
"fonction": "WebDeveloper",
"date-naissance": "29 janvier 1975",
"residant": "Liège, Belgique"
},
"reseaux":{
"nom": "",
@olygood
olygood / reactLink.jsx
Last active August 14, 2023 09:12
react Link
@olygood
olygood / ghPages.text
Created August 16, 2022 16:05
gh-pages
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
@olygood
olygood / randomColor.js
Created April 6, 2022 10:40
js random color
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);
@olygood
olygood / visual-studio-settings.json
Last active November 26, 2022 11:09
préférence visual studio code
{
"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"