Home Blog

Hello World

Why this post?

Two things I'd like to do:

This blog will be focused on technical stuff, so ideally this blog should be able to support things like equations, diagrams, pictures, and code.

Code

Here are some code snippets.

function fancyAlert(arg) {
  if (arg) {
    $.facebox({ div: '#foo' })
  }
}
def squares(max_num):
  return [i ** 2 for i in range(max_num)]  
#include <iostream>
using namespace std;

// Following function that takes two parameters 'x' and 'y'
// as input and returns max of two input numbers
int max(int x, int y)
{
    if (x > y)
        return x;
    else
        return y;
}

// main function that doesn't receive any parameter and
// returns integer
int main()
{
    int a = 10, b = 20;

    // Calling above function to find max of 'a' and 'b'
    int m = max(a, b);

    cout << "m is " << m;
    return 0;
}

Math

Inline math expression R\mathcal{R}, and 2+2=42 + 2 = 4.

Block statement

WMn×m(R) W \in \mathcal{M}_{n \times m}(\mathbb{R})

Here is an example theorem and proof:

Example theorem:

i=0n=n(n+1)2 \sum_{i=0}^{n} = \frac{n(n + 1)}{2}

The proof is by simple induction.

Media

Images

Test alt
My profile picture

Videos

Caption of a video

TODO

Here is a public changelog of some things I'd like to improve about this site: