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
[colors.bright] | |
black = "#767676" | |
blue = "#1a8fff" | |
cyan = "#14ffff" | |
green = "#23fd00" | |
magenta = "#fd28ff" | |
red = "#f2201f" | |
white = "#ffffff" | |
yellow = "#fffd00" |
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 serial | |
import binascii | |
def main(): | |
# Demander le port série et le baud rate | |
port = input("Entrez le port série (ex: COM3): ") | |
baudrate = int(input("Entrez le baud rate: ")) | |
try: | |
# Configurer la connexion série |
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
--[[ | |
===================================================================== | |
==================== READ THIS BEFORE CONTINUING ==================== | |
===================================================================== | |
======== .-----. ======== | |
======== .----------------------. | === | ======== | |
======== |.-""""""""""""""""""-.| |-----| ======== | |
======== || || | === | ======== | |
======== || KICKSTART.NVIM || |-----| ======== |
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
gsettings set org.gnome.mutter dynamic-workspaces false | |
gsettings set org.gnome.desktop.wm.preferences num-workspaces 9 | |
for i in {1..9}; do | |
gsettings set "org.gnome.shell.keybindings" "switch-to-application-${i}" "[]" | |
gsettings set "org.gnome.desktop.wm.keybindings" "switch-to-workspace-${i}" "['<Super>${i}']" | |
gsettings set "org.gnome.desktop.wm.keybindings" "move-to-workspace-${i}" "['<Super><Shift>${i}']" | |
gsettings set "org.gnome.shell.extensions.dash-to-dock" "app-hotkey-${i}" "[]" | |
done | |
gsettings set org.gnome.desktop.interface enable-animations false |
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
package main | |
import ( | |
"fmt" | |
"net/http" | |
"os" | |
"strings" | |
) | |
func main() { |