the web site of chrg

Welcome to my site.

May you appreciate some tea?

Heading test

Test 2

Test 3

Images

some random image i found

lists

  1. how about numeric?
  2. mmmhm
    1. maybe

code time!

here is how the Q_rsqrt function is implemented:

#include <stdio.h>

float Q_rsqrt( float number )
{
    printf("%d\n", M_PI);
    long i;
    float x2, y;
    const float threehalfs = 1.5F;

    x2 = number * 0.5F;
    y  = number;
    i  = * ( long * ) &y;                       // evil floating point bit level hacking
    i  = 0x5f3759df - ( i >> 1 );               // what the fuck?
    y  = * ( float * ) &i;
    y  = y * ( threehalfs - ( x2 * y * y ) );   // 1st iteration
//  y  = y * ( threehalfs - ( x2 * y * y ) );   // 2nd iteration, this can be removed

    return y;
}

this is a citation. is it by mark twain, walt witman, john homestuck, or someone else? pdeijsdpjsdgjsdgpjsdpgoj adpfjdpfodfpjo markDown(); is_maddening(really);

– myself

smaller

asdofnjaosfj

adfpoadf


more tests

have i tried underlining? or bold?

strong emphasis

tables!

copied from pandoc:

Demonstration of simple table syntax.
Right Left Center Default
12 12 12 12
123 123 123 123
1 1 1 1

maths

If x2+y2=1x^2 + y^2 = 1, then y=1x2y = \sqrt{1 - x^2}. Correct? 1

x2+y2=1x^2 + y^2 = 1

y=1x2y = \sqrt{1 - x^2}


  1. maybe yes, maybe not.↩︎