Skip to content

Instantly share code, notes, and snippets.

View crearo's full-sized avatar
🥨

Rish Bhardwaj crearo

🥨
View GitHub Profile
@crearo
crearo / google-photos-add-exif.py
Last active June 27, 2021 18:20
Add Exif Tags to Google Photo via Drive Takeout
#!/usr/bin/python
"""
[ ] List out if there are images which have been missed. (ie, image was there, but no json file)
[ ] Put the images in various directories.
[ ] Add EXIF tags to each of the photos.
"""
import json
import os
import sys
@crearo
crearo / nosql-optimize-reads
Last active May 28, 2023 07:29
Big no to NoSQL: This showcases how it optimizes either reads or writes. You can't do both.
{
"users": [
{
"_id": "user1",
"email": "user1@example.com",
"name": "User One",
"gender": "male",
"friends": [
{
"_id": "user2",