Эту статью также можно прочитать на medium.com.
# File: /etc/X11/xorg.conf.d/30-keyboard.conf | |
Section "InputClass" | |
Identifier "keyboard-all" | |
Driver "evdev" | |
Option "XkbLayout" "us,ru" | |
Option "XkbOptions" "grp:alt_shift_toggle,grp_led:scroll,compose:rwin,terminate:ctrl_alt_bksp" | |
MatchIsKeyboard "on" | |
EndSection |
This post is written for Manifest v2, Manifest v3 is not yet released at the moment.
Ok, kids, today we are going to scrutinize a source code of a browser extension to speculate about its risks.
First, you will need to know how to download or view browser extension source codes:
- Extension for Chromium/Chrome: https://chrome.google.com/webstore/detail/chrome-extension-source-v/jifpbeccnghkjeaalbbjmodiffmgedin
- Right Click for FireFox: https://superuser.com/questions/771825/how-to-examine-source-code-of-firefox-extension-before-installing-it
I hereby claim:
- I am ilyaigpetrov on github.
- I am ilyaigpetrov (https://keybase.io/ilyaigpetrov) on keybase.
- I have a public key whose fingerprint is 7EF4 ED7C 6C9E 54A5 F1FE 74F0 B7E2 70A4 199F 1EC2
To claim this, I am signing this object:
Extension for handling requests according to lists added by user (e.g. lists may be hosted on github, npm -- any url will work. Maybe there even will be a special support for popular tabular data editors like google docs/spreadsheets).
The internal workings of the extension are based on PAC scripts.
You just click a specially formed url (e.g. request-kitchen.appspot.com/add-list=https://raw.github.com/foo/bar)
and extension hijacks your click and shows user a big WARNING page, e.g. "You are about to conceive a child by installing this list named 'POOP' which purpose is 'Throw some poops in your browser'. Are you sure?"
'use strict'; | |
(async function() { | |
const apiPrefix = 'https://matrix.org' | |
let access_token; | |
const myFetch = (url, { query, params } = { query: '&', params: {} }) => { |
This note/example shows 3 different ways of handling promise rejections in JavaScript.
Before we start you may want to refresh in your mind that:
.then(...)
takes two arguments: MDN..catch(...)
is a syntactic surgar around.then(...)
with two arguments: MDN.- Exploring JS:
Exceptions that are thrown in the callbacks of then() and catch() are passed on to the next error handler, as rejections
const https = require('https') | |
/* | |
const argv = require('yargs') | |
.option('token', { | |
alias: 't', | |
describe: 'api token', | |
demand: true, | |
type: 'string', | |
}) |
Short link: https://git.io/hapi-style
npm install --save-dev eslint
npm install --save-dev eslint-plugin-hapi
npm install --save-dev eslint-config-hapi
vim .eslintrc.json
{