Skip to content

Instantly share code, notes, and snippets.

View nubovik01's full-sized avatar
📦
I'm a kitty in the box!

Nikita nubovik01

📦
I'm a kitty in the box!
View GitHub Profile
@Iliannnn
Iliannnn / Discord.js-v14-Events.md
Last active April 30, 2025 01:50
Discord.js v14 Events - Cheatsheet

Discord.js v14 Events

An overview of all events in Discord.js v14 with examples.

📢 | Last updated: 27 July 2022

ℹ️ | client references to your client instance.

ℹ️ | The v13 overview can be found here.

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<title>Rebane's Discord Colored Text Generator</title>
<meta charset="UTF-8">
<meta name="description" content="Rebane's Discord Colored Text Generator">
<meta name="author" content="rebane2001">
<style>
/*
@kkrypt0nn
kkrypt0nn / ansi-colors-discord.md
Last active April 30, 2025 03:01
A guide to ANSI on Discord

A guide to ANSI on Discord

Discord is now slowly rolling out the ability to send colored messages within code blocks. It uses the ANSI color codes, so if you've tried to print colored text in your terminal or console with Python or other languages then it will be easy for you.

Quick Explanation

To be able to send a colored text, you need to use the ansi language for your code block and provide a prefix of this format before writing your text:

\u001b[{format};{color}m
@helart
helart / txt-cities-russia.txt
Created August 21, 2020 16:34
Список городов РФ
Абаза
Абакан
Абдулино
Абинск
Агидель
Агрыз
Адыгейск
Азнакаево
Азов
Ак-Довурак
@inogo
inogo / yandex_search_regions.csv
Created February 7, 2020 09:38
Список кодов регионов поиска Яндекса (параметр &lr=) ранее был доступен по ссылке https://yandex.ru/yaca/geo.c2n
We can't make this file beautiful and searchable because it's too large.
1,"Москва и Московская область"
2,"Санкт-Петербург"
3,"Центральный федеральный округ"
4,"Белгород"
5,"Иваново"
6,"Калуга"
7,"Кострома"
8,"Курск"
9,"Липецк"
@AliveDD
AliveDD / test-rt.js
Created May 20, 2016 12:50
ответы на вопросы по вакансии https://hh.ru/vacancy/16471687
// Каково для вас основное преимущество jQuery по сравнению с "чистым" JavaScript?
// В каких случаях применение jQuery не оправдано?
Преимущество jQuery в более простом доступе и управлении DOM это позволяет быстрее разрабатывать интерфейс. Чистый Javascript эффективнее в нетривиальных задачах, когда критична скорость выполнения скрипта.
// Что такое NaN? Какого он типа? Как проверить значение на равенство NaN?