Until now, I have only made some witty attempts to write things online.
My name is Theis Eizo, a former student of astrophysics a Copenhagen University and student activist.
In May ’15 I brought this web site. In September ’15 I made a “For-This-Guy”-only dating site (it’s in danish and viewable here). But now I’m trying to make some more intelligent post. I’m not sure what it will end up with, but it’ll be a learning experience.
At WordPress, you can apparently post LaTeX-code:
And you can post formatted source code:
def is_prime(n):
if n % 2 == 0 and n > 2:
return False
for i in range(3, int(n**0.5)+1, 2):
if n % i == 0:
return False
return True
I’ll be using these features.
/T