Skip to content

Instantly share code, notes, and snippets.

View mdvsh's full-sized avatar
:shipit:
homework

Madhav Shekhar Sharma mdvsh

:shipit:
homework
View GitHub Profile
@ekzhang
ekzhang / Buildcarte.ipynb
Last active March 29, 2024 16:02
Build Systems à la Carte — Python edition
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@soumitradev
soumitradev / LICENSE
Last active September 17, 2020 17:28
A transverse wave simulator written using Plots.jl and Interact.jl
MIT License
Copyright (c) 2020 Soumitra Shewale (soumitradev)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database

@ghandic
ghandic / pil_s3.py
Last active March 15, 2024 14:16
Load image from S3 directly into memory as PIL image and write to S3 directly from memory from PIL image
import boto3
from PIL import Image
from io import BytesIO
import os
class S3ImagesInvalidExtension(Exception):
pass
class S3ImagesUploadFailed(Exception):
pass
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active May 24, 2024 18:19
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example