Vue lecture
gh-repo-config: A GitHub CLI extension to manage repository settings | GitHub
API v3 doc to understand the fields in .github/config/branch-protection/
: https://docs.github.com/en/rest/branches/branch-protection#update-branch-protection--parameters
Example script using it to temporarily disable branch protection rules for a single git push
:
#!/bin/bash
set -o errexit
# Prerequisite: gh repo-config init must be called to initialized JSON config files
config_dir=.github/config/branch-protection
# Backup current configuration:
cp $config_dir/main.json .
# Disable branch protection rules:
yq -iP -o json .required_pull_request_reviews=null $config_dir/main.json
yq -iP -o json .required_status_checks.checks=[] $config_dir/main.json
gh repo-config apply
# Push commit(s):
git push
# Restore initial configuration
mv main.json $config_dir/
gh repo-config apply
⚠️ Currently gh repo-config init
does NOT reflect your current repo settings when initializing files in .github/config/branch-protection/
, cf. issue 159
⚠️ Calling gh repo-config apply
will NOT preserve your current repo settings
— Permalink
Release 2.8.3 of fpdf2 - Release Output Intents, shading patterns, strikethrough text and many more · py-pdf/fpdf2 · GitHub
Added
- support for Output Intents on document level - thanks to @lka
- support for shading patterns (gradients) - thanks to @andersonhc - PR 1334
- support for setting a minimal row height in tables
- support for
v_align
at the row level in tables - new optional
reset_page_indices
parameter forinsert_toc_placeholder()
- support for
strikethrough text - support for
first_line_indent
intext_region.Paragraph
- new ViewerPreferences.print_scaling
- documentation on
fpdf2
internals - documentation on generating Aztec Codes
- added Slovenian translation of the tutorial: Vodič - thanks to @DeepBlackHole
- support for adding TrueType fonts that are missing the
.notdef
glyph - issue 1161 - thanks to @spacegaori - improved SVG image parsing speed by 50% to 70% - thanks to @petri-lipponen-movesense - PR 1350
- added tutorial "tuto7" (in English and German) with documentation to create PDF/A files with fpdf2 - thanks to @lka
Fixed
FPDF.write_html()
: Fixed rendering of content following<a>
tags; now correctly resets emphasis style post</a>
tag: hyperlink styling contained within the tag authority. - issue 1311- FPDF.footer() does not "leak" its text style to the table of contents anymore
FPDF.table()
: Fixed heading styles containing underline failing to render.FPDF.ln()
: the method now allows a value of0
to be provided forh
.- font optimization: only include fonts effectively used in the final PDF document. Fonts added via
set_font()
oradd_page()
but not actually used in the document are no longer included in the final output. This reduces file size and improves performance, especially for documents with many fallback fonts. - issue 1382 - a
KeyError
was raised in some specific cases when auto-downscaling images - issue 1409Changed
- heading rows of tables are never rendered "alone" on a page anymore
— Permalink
GitHub Copilot embarque un mode agent sur VS Code : tout ce que vous devez savoir
GitHub - christophengelmayer/websiteToWord: Script to convert a website to a single word document
Il s'agit d'un ensemble d'outils et de scripts conçus pour simplifier le processus de conversion des pages web en un seul document Microsoft Word. Cet utilitaire est particulièrement utile pour l'archivage, l'analyse de contenu ou la lecture hors ligne. Le processus consiste à générer un plan du site, à extraire le contenu, à le convertir au format Markdown, puis à transformer le fichier Markdown en un document Word avec des ressources optionnelles intégrées.
— Permalien
lycheeverse/lychee: ⚡ Fast, async, stream-based link checker - GitHub
⚡ Fast, async, stream-based link checker written in Rust. Finds broken URLs and mail addresses inside Markdown, HTML, reStructuredText, websites and more!
— Permalink
Gitleaks
Gitleaks is an open source (MIT licensed) secret scanner for git repositories, files, directories, and stdin. With over 20 million docker downloads, 19k GitHub stars, 14 million GitHub downloads, thousands of weekly clones, and over 850k homebrew installs, gitleaks is the most trusted open source secret scanner among security professionals, enterprises, and developers. Gitleaks is maintained by Zach Rice.
— Permalien
cemetery-escape: A game in the terminal. Ghosts chase you. You find the key and escape | GitHub
Damn red 👻!
Nice fun game.
I was looking for a short arcade to play in my terminal, this was just perfect for the evening.
— Permalink
Caido
Outil pour de l'audit web. Alternative à Burp.
https://github.com/caido
— Permalink
GitHub - hatoo/oha: Ohayou(おはよう), HTTP load generator, inspired by rakyll/hey with tui animation.
Pour tester la charge supporté par un serveur.
— Permalink
Introduction - act - User Guide | Manual | Docs | Documentation
Un outil en Go qui permet théoriquement d'executer localement un workflow GitHub.
Pour avoir buté sur un de ces workflows sur une vingtaine de commits récemment, je réalise pleinement la valeur de ce que propose cet outil.
— Permalink