New post

This is the first official blog post on my blog site.

  • Most of this will just be test stuff
const { createServer } = require('node:http');

const hostname = '127.0.0.1';
const port = 3000;

const server = createServer((req, res) => {
  res.statusCode = 200;
  res.setHeader('Content-Type', 'text/plain');
  res.end('Hello World');
});

server.listen(port, hostname, () => {
  console.log(`Server running at http://${hostname}:${port}/`);
});

Test Image

!Image Description #TestTag


All Done!

Read more

Day 2 Post

Quote of the day

[!quote] I am of the opinion that my life belongs to the community, and as long as I live it is my privilege to do for it whatever I can. — Bernard Shaw

Today I have to work a double so I’m just gonna keep this one plain and simple.

On my break today I just went ahead and fixed a script that’s job was to copy images over to another folder. I still don’t know exactly why it wasn’t doing what it was intended to do but nonetheless it’s working now thanks to ChatGPT LOL. Other than that my day is just being filled with a lot of pizza tossing and music. It was suppose to be a busier day today but it hasn’t really been but we’ll see what its like when I got back in, in about 15 minutes…

Read more