Skip to content

Instantly share code, notes, and snippets.

View nz-angel's full-sized avatar
🎯
Focusing

Nazareno A. Faillace Mullen nz-angel

🎯
Focusing
View GitHub Profile
#auto adjusting column width of cells for openpyxl 3.0
for column_cells in ws.columns:
unmerged_cells = list(filter(lambda cell_to_check: cell_to_check.coordinate not in ws.merged_cells, column_cells))
length = max(len(str(cell.value)) for cell in unmerged_cells)
ws.column_dimensions[unmerged_cells[0].column_letter].width = length * 1.2
@rxaviers
rxaviers / gist:7360908
Last active July 19, 2025 20:40
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: πŸ˜„ :smile: πŸ˜† :laughing:
😊 :blush: πŸ˜ƒ :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
πŸ˜† :satisfied: 😁 :grin: πŸ˜‰ :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: πŸ˜€ :grinning:
πŸ˜— :kissing: πŸ˜™ :kissing_smiling_eyes: πŸ˜› :stuck_out_tongue:
@XenGi
XenGi / application.py
Last active June 6, 2019 19:00
Example code for new python projects.
#!/usr/bin/env python3
"""
Application - The way to make things right.
Usage:
application.py arg1 [--arg2 <key>]
application.py (-h | --help)
application.py --version