- On your computer, go to your Github security settings. You might be asked your GitHub password.
- Click "Set up two-factor authentication" then "Set up using SMS".
- Fill in your phone number, wait for the text message on your phone, and fill it in on the computer.
- Download and store your recovery codes safely (ex. password manager, KeePass, locked note, printed page ...)
- Click Enable to activate 2FA.
235 membres de Theodo sur Github n'ont pas l'authentification à deux facteurs activée
Applications down, piratées ou fonctionnalités non voulues. Client mécontent, pas de rachat. Risques légaux.[1]
Un non-Theodoer cherche à se connecter à Github sur le compte d'un Theodoer -> il n'y arrive pas
- Get fzf
- Install all-the-package-names globally:
npm i -g all-the-package-names
- Add the following alias to your .bashrc:
alias npmi = 'all-the-package-names | fzf | xargs npm install'
Just use npmi
instead of npm i <package-name>
. All options work (--save
, -g
etc).
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<profiles version="15"> | |
<profile kind="CodeFormatterProfile" name="CRUI" version="15"> | |
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_ellipsis" value="insert" /> | |
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations" value="insert" /> | |
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression" value="do not insert" /> | |
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration" value="insert" /> | |
<setting id="org.eclipse.jdt.core.formatter.parentheses_positions_in_for_statment" value="common_lines" /> | |
<setting id="org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries" value="true" /> | |
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters" value="insert" /> |
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
[tool.poetry] | |
name = "poc_poetry_issue" | |
version = "0.0.1" | |
description = "Online drawing game" | |
authors = ["Foucauld Degeorges <[email protected]>"] | |
[tool.poetry.dependencies] | |
python = "3.10.1" | |
djangorestframework_simplejwt = "==5.0.0" | |
django-eventstream = "==4.3.1" |
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 React, {useRef} from "react" | |
import {createPortal} from "react-dom" | |
import {useFela} from "react-fela" | |
import {initConfetti, Confetto, loop, resizeCanvas} from "./lib" | |
export default function Confetti() { | |
const particlesRef = useRef<Confetto[]>([]) | |