Hint: GitHub does not allow css except inside SVGs.
CSSSCSS |
---|
Hint: GitHub does not allow css except inside SVGs.
CSSSCSS |
---|
import pikepdf | |
pdf_loc = input("PDF location: ") | |
pdf_pass = input("PDF password: ") | |
pdf = pikepdf.open(pdf_loc, password=pdf_pass) | |
pdf_loc2 = input("Save PDF file under: ") | |
pdf.save(pdf_loc2) |
$localBranches = [System.Collections.ArrayList]@() | |
$remoteBranches = [System.Collections.ArrayList]@() | |
git branch -r | % { if (!($_.split("/")[1].contains("HEAD")) -and !($_.split("/")[1].contains("main"))) { | |
$localBranches.Add($_.split("/")[1]) | |
$remoteBranches.Add($_) | |
} } | |
$index = 0 | |
foreach ($branch in $localBranches) { |