Skip to content

Instantly share code, notes, and snippets.

View amolmt's full-sized avatar
🧑‍💻
TAP TAP TAP

Amol Tangade amolmt

🧑‍💻
TAP TAP TAP
View GitHub Profile
@mrliptontea
mrliptontea / sublime-text-3-windows-shortcuts.md
Last active February 26, 2026 02:37 — forked from TheShrike/gist:6111200
Sublime Text 3 - Useful Shortcuts (Windows)

Sublime Text 3 - Useful Shortcuts (Windows)

General

Shortcut Description
Ctrl+Shift+P command prompt
Ctrl+Alt+P switch project
Ctrl+P go to file
Ctrl+G go to line
@mprajwala
mprajwala / import_csv_to_mongo
Last active July 23, 2023 20:07
Store CSV data into mongodb using python pandas
#!/usr/bin/env python
import sys
import pandas as pd
import pymongo
import json
def import_content(filepath):
mng_client = pymongo.MongoClient('localhost', 27017)