Skip to content

Instantly share code, notes, and snippets.

@georgicodes
georgicodes / gist:9182096
Created February 24, 2014 04:46
Horizontal list of font-awesome icons
.actions li {
display: inline;
list-style-type: none;
padding-right: 5px;
font-size: 1.2em;
}
<span class="actions">
<ul>
<li><i class="fa fa-heart"></i> Add to my wishlist</li>
@ivansaul
ivansaul / google_sheets.py
Created February 11, 2021 08:28
Simplest Way of Reading Google Sheets into a Pandas Dataframe (Python)
import pandas as pd
#Create a public URL
#https://docs.google.com/spreadsheets/d/0Ak1ecr7i0wotdGJmTURJRnZLYlV3M2daNTRubTdwTXc/edit?usp=sharing
#get spreadsheets key from url
gsheetkey = "0Ak1ecr7i0wotdGJmTURJRnZLYlV3M2daNTRubTdwTXc"
#sheet name
sheet_name = 'Sheet 1'