Skip to content

Instantly share code, notes, and snippets.

View sandeep-devarapalli's full-sized avatar
🏠
Working from home

Sandeep Devarapalli sandeep-devarapalli

🏠
Working from home
  • Datazip
  • Bangalore
  • 10:51 (UTC -12:00)
View GitHub Profile
@tanaypratap
tanaypratap / hiring-partner.md
Last active May 13, 2020 15:39
Invitation to become a hiring partner

invitation for hiring partner

Namaste Industry Leader!

It would be a pleasure to have you and your organisation as a hiring partner. This for the “Job Challenge” I have started for my students. As you might know, I have started teaching programming to students for free from past one year. We have around 20K students learning through variety of social media platforms. This challenge is for them, open for everyone.

what's this challenge?

Participants need to complete the following minimum tasks for the challenge:

  • 5 projects
@nicolasdao
nicolasdao / open_source_licenses.md
Last active October 14, 2024 14:37
What you need to know to choose an open source license.
@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)