git config --global gui.encoding utf-8
git config gui.encoding utf-8
sudo apt install dconf-editor
/org/gnome/libgnomekbd/keyboard/model
$ fgrep sun_type7 /usr/share/X11/xkb/rules/base.xml
<name>sun_type7_usb</name>
<name>sun_type7_euro_usb</name>
<name>sun_type7_unix_usb</name>
<name>sun_type7_jp_usb</name>
let myVar = false;
const getMyVar = () => myVar;
const setMyVar = (value) => { myVar = value };
module.exports = { getMyVar, setMyVar };
const { getMyVar, setMyVar } = require('./myVarModule');
console.log(getMyVar());
setMyVar(true);
console.log(getMyVar());
paramsSerializer.indexes
Configuration for formatting array indexes in the params.
Three available options:
(1)indexes: null
(leads to no brackets),
(2) (default)indexes: false
(leads to empty brackets),
(3)indexes: true
(leads to brackets with indexes).
axios.get('https://api.kinopoisk.dev/v1.4/movie', {
params: {
page: page,
limit: limit,
notNullFields: ['poster.url', 'movieLength']
},
paramsSerializer: {
indexes: null
}
});
div:has(img:hover) h2 {
color: red;
}
server {
...
# наследуется во все location где явно не задано
auth_request .auth;
location ^~ /unique_domain_without_user_agent_condition {
# тут auth_request не вызываем
auth_request off;
return 402;
}
location .auth {
# проверка UA
if ($http_user_agent !~* "test") {
return 403;
}
return 200;
}
}
$ ls -l /etc/nginx/sites-enabled/default
lrwxrwxrwx 1 root root 34 ott 24 10:54 /etc/nginx/sites-enabled/default -> /etc/nginx/sites-available/default