Skip to content

Instantly share code, notes, and snippets.

@nafiesl
nafiesl / how_to_get_telegram_chat_id.md
Created December 20, 2023 11:49
How to get Telegram Bot Chat ID

How to get Telegram Bot Chat ID

Create a Telegram Bot and get a Bot Token

  1. Open Telegram application then search for @BotFather
  2. Click Start
  3. Click Menu -> /newbot or type /newbot and hit Send
  4. Follow the instruction until we get message like so
    Done! Congratulations on your new bot. You will find it at t.me/new_bot.
    
@erratir
erratir / groupBy.js
Last active April 27, 2024 03:08
Group array of objects by object key
/**
* Group array of objects by object key
* Example:
const pets = [
{ type:"Dog", name:"Bobik", skills: { canBite: true } },
{ type:"Cat", name:"Tiger", skills: { canBite: true } },
{ type:"Dog", name:"Tuzik", skills: { canBite: true } },
{ type:"Cat", name:"Leopold", skills: { canBite: false } }
];
@erratir
erratir / utils.js
Last active April 27, 2024 03:07
Функция обертка для кеширования результатов вызова функции
// Функция обертка для кеширования результатов вызова функции
const cache = new Map()
const cached = (fn, fnName = '') => {
if (fnName) console.info(`Результат выполнения функции '${fnName}' будет закэширован`);
return async (...params) => {
const key = params.toString()
if (!cache.has(key) ) {
console.log('функция будет выполнена')
@spalladino
spalladino / mysql-docker.sh
Created December 22, 2015 13:47
Backup and restore a mysql database from a running Docker mysql container
# Backup
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql
# Restore
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active April 27, 2024 03:02
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This no longer works in browser!

Note

This no longer works if you're alone in vc! Somebody else has to join you!

How to use this script:

  1. Accept the quest under User Settings -> Gift Inventory
@brenopolanski
brenopolanski / merge-pdf-ghostscript.md
Last active April 27, 2024 03:00
Merge multiple PDFs using Ghostscript

A simple Ghostscript command to merge two PDFs in a single file is shown below:

gs -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=combine.pdf -dBATCH 1.pdf 2.pdf

Install Ghostscript:

Type the command sudo apt-get install ghostscript to download and install the ghostscript package and all of the packages it depends on.

@holtgrewe
holtgrewe / thread_safe_queue.cpp
Created January 31, 2014 09:07
A simple thread-safe queue implementation based on std::list<> and C++11 threading primitives.
// A simple thread-safe queue implementation based on std::list<>::splice
// after a tip in a talk by Sean Parent of Adobe.
//
// Uses standard library threading and synchronization primitives together
// with a std::list<> container for implementing a thread-safe queue. The
// only special thing is that the queue uses std::list<>::splice in the
// locked region to minimize locked time.
//
// Also implements a maximal size and can thus be used as a buffer between
// the elements in a pipeline with limited buffer bloat.
@taskylizard
taskylizard / fmhy.md
Last active April 27, 2024 02:54
/r/freemediaheckyeah, in one single file (view raw)
@mygoare
mygoare / dns
Created April 15, 2015 04:11
public dns list
#公共DNS
##国外
- Google DNS: `8.8.8.8` `8.8.4.4`
- OpenDNS: `208.67.222.222` `208.67.220.220`
- OpenNIC: `106.186.17.181`(Japan) `128.199.248.105`(Singapore) `203.248.252.2`(Korea)
- Comodo Secure DNS: `8.26.56.26` `8.20.247.20`
- Norton DNS: `198.153.192.1` `198.153.194.1`
- Norton ConnectSafe DNS: `199.85.126.20` `199.85.127.20`
---
@pmhieu111
pmhieu111 / risc-zero-stark-to-snark-prover_attestation.log
Created April 26, 2024 17:58
Attestation for RISC Zero STARK-to-SNARK Prover MPC Phase 2 Trusted Setup ceremony
Hey, I'm pmhieu111-54319153 and I have contributed to the RISC Zero STARK-to-SNARK Prover MPC Phase2 Trusted Setup ceremony.
The following are my contribution signatures:
Circuit # 1 (stark_verify)
Contributor # 148
Contribution Hash: 6dc39ed5 f4fd739c 7b7ab37e 8f14b87c
645d496c 8ab780e1 947090f0 519dda69
15bd9d2e 2a2d5a22 db3eab8d dbf2efa2
f8b91c04 a8301777 6f98c2a6 3ac918f8