- Telecharger l'image depuis: https://personal-archive-eu.s3.eu-west-3.amazonaws.com/rpi-2025-03-28_shrinked.img Image basée sur Raspberry Pi OS Lite - 2024-11-19 toutes les MAJs récentes + compatible tout RPIs récents (testé sur un RPI 4b)
- Dumper l'image sur une carte SD
- Insérer la carte SD dans le RPI et le booter avec une sortie HDMI branchée
- Vous devriez voir apparaître un site web en plein écran après quelques secondes
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
(setq make-backup-files nil) | |
(show-paren-mode 1) | |
(column-number-mode 1) | |
(global-set-key (kbd "C-r") 'kill-line) | |
(global-set-key (kbd "C-x C-w") 'split-window-horizontally) | |
(global-set-key (kbd "C-x C-v") 'split-window-vertically) | |
(global-set-key (kbd "C-x C-d") 'other-window) | |
(global-set-key (kbd "C-c C-c") 'comment-region) | |
(global-set-key (kbd "C-c C-d") 'uncomment-region) |
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
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
import requests | |
from bs4 import BeautifulSoup | |
from docopt import docopt | |
help = """Alloresto ranking by minimum delivery prices | |
Usage: |
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
//FightCode can only understand your robot | |
//if its class is called Robot | |
var Robot = function(robot) { | |
}; | |
Robot.prototype.onIdle = function(ev) { | |
var robot = ev.robot; | |
robot.ahead(100); |