- Al Viro on
struct file
refcounts - Peter Z. and Linus on scopes in C
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Get your profile from about:support page. | |
* Create ~/.mozilla/firefox/<profile>/chrome directory. | |
* Place to ~/.mozilla/firefox/<profile>/chrome/userContent.css file. | |
* Run restorecon -R -F ~/.mozilla/firefox/<profile>/chrome on SELinux-enabled distros. | |
* Set toolkit.legacyUserProfileCustomizations.stylesheets to true in about:config page. | |
* Restart Firefox and it should be working. | |
*/ | |
@-moz-document domain("www.example.com") { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
# KVM/QEMU/LibVirt HMP/QMP shell functions | |
# Copyright (C) 2024 Matous Jan Fialka, <https://mjf.cz/> | |
# Released under the terms of the "MIT" license | |
# Usage: qmp [DOMAIN [COMMAND]] | |
qmp() { | |
case "$#" in |
- The Rust Programming Language (official website)
- The Rust Programming Language (the "Book")
- Comprehensive Rust 🦀 (by Google)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set -g status-style 'bg=green fg=black' | |
set -g status-position top | |
set -g message-style 'bg=yellow fg=black' | |
set -g pane-border-status bottom | |
set -g pane-border-style 'bg=black fg=white dim' | |
set -g pane-active-border-style 'bg=black fg=cyan' | |
set -g pane-border-format "#{?pane_active,#[reverse],#[default]} #{pane_title} (#{pane_index}) " |
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD",
"SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in BCP 14 [RFC2119] [RFC8174]
when, and only when, they appear in all capitals, as shown here.
The key words MUST, MUST NOT, REQUIRED, SHALL, SHALL NOT, SHOULD,
(
echo -e 'INDEX,NAME,TYPE,KIND,LINK,LINDEX'
sudo ip -all netns exec ip -details -j -p link show |
sed '/^netns:/d' |
jq -n '[inputs] | add' |
jq -r '.[] | "\(.ifindex),\(.ifname),\(.link_type),\(.linkinfo.info_kind),\(.link),\(.link_index)"' |
sort -unk1
) |
column -ts,
NewerOlder