sudo apt install nitrogen
Mod+d nitrogen
Select an image and apply
{ | |
"Version": "2008-10-17", | |
"Statement": [ | |
{ | |
"Sid": "AllowPublicRead", | |
"Effect": "Allow", | |
"Principal": { | |
"AWS": "*" | |
}, | |
"Action": "s3:GetObject", |
# Add the content below in your /etc/hosts file on Linux and macOS or C:\Windows\System32\drivers\etc\hosts on Windows | |
# Block X/Twitter | |
127.0.0.1 twitter.com | |
127.0.0.1 *.twitter.com | |
127.0.0.1 www.twitter.com | |
127.0.0.1 mobile.twitter.com | |
127.0.0.1 m.twitter.com | |
127.0.0.1 api.twitter.com | |
127.0.0.1 ads.twitter.com |
# Remove-SysmonOldLogs.ps1 | |
$Folder = "C:\Sysmon" | |
$Days = 30 | |
Get-ChildItem -Path $Folder -Recurse -File | Where-Object { | |
($_.LastWriteTime -lt (Get-Date).AddDays(-$Days)) | |
} | Remove-Item -Force |
add_filter('the_content', function($content) { if (is_single()) {
$word_count = str_word_count(strip_tags(get_post_field('post_content', get_the_ID())));
$reading_time = ceil($word_count / 200);
$content = 'Temps de lecture estimé : ' . $reading_time . ' minute(s).' . $content;
}
return $content;
});