-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e10df81
commit 4ff2326
Showing
18 changed files
with
2,297 additions
and
14 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,185 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<meta name="personal webpage" content=""> | ||
<meta name="anupam das" content=""> | ||
<link rel="shortcut icon" href="assets/images/favicon.ico" type="image/x-icon"> | ||
<link rel="icon" href="assets/images/favicon.ico" type="image/x-icon"> | ||
|
||
<title>Anupam Das: Personal Webpage</title> | ||
<link href="/assets/css/bootstrap.min.css" rel="stylesheet"> | ||
|
||
<!-- CSS to customize styles --> | ||
<link href="/assets/css/custom.css" rel="stylesheet"> | ||
<script type="text/javascript" language="javascript" src="/assets/js/jquery-3.6.4.min.js"></script> | ||
<script src="/assets/js/popper.min.js"></script> | ||
<script src="/assets/js/bootstrap.min.js"></script> | ||
|
||
<script type="text/javascript" charset="utf-8"> | ||
if (navigator.userAgent.match(/IEMobile\/10\.0/)) { | ||
var msViewportStyle = document.createElement("style"); | ||
msViewportStyle.appendChild( | ||
document.createTextNode( | ||
"@-ms-viewport{width:auto!important}" | ||
) | ||
); | ||
document.getElementsByTagName("head")[0]. | ||
appendChild(msViewportStyle); | ||
} | ||
</script> | ||
|
||
</head> | ||
|
||
<body> | ||
<header> | ||
<nav class="navbar navbar-expand-sm navbar-dark fixed-top bg-dark"> | ||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
<span class="navbar-brand d-flex flex-fill" id="brand-span"><a class="nav-link" href="https://www.anupamdas.org" style="color:grey">Anupam Das</a></span> | ||
<div class="collapse navbar-collapse" id="navbarCollapse"> | ||
<ul class="navbar-nav mr-auto"> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="/research.html">Research</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="/publication.html">Publications</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="/teaching.html">Teaching</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="/cv.html">Curriculum vitae</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="/students.html">Students</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="/#contact">Contact</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</nav> | ||
</header> | ||
|
||
<main role="main" class="container"> | ||
<br> | ||
|
||
<div class="container"> | ||
|
||
<h2>CSC 433 - Privacy in the Digital Age, Spring 2025</h2> | ||
|
||
</div> | ||
|
||
<div class="container"> | ||
<ul class="nav nav-tabs"> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="/teaching/csc-433-sp2025/overview.html">Overview</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="/teaching/csc-433-sp2025/syllabus.html">Syllabus</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="/teaching/csc-433-sp2025/schedule.html">Schedule</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link active" href="/teaching/csc-433-sp2025/assignment.html">Assignments</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="/teaching/csc-433-sp2025/project.html">Project</a> | ||
</li> | ||
</ul> | ||
</div> | ||
|
||
<br> | ||
|
||
<!--<h3 id="assignments">Assignments</h3>--> | ||
|
||
<p>** Dates are subject to change as the semester evolves.</p> | ||
|
||
<div class="col-md-10"> | ||
<table class="table table-striped table-bordered"> | ||
<thead> | ||
<tr> | ||
<th>Assignment</th> | ||
<th>Release date</th> | ||
<th>Due date</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td><a href="https://moodle-courses2425.wolfware.ncsu.edu/course/view.php?id=7104">HW1</a></td> | ||
<td>01/17</td> | ||
<td>01/30</td> | ||
</tr> | ||
<tr> | ||
<td><a href="https://moodle-courses2425.wolfware.ncsu.edu/course/view.php?id=7104">HW2</a></td> | ||
<td>01/31</td> | ||
<td>02/13</td> | ||
</tr> | ||
<tr> | ||
<td><a href="https://moodle-courses2425.wolfware.ncsu.edu/course/view.php?id=7104">HW3</a></td> | ||
<td>02/14</td> | ||
<td>03/03</td> | ||
</tr> | ||
<tr> | ||
<td><a href="https://moodle-courses2425.wolfware.ncsu.edu/course/view.php?id=7104">HW4</a></td> | ||
<td>03/19</td> | ||
<td>04/01</td> | ||
</tr> | ||
<tr> | ||
<td><a href="https://moodle-courses2425.wolfware.ncsu.edu/course/view.php?id=7104">HW5</a></td> | ||
<td>04/02</td> | ||
<td>04/15</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
|
||
|
||
|
||
</main> | ||
|
||
|
||
<footer class="footer"> | ||
<div class="container"> | ||
<span style="float:left;" class="text-muted small">© 2018-2025 Anupam Das</span> | ||
<span style="float:right;" class="text-muted small">This page is hosted on GitHub, please see GitHub's privacy statement | ||
<a href="https://help.github.com/articles/github-privacy-statement/">here</a>.</span> | ||
</div> | ||
</footer> | ||
|
||
<script> | ||
$(function () { | ||
$('[data-toggle="tooltip"]').tooltip() | ||
}) | ||
$('.navbar-nav>li>a').on('click', function(){ | ||
$('.navbar-collapse').collapse('hide'); | ||
}); | ||
// Modified from https://stackoverflow.com/a/49331692 | ||
var divId; | ||
$('.nav-link').click(function(){ | ||
divId = $(this).attr('href'); | ||
$('html, body').animate({ | ||
scrollTop: $(divId).offset().top - 65 | ||
}, 100); | ||
}); | ||
</script> | ||
|
||
|
||
<!-- Google Analytics --> | ||
<script> | ||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | ||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | ||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) | ||
})(window,document,'script','//www.google-analytics.com/analytics.js','ga'); | ||
|
||
ga('create', 'UA-52694726-1', 'auto'); | ||
ga('send', 'pageview'); | ||
</script> | ||
<!-- Google Analytics --> | ||
|
||
</body> | ||
</html> |
Oops, something went wrong.