Hugo: a static-site generator
[1] https://gohugo.io/
Security updates for Tuesday
[$] Sleepable BPF programs
[1] https://lwn.net/Articles/740157/
Security updates for Monday
Kernel prepatch 5.8-rc4
[1] https://lwn.net/Articles/825348/
Book: Perl 7: A Risk-Benefit Analysis
[1] http://blogs.perl.org/users/grinnz/2020/07/perl-7-a-risk-benefit-analysis.html
[2] https://www.perl.com/article/announcing-perl-7/
Security updates for Friday
LPC town hall #2: the kernel report
[1] https://www.linuxplumbersconf.org/blog/2020/announcing-town-hall-2-the-kernel-weather-report/
OpenSUSE Leap 15.2 released
[1] https://news.opensuse.org/2020/07/02/opensuse-leap-15-2-release-brings-exciting-new-packages/
Security updates for Thursday
LWN.net Weekly Edition for July 9, 2020
Linux Mint drops Ubuntu Snap packages
[1] https://linuxmint.com/
[2] https://blog.linuxmint.com/?p=3906
[3] https://blog.linuxmint.com/?p=3766
[$] Home Assistant improves performance in 0.112 release
[1] https://www.home-assistant.io/
[2] https://www.home-assistant.io/blog/2020/07/01/release-112/
[3] https://lwn.net/Articles/822350/
A set of stable kernels
[1] https://lwn.net/Articles/824960/
[2] https://lwn.net/Articles/824961/
[3] https://lwn.net/Articles/824962/
[4] https://lwn.net/Articles/824963/
[5] https://lwn.net/Articles/824964/
[6] https://lwn.net/Articles/824965/
Security updates for Wednesday
Firefox 78
[1] https://support.mozilla.org/en-US/kb/enhanced-tracking-protection-firefox-desktop#w_protections-dashboard
[2] https://www.mozilla.org/en-US/firefox/78.0/releasenotes/
[$] Btrfs at Facebook
[1] https://lwn.net/Articles/238923/
[2] https://events.linuxfoundation.org/open-source-summit-north-america/
Security updates for Tuesday
[$] Netflix releases open-source crisis-management tool
[1] https://netflixtechblog.com/introducing-dispatch-da4b8a2a8072
[$] First PHP 8 alpha released
[1] https://www.php.net/archive/2020.php#2020-06-25-1
[2] https://wiki.php.net/todo/php80
There has also been some work to allow the interesting use of macro names.
For example, if you wanted all of your "creat()" calls to include read
permissions for everyone, you could say
#define creat(file, mode) creat(file, mode | 0444)
I would recommend against this kind of thing in general, since it
hides the changed semantics of "creat()" in a macro, potentially far away
from its uses.
To allow this use of macros, the preprocessor uses a process that
is worth describing, if for no other reason than that we get to use one of
the more amusing terms introduced into the C lexicon. While a macro is
being expanded, it is temporarily undefined, and any recurrence of the macro
name is "painted blue" -- I kid you not, this is the official terminology
-- so that in future scans of the text the macro will not be expanded
recursively. (I do not know why the color blue was chosen; I'm sure it
was the result of a long debate, spread over several meetings.)
-- From Ken Arnold's "C Advisor" column in Unix Review