Skip to content

Instantly share code, notes, and snippets.

View nonamephysics's full-sized avatar

Marat Zakirov nonamephysics

View GitHub Profile
@wichopy
wichopy / checkbox_extract_script.bas
Created March 19, 2017 15:28
Script to extract data from excel checkboxes.
Sub CheckboxLoop()
'Using this as a start:
'PURPOSE: Loop through each Form Control Checkbox on the ActiveSheet
'SOURCE: www.TheSpreadsheetGuru.com/the-code-vault
Dim cb As Shape
Dim i As Integer
@urschrei
urschrei / parseml.py
Last active August 18, 2024 03:03
Extract attachments from EML files in the current dir, and write them to the output subdir
#!/usr/bin/env python
"""
2020 update:
- More iterators, fewer lists
- Python 3 compatible
- Processes files in parallel
(one thread per CPU, but that's not really how it works)
"""