Skip to content

Instantly share code, notes, and snippets.

View PonomareVlad's full-sized avatar

Vladislav Ponomarev PonomareVlad

View GitHub Profile
{
"basics": {
"name": "Vladislav Ponomarev",
"label": "Full-stack Developer",
"image": "https://avatars.githubusercontent.com/u/2877584",
"website": "https://PonomareVlad.ru"
}
}
@PonomareVlad
PonomareVlad / bot.mjs
Created October 11, 2022 08:48
Telebot error handling case
const handleError = async error => {
console.error(error)
this.log.push(error)
try {
switch (error.error_code) {
case 429:
this.abort = true;
console.debug('Task reverted', await this.updateTask(this.task, {status: 'new'}))
break;
default:
if (typeof navigator.serviceWorker !== 'undefined')
navigator.serviceWorker.register('/sw.js');
let deferredPrompt;
const addBtn = document.querySelector("#install-button");
window.addEventListener("beforeinstallprompt", (e) => {
e.preventDefault();
deferredPrompt = e;
addBtn.addEventListener("click", (e) => {
@PonomareVlad
PonomareVlad / YooMoney.svg
Last active January 14, 2023 09:34
YooMoney SVG Logo
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@PonomareVlad
PonomareVlad / QIWI.svg
Last active January 14, 2023 10:10
QIWI SVG Logo
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@PonomareVlad
PonomareVlad / SBP.svg
Last active December 26, 2024 11:37
SBP SVG Logo
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@PonomareVlad
PonomareVlad / Boosty.svg
Last active January 14, 2023 11:05
Boosty SVG Logo
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@PonomareVlad
PonomareVlad / TON.svg
Created January 14, 2023 12:02
TON SVG Logo
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@PonomareVlad
PonomareVlad / filters.json
Created January 26, 2023 12:55
Dragee Bot Filters
{
"city": {
"title": "Город",
"type": "array",
"message": "Вы можете выбрать или убрать необходимые города или сохранить текущие настройки",
"field": "address_info.city.name",
"values": [
"Екатеринбург",
"Верхняя Пышма",
"Берёзовский",
@PonomareVlad
PonomareVlad / aggregation-with-pipeline.js
Created March 2, 2023 21:36
Aggregation with pipeline
db.Vehicle.aggregate([
{
$match: {vin: "..."}
},
{
$lookup: {
from: 'Address', //i want all addresses
localField: '_vin',
foreignField: 'vehicle.vin',
as: 'addresses'