Skip to content

Instantly share code, notes, and snippets.

@Jodaille
Jodaille / Carre100.gcode
Created September 23, 2022 16:53
Carre 100
M5
G0 X0 Y0
M03 S3000
(pause)
G4 P0.5
G1 X0 Y0 F500
G0 X100 Y0
@Jodaille
Jodaille / circle.gcode
Created September 23, 2022 16:52
Plotter circle
M5
G1 X0 Y0 F3000
G1 X0 Y10 F500
M03 S1000
G03 X0 Y10.000 I0 J-10
// ==UserScript==
// @name GithubDiffStyle
// @version 1
// @grant none
// @match https://github.com/*/*/commit*
// @run-at document-idle
// ==/UserScript==
@Jodaille
Jodaille / PHP8 @ Laravel
Last active May 25, 2022 12:52
Php Debian
# Install cert/tools
sudo apt install -y lsb-release ca-certificates apt-transport-https software-properties-common gnupg2
# Add Sury repository for PHP
echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/sury-php.list
wget -qO - https://packages.sury.org/php/apt.gpg | sudo apt-key add -
# update packages list
sudo apt update