Skip to content

Instantly share code, notes, and snippets.

View nghuyenthevinh2000's full-sized avatar
🎯
Focusing

nghuyenthevinh2000

🎯
Focusing
View GitHub Profile
@nghuyenthevinh2000
nghuyenthevinh2000 / mongodb_shell_commands.md
Created August 25, 2021 04:08 — forked from michaeltreat/mongodb_shell_commands.md
Quick Cheat Sheet for Mongo DB Shell commands.

MongoDB Shell Commands Cheat Sheet.

This is a Cheat Sheet for interacting with the Mongo Shell ( mongo on your command line). This is for MongoDB Community Edition.

Preface:

Mongo Manual can help you with getting started using the Shell.

FAQ for MongoDB Fundamentals and other FAQs can be found in the side-bar after visiting that link.

@nghuyenthevinh2000
nghuyenthevinh2000 / addrCrawl.py
Created May 19, 2023 11:44
script to crawl smart contract address on classic
import requests
import csv
import json
import time
BATCH_SIZE = 100
MAX_RETRIES = 10
ITEMS_PER_PAGE = 100
@nghuyenthevinh2000
nghuyenthevinh2000 / whitespace_2_tab.txt
Created March 6, 2024 10:23
whitespace to tab for Makefile
perl -pi -e 's/^ */\t/' Makefile