create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
#!/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 = $$; |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
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"))
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.
#!/bin/bash | |
while true | |
do | |
clear | |
echo " | |
,,:.,::. | |
,.. ::. | |
,.. ,,. | |
.. ,.. | |
.. ,. |
I hereby claim:
To claim this, I am signing this object:
import csv | |
from collections import Counter | |
# Download the "Project breakdown" from Sentry | |
with open("your-file-per-project.csv", "r", newline='') as file: | |
reader = csv.DictReader(file) | |
summed = Counter() | |
for row in reader: | |
summed.update({row["projectSlug"]: int(row["acceptedEvents"])}) |
You can also check the official documentation and example here https://pydantic-docs.helpmanual.io/usage/types/#literal-type
http://1.2.3.4/web/index.html#!/movies?serverId=16fe3a5de47f25fb1de848c0a3f435a9&parentId=fc3b74e25d482b4b1bbd0f314e60f776
. Copy the parentId
value (the part after parentId=
, in this example it's fc3b74e25d482b4b1bbd0f314e60f776
@@MOVIE CATEGORY ID@@
value (between two %22
, parentId%3A%20%22@@MOVIE CATEGORY ID@@%22%7D)
) in the code below with the value you copied in the previous step (eg. parentId%3A%20%22fc3b74e25d482b4b1bbd0f314e60f776%22%7D)
javascript:(async%20function()%7Bwindow.movies%20%3D%20window.movies%20%7C%7C%20(await%20ApiClient.getItems(await%20ApiClient.getCurrentUserId()%2C%20%7Brecursive%3A%20true%2C%20parentId%3A%20%22@@MOVIE CATEGORY ID@@%22%7D)).Items%3B%0A%20%20%20%20const%20unplayedMovies%20%3D%20movies.filter(movie%20%3D%3E%20movie.UserData.Played%20%3D%3D%3D%20false%20%26%26%20movie.IsFolder%20%3D%3D%3D%20false)%3B%0A%20%20%20%