Skip to content

Instantly share code, notes, and snippets.

View bbc2's full-sized avatar

Bertrand Bonnefoy-Claudet bbc2

View GitHub Profile
@russell
russell / .mbsyncrc
Created September 17, 2013 00:16
ISync & Dovecot Configuration
IMAPAccount gmail-account
Host imap.gmail.com
User user@gmail.com
UseIMAPS yes
CertificateFile /etc/ssl/certs/ca-certificates.crt
Pass "secret"
IMAPStore gmail-store
Account gmail-account
@bbc2
bbc2 / begin.v
Created December 10, 2014 15:17
Proofs on addition and multiplication in Coq
Fixpoint add (x:nat) (y:nat) : nat :=
match x with
| 0 => y
| S z => S (add z y)
end.
Lemma add_0 : forall x, add x 0 = x.
intros x.
induction x.
- reflexivity.
@twolfson
twolfson / .gitignore
Last active May 18, 2016 09:16
Proof of concept to require trailing commas in `flake8`
*.pyc
build/
dist/
flake8_commas.egg-info
flake8_commas/