Skip to content

Instantly share code, notes, and snippets.

View gillespilon's full-sized avatar
💭
datasense is my current project

Gilles Pilon gillespilon

💭
datasense is my current project
  • Ottawa ON + Chicago IL
View GitHub Profile
@mapa17
mapa17 / pyexcelerate_to_excel.py
Created September 4, 2018 19:46
A helper function to write pandas.DataFrame to excel using pyexcelerate
import pandas as pd
import numpy as np
import timeit
import pyexcelerate
def pyexecelerate_to_excel(workbook_or_filename, df, sheet_name='Sheet1', origin=(1,1), columns=True, index=False):
"""
Write DataFrame to excel file using pyexelerate library
"""
@NickMcSweeney
NickMcSweeney / postgresql_plus_arch-linux.md
Last active July 18, 2024 16:10
Getting postgresql running on Arch Linux

Setup Postgresql

run postgresql with systemctl

Install postgres

latest

sudo pacman -S postgresql

specific version

find version & build from source