Home First post on my website!
Post
Cancel

First post on my website!

Test blog

I am writing this to check out some features.

Markdown stuff

I already know how to use lists and stuff:

  • a
  • b
  • c

But how do I use MathJax? \((\forall f,b \in E (f \text{ is a forward edge} \land b \text{ is a backward edge} \land f \text{ contains a residual capacity } \land b \text{ is non-empty})\)

Code

Since I am a CS major, I need to be able to put in snippets both inline and as a block quote. Look at this C!

1
2
3
4
5
6
7
8
9
#include <stdio.h>
#include "linked-list.h"

int main(int argc, char** argv) {
	List* ll = new_LL_blank_head();
	for(int i=1; i<argc; ++i) insert(ll, argv[i]);
	printf(LL_to_string(ll));
	return 0;
}
This post is licensed under CC BY 4.0 by the author.