I’ve finally gotten around to setting up my personal website! I’ve been meaning to do this for a while now, but I’ve been busy with other projects. I’m planning to use this site to post about my projects, and maybe some tutorials or guides on things I’ve learned.

I’m using Jekyll to build this site, and I’m hosting it on a DigitalOcean droplet using NGINX. It uses some custom CSS (which took me much longer to write than I’d like to admit), and proud to report absolutely no JavaScript!

Anyway, expect more posts soon. I’m planning to write about some of the random things and projects I find interesting.

(oh, p.s. - I’m super proud of these code blocks)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using Microsoft.EntityFrameworkCore;

var builder = WebApplication.CreateBuilder(args);

builder.Services.AddControllers();
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();

var app = builder.Build();

if (app.Environment.IsDevelopment())
{
    app.UseSwagger();
    app.UseSwaggerUI();
}

app.UseHttpsRedirection();

app.UseAuthorization();

app.MapControllers();

app.Run();
1
2
3
4
import requests

response = requests.get('https://api.github.com')
print(response.json())