Skip to content

Instantly share code, notes, and snippets.

View PonomareVlad's full-sized avatar

Vladislav Ponomarev PonomareVlad

View GitHub Profile
{
"packageManager": "yarn@1.22.21",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"customlint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css,md}\" --config ./.prettierrc"
@PonomareVlad
PonomareVlad / index.mjs
Created November 29, 2023 20:52
MongoDB collections exports
import db from "./mongo.mjs";
db.users.find();
db.posts.find();
db.gifts.find();
/* OR */
import {users, posts, gifts} from "./mongo.mjs";
@PonomareVlad
PonomareVlad / arc.svg
Created April 20, 2023 08:29
Arc browser logo
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Glassmorphism Login Form</title>
<style>
* {
margin: 0;
padding: 0;
{
"filter": {
"typeDealId": 2,
"objectTypeId": 1,
"objectSubType": [],
"numRooms": [
2
],
"countryId": 1,
"regionId": null,
@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'
@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 / TON.svg
Created January 14, 2023 12:02
TON SVG Logo
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
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 November 24, 2023 22:35
SBP SVG Logo
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.