This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Require Import Omega. | |
Lemma lt_2xp1 : forall x i : nat, i < x -> 1 + 2 * i < x + x. | |
Proof. | |
intros; omega. | |
Qed. | |
Lemma lt_2xp : forall x i : nat, i < x -> 2 * i < x + x. | |
Proof. | |
intros; omega. | |
Qed. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
#Download all sluggy freelance images | |
import urllib | |
mage = int(raw_input('image to download: ')) | |
mage += 1 | |
lett = 'a' | |
imagetype = '.gif' | |
filename = "%s%s.gif" % (mage, lett) |