Skip to content

Instantly share code, notes, and snippets.

@ilyaigpetrov
ilyaigpetrov / Бойкот Mail.Ru Group.md
Last active August 25, 2021 08:39
Бойкот «ВКонтакте» и Mail.Ru Group | https://git.io/boycott-vk | by https://git.io/ilyaigpetrov

Эту статью также можно прочитать на medium.com.


Бойкот «ВКонтакте» и Mail.Ru Group

Mail.Ru Group защищает власть от недовольных Mail.Ru Group защищает власть от недовольных
@ilyaigpetrov
ilyaigpetrov / Gentoo Xorg Config For Two Layouts.sh-session
Last active January 26, 2020 14:54
Gentoo Xorg Config For Two Layouts on Gentoo | by https://git.io/ilyaigpetrov
# 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
@ilyaigpetrov
ilyaigpetrov / _0_Hosting Simple Static Site on Appengine Standard for Free.md
Last active January 26, 2020 14:54
Hosting Simple Static Site on Appengine Standard for Free | by https://git.io/ilyaigpetrov

Hosting Simple Static Site on Appengine Standard for Free

This set of files is all you need to host a static web site on Google Appengine Standard for free.

@ilyaigpetrov
ilyaigpetrov / Evaluate the Risk of Browser Extension Before Installing It by Reading the Source Code.md
Last active November 22, 2024 04:04
Evaluate the Risk of Browser Extension Before Installing It by Reading the Source Code | by https://git.io/ilyaigpetrov

Evaluate the Risk of Browser Extension Before Installing It by Reading the Source Code

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:

  1. Extension for Chromium/Chrome: https://chrome.google.com/webstore/detail/chrome-extension-source-v/jifpbeccnghkjeaalbbjmodiffmgedin
  2. Right Click for FireFox: https://superuser.com/questions/771825/how-to-examine-source-code-of-firefox-extension-before-installing-it

Keybase proof

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:

Request Kitchen

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?"

@ilyaigpetrov
ilyaigpetrov / matrix-js-peek-into-room.js
Last active January 26, 2020 14:55
matrix-js-peek-into-room.js | by https://git.io/ilyaigpetrov
'use strict';
(async function() {
const apiPrefix = 'https://matrix.org'
let access_token;
const myFetch = (url, { query, params } = { query: '&', params: {} }) => {

Ways of Handling Rejected Promises in JavaScript

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:

  1. .then(...) takes two arguments: MDN.
  2. .catch(...) is a syntactic surgar around .then(...) with two arguments: MDN.
  3. 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',
})
@ilyaigpetrov
ilyaigpetrov / configure-hapi-style-guide.markdown
Last active January 26, 2020 14:56
How to Configure Hapi Style Guide | by https://git.io/ilyaigpetrov

Short link: https://git.io/hapi-style

How to Configure Hapi Style Guide

npm install --save-dev eslint
npm install --save-dev eslint-plugin-hapi
npm install --save-dev eslint-config-hapi
vim .eslintrc.json
{