Skip to content

Commit

Permalink
Publish office hours. Publish CS 261 week 1 recitation.
Browse files Browse the repository at this point in the history
  • Loading branch information
robwhess committed Oct 2, 2023
1 parent d04e3ee commit 4212ba2
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 45 deletions.
64 changes: 32 additions & 32 deletions src/data/courses/f23/cs261/recitations.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,43 +2,43 @@ const recitations = {
calendar: [
{
title: 'Week 0: No Recitation',
isCurrent: true,
notes: [
'No recitation this week.'
]
},

// {
// title: 'Week 1: CS 261 IT',
// resources: [
// {
// title: 'CS 261 IT Basics',
// link: 'https://docs.google.com/presentation/d/15J_2DPpmXAHfDtsQXM_Bkj8wsyq6mthf8AB4vFU24JQ/edit?usp=sharing',
// description: 'Presentation slides.'
// },
// {
// title: 'Recitation exercise worksheet',
// link: 'https://docs.google.com/document/d/1VIeZ-OQujN4vbrlEM2V72VtaRr7Tj63tssBLtS47_JQ/edit?usp=sharing'
// },
// {
// title: 'test.c',
// link: 'https://gist.githubusercontent.com/robwhess/a55e1360b474b910ab19b3af24cd5ae2/raw/938ddc0320bc962797c07d837477651722182146/test.c',
// description: 'This is the C program you\'ll have to download as part of the week\'s recitation exercise.'
// }
// ],
// readings: [
// {
// title: 'Beginner\'s Guide To SSH',
// link: 'https://youtu.be/qWKK_PNHnnA',
// description: 'This is a great, short video explaining what SSH is and how to use it. Give this a watch if you\'re not familiar with SSH and want to brush up.'
// },
// {
// title: 'The Linux command line for beginners',
// link: 'https://ubuntu.com/tutorials/command-line-for-beginners',
// description: 'If you need further help with using the terminal, this tutorial might be a good one to follow. It\'s written in the context of using a terminal directly on a Linux machine, but is still really relevant for what we need to do in this course.'
// }
// ]
// },
{
title: 'Week 1: CS 261 IT',
isCurrent: true,
resources: [
{
title: 'CS 261 IT Basics',
link: 'https://docs.google.com/presentation/d/15J_2DPpmXAHfDtsQXM_Bkj8wsyq6mthf8AB4vFU24JQ/edit?usp=sharing',
description: 'Presentation slides.'
},
{
title: 'Recitation exercise worksheet',
link: 'https://docs.google.com/document/d/1VIeZ-OQujN4vbrlEM2V72VtaRr7Tj63tssBLtS47_JQ/edit?usp=sharing'
},
{
title: 'test.c',
link: 'https://gist.githubusercontent.com/robwhess/a55e1360b474b910ab19b3af24cd5ae2/raw/938ddc0320bc962797c07d837477651722182146/test.c',
description: 'This is the C program you\'ll have to download as part of the week\'s recitation exercise.'
}
],
readings: [
{
title: 'Beginner\'s Guide To SSH',
link: 'https://youtu.be/qWKK_PNHnnA',
description: 'This is a great, short video explaining what SSH is and how to use it. Give this a watch if you\'re not familiar with SSH and want to brush up.'
},
{
title: 'The Linux command line for beginners',
link: 'https://ubuntu.com/tutorials/command-line-for-beginners',
description: 'If you need further help with using the terminal, this tutorial might be a good one to follow. It\'s written in the context of using a terminal directly on a Linux machine, but is still really relevant for what we need to do in this course.'
}
]
},

// {
// title: 'Week 2: Debugging with GDB and Valgrind',
Expand Down
23 changes: 10 additions & 13 deletions src/data/personal/officeHours.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,17 @@ const officeHours = [
{
hours: [
{
day: "TBD"
day: 'Wed.',
time: '11:05am–12:30pm',
location: 'Zoom',
videoConferenceLink: 'https://oregonstate.zoom.us/j/589990808?pwd=ViszY2Z4eGtoUDh4NEw0QWkzckJMQT09'
},
{
day: 'Thurs.',
time: '2:00–3:30am',
location: 'KEC 1109',
// videoConferenceLink: 'https://oregonstate.zoom.us/j/589990808?pwd=ViszY2Z4eGtoUDh4NEw0QWkzckJMQT09'
}
// {
// day: 'Wed.',
// time: '10:30am–12:00pm',
// location: 'KEC 1109',
// // videoConferenceLink: 'https://oregonstate.zoom.us/j/589990808?pwd=ViszY2Z4eGtoUDh4NEw0QWkzckJMQT09'
// },
// {
// day: 'Thurs.',
// time: '10:00–11:30am',
// location: 'Zoom',
// videoConferenceLink: 'https://oregonstate.zoom.us/j/589990808?pwd=ViszY2Z4eGtoUDh4NEw0QWkzckJMQT09'
// }
]
}
];
Expand Down

0 comments on commit 4212ba2

Please sign in to comment.