Skip to content

Instantly share code, notes, and snippets.

View drearondov's full-sized avatar
🏗️
Madly refactoring

Andrea Rondón drearondov

🏗️
Madly refactoring
View GitHub Profile
@AnubisNekhet
AnubisNekhet / !Description.md
Last active October 13, 2024 00:19
Riced capacities callouts snippet

Usage

  1. Download and use the capacities-riced.css as a snippet
  2. Copy the raw value of the capacities-index.md file and paste it in your obsidian note

image

3. Edit the callout to your liking

Callouts

capacities-card: Base container for the card

capacities-body: Container for subject matter

@sminot
sminot / read_feather_from_s3.py
Created September 2, 2018 16:36
Read feather file directly from AWS S3
import io
import boto3
import pandas as pd
def read_feather_file_from_s3(s3_url):
assert s3_url.startswith("s3://")
bucket_name, key_name = s3_url[5:].split("/", 1)
s3 = boto3.client('s3')
retr = s3.get_object(Bucket=bucket_name, Key=key_name)
@omaraboumrad
omaraboumrad / wiki.md
Last active October 23, 2024 00:51
How to contribute to a GitHub Project's Wiki

Setup

Assuming project is SOME/PROJECT And you are FOO

You will need to do the following one time only: