Skip to content

Instantly share code, notes, and snippets.

View wa-Nadoo's full-sized avatar

Vitali Kuzmich wa-Nadoo

View GitHub Profile
  1. Нужно написать по адресу "[email protected]" (это консульство Польского посольства в Киеве) письмо с описанием ситуации и просьбой получить гуманитарную визу. Стоит оставить номер телефона, обычно именно звонят (в моем случае отвечали на письма очень быстро, т.к. писал на польском, и телефон не понадобился). Назначат дату и время визита в консульство

  2. Собрать документы:

    • фотография как на шенген
    • распечатанная анкета (см. пункт 4)
    • страховка на весь срок запрашиваемой визы (т.е. на год). Предоставить нужно будет копию полиса и копию чека об оплате (копия чека для Украины обязательна). Скажете, что на национальную визу в Польшу (т.е. рассчитываете в сумме пребывать там 365 дней, а не полгода, как в шенгенскоой), в страховых всё знают
    • паспорт и копия последней страницы + страниц с предыдущими шенгенскими и национальными визами за 5 лет. Если меняли паспорт недавно, то распечатайте скрины/фото старого паспорта и страниц с визами оттуда
  • документы, подтверждающие полит. пре
@disco0
disco0 / index.md
Last active December 29, 2024 05:09
Imagus Sieve #doc

Imagus Seive Configuration

A basic outline on seive configuration in Imagus—based on previous posts by developer, with additions based on own usage.

Extension Implementation

Input Processing

Before it's sent to matching, every URL has its protocol and subdomain removed using the following regex:

Install Mongo with WSL for Windows.

Home

This doc will guide you through installing Mongo DB using WSL through the Command Line.

Most of the steps are listed out here, but this guide will trim them down and make it more straight forward for our needs. There is also 1 step that is not in the link above as well, which will be noted when we come across it.

Install MongoDB Community Edition.

  1. Follow the directions listed on the mongodb official website for your distro of choice.
@isaacplmann
isaacplmann / table-of-contents.md
Last active September 17, 2024 05:20
Advanced Angular Patterns
@subzey
subzey / readme.md
Created March 28, 2017 16:38
Чеклист версталя

Чеклист версталя

  • А что если размеры блока (или окружающего контента) изменятся? У тебя там случаем не захардкожено 3px?

  • Сколько мест в коде придётся изменить, чтобы изменить цвет? А размер?

  • А что если шрифт будет не как у тебя? Даже одна и та же гарнитура в разных браузерах рендерится по-разному.

  • А что если текста будет больше? А что если прям совсем дохрена?

@Rich-Harris
Rich-Harris / service-workers.md
Last active March 10, 2025 04:32
Stuff I wish I'd known sooner about service workers

Stuff I wish I'd known sooner about service workers

I recently had several days of extremely frustrating experiences with service workers. Here are a few things I've since learned which would have made my life much easier but which isn't particularly obvious from most of the blog posts and videos I've seen.

I'll add to this list over time – suggested additions welcome in the comments or via twitter.com/rich_harris.

Use Canary for development instead of Chrome stable

Chrome 51 has some pretty wild behaviour related to console.log in service workers. Canary doesn't, and it has a load of really good service worker related stuff in devtools.

@paulirish
paulirish / what-forces-layout.md
Last active March 13, 2025 03:22
What forces layout/reflow. The comprehensive list.

What forces layout / reflow

All of the below properties or methods, when requested/called in JavaScript, will trigger the browser to synchronously calculate the style and layout*. This is also called reflow or layout thrashing, and is common performance bottleneck.

Generally, all APIs that synchronously provide layout metrics will trigger forced reflow / layout. Read on for additional cases and details.

Element APIs

Getting box metrics
  • elem.offsetLeft, elem.offsetTop, elem.offsetWidth, elem.offsetHeight, elem.offsetParent
@acdlite
acdlite / flux.js
Last active October 7, 2021 17:19
A Redux-like Flux implementation in <75 lines of code
/**
* Basic proof of concept.
* - Hot reloadable
* - Stateless stores
* - Stores and action creators interoperable with Redux.
*/
import React, { Component } from 'react';
export default function dispatch(store, atom, action) {
@kevincennis
kevincennis / v8.md
Last active March 6, 2025 22:24
V8 Installation and d8 shell usage

Installing V8 on a Mac

Prerequisites

  • Install Xcode (Avaliable on the Mac App Store)
  • Install Xcode Command Line Tools (Preferences > Downloads)
  • Install depot_tools
    • $ git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
    • $ nano ~/.zshrc
    • Add path=('/path/to/depot_tools' $path)