Skip to content

Commit 1b6406c

Browse files
committed
added syntax highlighting and copied over images for image support
1 parent 3508419 commit 1b6406c

25 files changed

+426
-58
lines changed

content/Cronjobs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ Here is a basic rundown-
55
- crontab is the tab of all cronjobs
66
- run `crontab -e` it will ask for setup, use your favorite editor
77

8-
```
8+
```bash
99
export EDITOR=nvim
1010
```
1111
now run `crontab -e` again and you should be able to access the file
12-
```
12+
```bash
1313
# Add this line to your crontab file to run the backup every day at 2 AM
1414
0 2 * * * rsync -ah --info=progress2 /path/to/source /path/to/destination
1515
```

content/thing.png

Loading

dist/articles/Cronjobs.html

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
<head>
55
<meta charset="UTF-8">
66
<link rel="stylesheet" href="../style.css">
7-
<title>Cronjobs.md</title>
7+
<link rel="stylesheet" href="../prism.css">
8+
<title>Cronjobs</title>
89
</head>
910
<body class="container">
1011
<a href='../index.html'>home</a>
11-
<h1> Cronjobs.md </h1>
12+
<script src="../prism.js"></script>
13+
<h1> Cronjobs </h1>
1214
<hr>
1315
<blockquote>
1416
<p>running stuff in the background at a specified time is awesome</p>
@@ -19,10 +21,10 @@ <h1> Cronjobs.md </h1>
1921
<li>crontab is the tab of all cronjobs</li>
2022
<li>run <code>crontab -e</code> it will ask for setup, use your favorite editor</li>
2123
</ul>
22-
<pre><code>export EDITOR=nvim
24+
<pre><code class="language-bash">export EDITOR=nvim
2325
</code></pre>
2426
<p>now run <code>crontab -e</code> again and you should be able to access the file</p>
25-
<pre><code># Add this line to your crontab file to run the backup every day at 2 AM
27+
<pre><code class="language-bash"># Add this line to your crontab file to run the backup every day at 2 AM
2628
0 2 * * * rsync -ah --info=progress2 /path/to/source /path/to/destination
2729
</code></pre>
2830
<p>those asterics are wildcards! It means run it everytime<br />

dist/articles/Debugging C++ Programs with GDB.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
<head>
55
<meta charset="UTF-8">
66
<link rel="stylesheet" href="../style.css">
7-
<title>Debugging C++ Programs with GDB.md</title>
7+
<link rel="stylesheet" href="../prism.css">
8+
<title>Debugging C++ Programs with GDB</title>
89
</head>
910
<body class="container">
1011
<a href='../index.html'>home</a>
11-
<h1> Debugging C++ Programs with GDB.md </h1>
12+
<script src="../prism.js"></script>
13+
<h1> Debugging C++ Programs with GDB </h1>
1214
<hr>
1315
<p>If you don’t use GDB but program in C/C++, you are missing out on a powerful debugging tool. Here’s a quick 5-minute tutorial to get you started.</p>
1416
<h2>Step 1: Compile with Debug Symbols</h2>

dist/articles/Every Programmer Should Watch Conference Talks on YouTube.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
<head>
55
<meta charset="UTF-8">
66
<link rel="stylesheet" href="../style.css">
7-
<title>Every Programmer Should Watch Conference Talks on YouTube.md</title>
7+
<link rel="stylesheet" href="../prism.css">
8+
<title>Every Programmer Should Watch Conference Talks on YouTube</title>
89
</head>
910
<body class="container">
1011
<a href='../index.html'>home</a>
11-
<h1> Every Programmer Should Watch Conference Talks on YouTube.md </h1>
12+
<script src="../prism.js"></script>
13+
<h1> Every Programmer Should Watch Conference Talks on YouTube </h1>
1214
<hr>
1315
<p>I was going to write a longer article to convince everyone to watch the conferences but Its much better to give a summary of my favorite talks and hopefully that will be persuasive enough~</p>
1416
<h3><a href="https://www.youtube.com/watch?v=o_AIw9bGogo">“The Tragedy of systemd” - Benno Rice</a></h3>

dist/articles/Makefiles:).html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
<head>
55
<meta charset="UTF-8">
66
<link rel="stylesheet" href="../style.css">
7-
<title>Makefiles:).md</title>
7+
<link rel="stylesheet" href="../prism.css">
8+
<title>Makefiles:)</title>
89
</head>
910
<body class="container">
1011
<a href='../index.html'>home</a>
11-
<h1> Makefiles:).md </h1>
12+
<script src="../prism.js"></script>
13+
<h1> Makefiles:) </h1>
1214
<hr>
1315
<h2>Quick and Easy Makefile Guide</h2>
1416
<p>Begin by crafting a file named <code>Makefile</code> – the control center for your project’s build rules.</p>

dist/articles/On Logging.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
<head>
55
<meta charset="UTF-8">
66
<link rel="stylesheet" href="../style.css">
7-
<title>On Logging.md</title>
7+
<link rel="stylesheet" href="../prism.css">
8+
<title>On Logging</title>
89
</head>
910
<body class="container">
1011
<a href='../index.html'>home</a>
11-
<h1> On Logging.md </h1>
12+
<script src="../prism.js"></script>
13+
<h1> On Logging </h1>
1214
<hr>
1315
<blockquote>
1416
<p>just log everything </p>

dist/articles/deletethis.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
<head>
55
<meta charset="UTF-8">
66
<link rel="stylesheet" href="../style.css">
7-
<title>deletethis.md</title>
7+
<link rel="stylesheet" href="../prism.css">
8+
<title>deletethis</title>
89
</head>
910
<body class="container">
1011
<a href='../index.html'>home</a>
11-
<h1> deletethis.md </h1>
12+
<script src="../prism.js"></script>
13+
<h1> deletethis </h1>
1214
<hr>
1315
<p>we can go over this
1416
we can move back </p>

dist/articles/file_for_testing2.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
<head>
55
<meta charset="UTF-8">
66
<link rel="stylesheet" href="../style.css">
7-
<title>file_for_testing2.md</title>
7+
<link rel="stylesheet" href="../prism.css">
8+
<title>file_for_testing2</title>
89
</head>
910
<body class="container">
1011
<a href='../index.html'>home</a>
11-
<h1> file_for_testing2.md </h1>
12+
<script src="../prism.js"></script>
13+
<h1> file_for_testing2 </h1>
1214
<hr>
1315
<p>sometimes i think about how some feature is working</p>
1416

dist/articles/image.html

Lines changed: 4 additions & 2 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)