Skip to content

Instantly share code, notes, and snippets.

@maximus242
maximus242 / gist:440333c988063af1978e215bebc9479a
Created January 1, 2026 22:23
Body Double Privacy Policy
# Body Double Privacy Policy
**Last Updated: January 2026**
## Overview
Body Double is a productivity companion app that helps users focus on their tasks.
## Data Collection
- **We do not collect personal data.** All data stays on your device.
@maximus242
maximus242 / lzss.py
Created November 13, 2020 13:11 — forked from nucular/lzss.py
Implementation of the Lempel–Ziv–Storer–Szymanski algorithm in Python
"""
Implementation of the Lempel–Ziv–Storer–Szymanski algorithm, ported from the
C implementation by Haruhiko Okumura
https://oku.edu.mie-u.ac.jp/~okumura/compression/lzss.c
Public Domain
"""
class LZSSBase(object):
def __init__(self, infile, outfile, EI=11, EJ=4, P=1, N=0, F=0, rless=0, init_chr=b' '):
self.infile = infile
@maximus242
maximus242 / components.my-component.js
Created October 13, 2019 17:26
Samples For Actions
import Ember from 'ember';
export default Ember.Component.extend({
actions: {
popup(val) {
this.get('myPopup')(val);
}
}
});