Declaring yourself to be operating by "Crocker's Rules" means that other people are allowed to optimize their messages for information, not for being nice to you. Crocker's Rules means that you have accepted full responsibility for the operation of your own mind - if you're offended, it's your fault. Anyone is allowed to call you a moron and claim to be doing you a favor. (Which, in point of fact, they would be. One of the big problems with this culture is that everyone's afraid to tell you you're wrong, or they think they have to dance around it.) Two people using Crocker's Rules should be able to communicate all relevant information in the minimum amount of time, without paraphrasing or social formatting. Obviously, don't declare yourself to be operating by Crocker's Rules unless you have that kind of mental discipline.
Note that Crocker's Rules does not mean you can insult people; it means that other people don't have to worry about whether they are insulting you. Crocker's Rules are a dis
This file contains 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
#include <DS1302.h> | |
#include <LCD4884.h> | |
#include <LowPower.h> | |
DS1302 rtc; | |
LCD4884 lcd; | |
const char *daysOfWeek[] = { | |
"Dimanche", |
This file contains 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 | |
""" | |
@author : Samuel FORESTIER | |
@date : Created on 26/10/2017 | |
@version : 1.2.1 | |
@url : https://samuel.forestier.app/blog/security/a-ssh-monitoring-platform-with-discord | |
""" | |
# Packages required : |
I hereby claim:
- I am HorlogeSkynet on github.
- I am horlogeskynet (https://keybase.io/horlogeskynet) on keybase.
- I have a public key whose fingerprint is 2AE0 CBB8 F4E0 A474 CC69 6CCF 4B6F A04B 1AC9 5DD4
To claim this, I am signing this object:
This file contains 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 | |
""" | |
@author : Samuel FORESTIER | |
@date : created on 30/08/2017, updated on 11/16/2024 | |
""" | |
# /// script | |
# dependencies = [ | |
# "bs4", |
This file contains 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 bash | |
# @Author: HorlogeSkynet | |
# @Created: 2017-08-21 | |
# @Updater: 2020-04-14 | |
# @Brief: A simple script to notify an admin by SMS if its ping-answering server is down, using the FREE MOBILE SMS API | |
# In order to use it, add to your Crontab : `0 */1 * * * /bin/bash /path/to/script/checkServer.sh [YOUR.SERVER.HOSTNAME]` | |
FREE_USR="YOUR_FREE_USER" |
This file contains 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 bash | |
# @Author: HorlogeSkynet | |
# @Created: 2017-05-21 | |
# @Updated: 2020-04-14 | |
# @Brief: A simple BASH script for automatically update Flash Player on Linux | |
# From <https://wiki.debian.org/FlashPlayer#Manual_update>. | |
# MUST be run as root. |
This file contains 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 | |
import os | |
import json | |
import subprocess | |
import urllib.request | |
# Just edit this with your GitHub's username |
This file contains 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
#include "DS1302.h" | |
DS1302::DS1302() | |
{ | |
// | |
} | |
void DS1302::_DS1302_start(void) |