Last active
November 22, 2020 19:41
-
-
Save askedrelic/871b07074f890d48e7f95b5b97f66344 to your computer and use it in GitHub Desktop.
Revisions
-
askedrelic revised this gist
Nov 22, 2020 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,2 +1,3 @@ # 90 days, scratch format, +/- 5days # py3 + arrow 0.17 compat python -c "import arrow; dates = [arrow.now().shift(days=x-5).format('dddd M/D/YY') for x in range(100)]; [print(x) for x in dates]" -
askedrelic revised this gist
Jan 2, 2018 . 2 changed files with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes.File renamed without changes. -
askedrelic renamed this gist
Jan 2, 2018 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
askedrelic revised this gist
Jan 2, 2018 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,2 @@ # 90 days, scratch format, +/- 5days python -c "from __future__ import print_function; import arrow; dates = [arrow.now().replace(days=x-5).format('dddd M/D/YY') for x in range(100)]; [print(x) for x in dates]" -
askedrelic revised this gist
Aug 15, 2017 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ import arrow; dates = [arrow.now().replace(days=x).format('dddd M/D/YY') for x in range(90)] for x in dates: print x -
askedrelic created this gist
Aug 15, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ import arrow dates = [arrow.now().replace(days=x).format('YYYY-MM-DD') for x in range(90)] for x in dates: print x 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ python -c "from __future__ import print_function; import arrow; dates = [arrow.now().replace(days=x).format('YYYY-MM-DD') for x in range(90)]; [print(x) for x in dates]"