Here you can find a number of best practices that you should strive to follow when you develop.
This will ensure that we produce better and safer code, easier to understand, to extend, in short: more maintainable.
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
| #!/bin/bash | |
| while true | |
| do | |
| clear | |
| echo " | |
| ,,:.,::. | |
| ,.. ::. | |
| ,.. ,,. | |
| .. ,.. | |
| .. ,. |
Git est un logiciel de gestion de versions. Développé par Linus Torvalds en 2005 pour gérer le développement du noyau Linux. Git est disponible sur à peu près toutes les plateformes : Windows, macOS, Linux (toutes les distro), Android (et autres ARM)...
(PS : Ça se prononce "guitte", à l'inverse de "gif" (qui se dit "jif"))
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
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/perl | |
| # use strict; | |
| # use warnings; | |
| use List::Util qw(shuffle); | |
| use IO::Handle (); | |
| use IO::File (); | |
| use Net::Address::IP::Local; | |
| $|=1; | |
| $count = 0; | |
| $pid = $$; |
NewerOlder