-
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
Bennett Wiredu
authored and
Bennett Wiredu
committed
Mar 20, 2024
1 parent
e37c208
commit 72725a5
Showing
2 changed files
with
33 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,21 @@ | ||
hi | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>Bennett Wiredu</title> | ||
<meta charset="utf-8"/> | ||
<meta name="description" content="Bennett Wiredu's personal website"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" descr/> | ||
<link rel="stylesheet" type="text/css" href="styles.css"/> | ||
</head> | ||
<body> | ||
<noscrpt>Enable JavaScript to use this page!</noscrpt> | ||
<section> | ||
<h3>To-Read</h3> | ||
<div id="reading"></div> | ||
</section> | ||
<section> | ||
<h3>To-Watch</h3> | ||
<div id="watching"></div> | ||
</section> | ||
</body> | ||
</html> |
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,12 @@ | ||
const reading = [ | ||
["Designing Data-Intensive Applications", "https://www.oreilly.com/library/view/designing-data-intensive-applications/9781491903063/"], | ||
["Algorithmica - Algorithms for Modern Hardware", "https://en.algorithmica.org/hpc/"], | ||
["Linux Programming Interface", "https://man7.org/tlpi/"], | ||
["Operating Systems: Three Easy Pieces", "https://pages.cs.wisc.edu/~remzi/OSTEP/"], | ||
] | ||
|
||
const watching = [ | ||
["Performance Engineering of Software Systems", "https://ocw.mit.edu/courses/6-172-performance-engineering-of-software-systems-fall-2018/"], | ||
["Programming Parallel Computers", "https://www.youtube.com/@JukkaSuomela/playlists"], | ||
["Performance Ninja Class", "https://github.com/dendibakh/perf-ninja"], | ||
] |