Skip to content

Instantly share code, notes, and snippets.

View sebnil's full-sized avatar

Sebastian Nilsson sebnil

View GitHub Profile
@sebnil
sebnil / bananpiren_privacy_policy.md
Last active April 1, 2019 08:30
Bananpiren privacy policy

Privacy Policy

Crocoraff built the Bananpiren app as a Free app. This SERVICE is provided by Crocoraff at no cost and is intended for use as is.

Information Collection and Use

We don't knowingly collect any data by ourselves. The data that gets collected is via standard game libraries provided by Google or Apple to give you leaderboards.

@sebnil
sebnil / google_forms_responses_to_docx.py
Last active April 29, 2021 21:26
Convert Google Forms responses into a word document (docx) #script
from docx import Document
from openpyxl import load_workbook
# edit these 3 parameters
xlsx_filename = 'Google Forms (Responses).xlsx' # input. export to xlsx from Google Drive.
xlsx_sheet_name = 'Form Responses 1' # which tab to extract data from
docx_filename = 'Google Forms (Responses).docx' # output
column_indexes = {}
responses = []