Skip to content

Commit

Permalink
Update scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonidBeynenson committed Apr 15, 2022
1 parent 4bc7eb9 commit 9741561
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generate_time_table.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from datetime import date, timedelta
sdate = date(2021, 4, 1)
edate = date(2021, 12, 31)
sdate = date(2022, 1, 1)
edate = date(2022, 12, 31)
delta = edate - sdate
for i in range(delta.days + 1):
cur_date = sdate + timedelta(days=i)
Expand Down
3 changes: 3 additions & 0 deletions open_explorer
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

/bin/cygstart --explore $(/bin/cygpath "${1:-.}")
1 change: 1 addition & 0 deletions open_explorer_here
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cygstart.exe $(cygpath -a -w .)

0 comments on commit 9741561

Please sign in to comment.