Skip to content

Instantly share code, notes, and snippets.

View jdbruxelles's full-sized avatar
😎
Yep, I'm fine

José dBruxelles jdbruxelles

😎
Yep, I'm fine
View GitHub Profile
@jdbruxelles
jdbruxelles / Guide simple pour une course.md
Created May 22, 2024 19:50
Guide simple pour faire efficacement une course à vélo ou à pied.

💡 Guide simple pour une course à vélo ou à pied 🚴 🏃

 

🔹 2 à 3 jours avant 📆

  • Faire encore 1 à 2 entrainements pour rester chaud, et toujours s'étirer.
  • Augmenter progressivement la consommation de glucides (pâtes, riz, pain complet) pour faire le plein d'énergie.
  • 🔻 Éviter les aliments gras et frits, les aliments riches en fibres, l'alcool.
  • Bien s'hydrater avant, pendant et la course.
<!DOCTYPE html>
<html lang="fr">
<head>
<!-- Using STIB image from https://www.bruxelles.be/stalingrad -->
<title>Progression du projet</title>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type"/>
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<style type="text/css">
body {
font-family: Arial, Helvetica, sans-serif;
@jdbruxelles
jdbruxelles / Conseils contre la fatigue oculaire.md
Created November 4, 2022 13:45
Veuillez suivre les conseils suivants afin de réduire la fatigue oculaire

Conseils contre la fatigue oculaire

Veuillez suivre les conseils suivants afin de réduire la fatigue oculaire :

  • Prenez quelques instants à l'écart de l'écran si vous avez travaillé pendant plusieurs heures. Il est recommandé de faire de courtes pauses (au moins 5 minutes) après environ 1 heure de travail continu sur ordinateur. Les pauses courtes et répétées sont plus efficaces qu'une seule pause longue.
  • Pour minimiser la fatigue et la sécheresse oculaire, reposez régulièrement vos yeux en vous focalisant sur un objet éloigné.
  • Répétez les exercices suivants pour réduire la fatigue oculaire :
    • (1) Regardez vers le haut et le bas de façon répétée
    • (2) Faites rouler vos yeux
  • (3) Déplacez votre regard en diagonale
@jdbruxelles
jdbruxelles / Github Webhook Tutorial.md
Created August 25, 2022 11:36 — forked from jagrosh/Github Webhook Tutorial.md
Simple Github -> Discord webhook

Step 1 - Make a Discord Webhook

  1. Find the Discord channel in which you would like to send commits and other updates

  2. In the settings for that channel, find the Webhooks option and create a new webhook. Note: Do NOT give this URL out to the public. Anyone or service can post messages to this channel, without even needing to be in the server. Keep it safe! WebhookDiscord

Step 2 - Set up the webhook on Github

  1. Navigate to your repository on Github, and open the Settings Settings
@jdbruxelles
jdbruxelles / gitBash_windows.md
Created August 4, 2022 23:56 — forked from evanwill/gitBash_windows.md
how to add more utilities to git bash for windows, wget, make

How to add more to Git Bash on Windows

Git for Windows comes bundled with the "Git Bash" terminal which is incredibly handy for unix-like commands on a windows machine. It is missing a few standard linux utilities, but it is easy to add ones that have a windows binary available.

The basic idea is that C:\Program Files\Git\mingw64\ is your / directory according to Git Bash (note: depending on how you installed it, the directory might be different. from the start menu, right click on the Git Bash icon and open file location. It might be something like C:\Users\name\AppData\Local\Programs\Git, the mingw64 in this directory is your root. Find it by using pwd -W). If you go to that directory, you will find the typical linux root folder structure (bin, etc, lib and so on).

If you are missing a utility, such as wget, track down a binary for windows and copy the files to the corresponding directories. Sometimes the windows binary have funny prefixes, so

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8"/>
<title>Card using JdB.CSS (1)</title>
<link rel="stylesheet" href="https://css.bruxelles.dev/jdb?v=1.1.0&c=all">
<style>
#card {
max-width:550px;
min-width: 370px;
@jdbruxelles
jdbruxelles / Curtain.html
Last active July 5, 2022 11:22
Curtain is a CSSBattle challenge : https://cssbattle.dev/play/109
<!DOCTYPE html>
<html>
<head>
<title>Curtain</title>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type"/>
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<style type="text/css">
body {
background: #191919
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jdbruxelles
jdbruxelles / Taggeg function.js
Created January 4, 2022 14:36
A tagged template is a function call that uses a template literal to extracts arguments.
// A tagged template is a function call
// that uses a template literal to
// extracts arguments.
const sum = (msg, x, y) => {
return `${x} + ${y} = ${x + y}`;
};
document.write(sum`${45} ${15}`);
document.write("<br/>");
@jdbruxelles
jdbruxelles / Odoo.html
Created November 24, 2021 16:10
Odoo is a CSSBattle challenge : https://cssbattle.dev/play/81
<!DOCTYPE html>
<html lang="en">
<head>
<title>Odoo</title>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type"/>
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<style type="text/css">
body {
display: flex;