Skip to content

Commit 8cf4636

Browse files
committed
update schedule
1 parent c86507c commit 8cf4636

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

syllabus/schedule.csv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ date,question,keyword,conceptual,practical,social,activity
99
2023-10-03,What *is* git?,git structure,"what is a file system, how does git keep track of versions","find in bash, seeing git config, plumbing/porcelain commands","git workflows are conventions, git can be used different ways for different types of teams, two sets of ""rules""",examine git from multiple definitions and inspect objects
1010
2023-10-05,Why are these tools like this?,unix philosophy,"unix philosophy, debugging strategies",decision making for branches,"social advantages of shared mental model, different target users impact on design",discussion with minor code examples
1111
2023-10-12,How does git make a commit?,git internals,"pointers, design and abstraction, intermediate stages in git, what is the staging area","inspecting git objects, when hashes are unique or the same",conventions vs requirements,create a commit using plumbing commands
12-
2023-10-17,How can can I release and share my code?,git references,"pointers, git branches and tags","git branches, advanced fixing, semver and conventional commits, git tags, code releases","advantages of data that is both human and machine readable, social disadvantages of computational efficiency",make a tag and release
13-
2023-10-19,What is a commit number?,numbers,"hashes, number systems","git commit numbers, manual hashing with git",number systems are derived in culture,discussion and use hashing algorithm
12+
2023-10-19,How can can I release and share my code?,git references,"pointers, git branches and tags","git branches, advanced fixing, semver and conventional commits, git tags, code releases","advantages of data that is both human and machine readable, social disadvantages of computational efficiency",make a tag and release
13+
2023-10-17,What is a commit number?,numbers,"hashes, number systems","git commit numbers, manual hashing with git",number systems are derived in culture,discussion and use hashing algorithm
1414
2023-10-24,How can I automate things with bash?,bash scripting,"bash is a programming language, official docs, scripting/interactive","script files, man pages, bash variables, bash loops, bash conditionals, gh CLI",using automation to make collaboration easier,build a bash script that calculates a grade
1515
2023-10-26,How can I work on a remote server?,server,"server, hpc, large files","ssh, large files, bash head, grep, etc",hidden impacts of remote computation,log into a remote server and work with large files
1616
2023-10-31,What is an IDE?,IDE,IDE parts,compare and contrast IDEs,"collaboraiton features, developer communities",discussions and sharing IDE tips

syllabus/schedule.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,11 @@ This is the planned schedule, but is subject to change in order to adapt to how
9292

9393
```{code-cell} ipython
9494
import pandas as pd
95-
pd.read_csv('schedule.csv',index_col='date')
95+
pd.read_csv('schedule.csv',index_col='date').sort_index()
9696
```
9797

9898
## Tentative Lab schedule
9999

100100
```{code-cell} ipython
101-
pd.read_csv('labschedule.csv',index_col='date')
101+
pd.read_csv('labschedule.csv',index_col='date').sort_index()
102102
```

0 commit comments

Comments
 (0)