To Heart

In the last week I have watched all of ToHeart and ToHeart ~remember my memories~. This is my mini review of the two series.

Read the rest of this entry »

Comments

I ordered a Nerdkit

This morning I finally got around to ordering the Nerdkit that I’d been drooling over for the last few weeks. After I’ve built all of the example projects, I plan to order some more switches (and probably some more LEDs) from Maplin and build a binary RPN calculator. Because, you know, that’d be way cool.

More on the Nerdkit when it arrives!

Comments

Hitori ja nai!

I’m working on a Hitori solver. I’ve nearly finished encoding the rules. I’ll then see about writing some kind of algorithm to solve the puzzle.

Tonight’s task was to write a graph structure to represent the game grid. One of the rules is that the un-blackened-out squares must form a connected graph. It was fairly easy. I’m using depth-first search from the first non-black node to determine whether the graph is connected or not. Recursion is nice :)

Comments

I, uh, renamed my blog…

`Brian’s Blog-o-Blog’ was getting old.  We’re now going to go with `Ultimately the Cheese proved to be Worthless’, which is more in line with domain name.  There’s no real reason behind it.

Reviews of Shakugan no Shana novels one and two should be written in the next few days, as should the write-up of my PHP image viewer.  I just need to find the time.

My graduation ceremony was absolutely awesome.  Whit Diffie was there.  I’ll write more when I get around to it.

Comments

Nogizaka Haruka no Himitsu – first impressions (plus some programming talk)

I just finished watching the first episode of Nogizaka Haruka no Himitsu (Haruka Nogizaka’s Secret) and I was moved enough to blog about it.

The show is a new Japanese anime that started airing a few days ago. I originally decided to watch it simply because of one my favourite voice actresses, Noto Mamiko is playing the main character. I then promptly forgot why I wanted to download it. While watching it, I had absolutely no idea what to expect from Haruka. When she started to speak, her voice hit me like a crossbow bolt through the heart. Bam! Instant win!

There is more to the show than just Noto Mamiko, of course. It’s a story about the most popular girl in school being a closet hardcore anime fan (or otaku). She gets found out in the very first episode by the male lead, which starts them down the path of romance. Exactly the kind of show I like to watch.

Moving on from anime, I’ve been working on some programming `stuff’ lately. I’ve been teaching myself PHP, for starters. The problem I always have with learning new things is deciding what to do with them. Sure, I could make a nice PHP powered website, but what should it do? Perhaps I should start writing down all of the ideas that I come up with, to help me through uninspired times…

Anyway, I made a nice PHP image viewer. It lets you browse through a directory hierarchy and view all the images in a directory one at a time, with previous and next buttons. There are a bunch of other options on it as well, but they’re not particularly interesting to write about. Once I’ve finished it off (there are just a couple of features left that I haven’t implemented) I’ll upload it to my code section with a full write-up.

I’ve also started learning C# properly. I learnt some bits of it during my third year Computer Games Technology course, but then just left it. I didn’t learn it very well, either, since we were mostly focusing on XNA. So, I bought myself a copy of C# Precisely and started reading. I didn’t get very far, as I discovered that I didn’t have the SDK installed, so I couldn’t even get the first example program working.

I’m going down to Surrey tomorrow for my graduation ceremony, which is on Wednesday, so I won’t be doing anymore programming until Thursday. Then I’ll attempt to dive into some C#! (Spoiler for the future: Brian attempts to carry on learning C# but is constantly hampered by his family asking him to make little changes to websites, fix their Microsoft Word documents, go up to Tescos to help with the shopping and play Tibia with them. He spends the day looking forward to when they leave him alone for nearly two weeks at the end of the month.)

Oh, and a little side note, I’m taking the first two Shakugan no Shana novels with me down to Feltham/Egham. If I feel like it, I might write a little review of them when I get back :)

Comments

Website finally live!

After quite a lot of tweaking, I’ve finally uploaded my styled website to my main domain. The site now uses PHP, CSS and HTML 4.01 Strict. The whole thing validates, and I’ve put those little W3C validator buttons on there as proof. Also, they make it a lot easier for me to check whether a page validates or not!

 

I’ve also released a new program! If you check in the ‘Code’ section, you’ll find a C++ wordcount program for Windows. Having used Linux for three years at university, I got used to certain features that I wasn’t happy to live without. Wordcount is one of those! It was good C++ practice, and it taught me qute a few useful things.

 

In other news, I created a web questionnaire for the <a href=”http://www.flua.org.uk”>Fen Line Users Association</a>, whose website I maintain. The questionnaire hasn’t gone live yet, but it will before too much longer. It takes people’s answers, escapes any control characters then dumps them in a MySQL database. It’s not exactly a perfect use of a database, but it taught me about using PHP with MySQL, two parts of LAMP. I have no idea whether they’re using Apache on Linux, though, but it was cool all the same.

Comments (13)

Upgrades

It’s been about a month since my last exam. I think. Time has gone either quickly or slowly. I’m not really sure anymore. It seems a long time ago, but if I think about it – or check my diary, which I just did – then it’s been just under four weeks.

Anyway.

I’ve been learning some CSS recently. I did have a web technologies course in my first year, but it wasn’t very good. The normal lecturer didn’t take the course, for some reason, and the lecturer who ended up teaching the course had about two days notice to learn the material. Don’t get me wrong, I really enjoyed her lectures, but it somewhat put me off the whole ‘web’ thing ;)

Point is, I now have some basic CSS knowledge to go with my basic PHP and HTML knowledge. I have used this knowledge to upgrade my website. I’m not sure that everything is working yet, so I’ve put it up on a subdomain – test.worthlesscheese.com. Once I’m awake enough to give it a proper test (that’d be after I’ve slept, I would think) I’ll finally upload it to the main domain.

The site is still rather lacking in content, but, darnit, it’s finally got some style!

Comments

Exam season!

For what is probably the last time in my life, I have reached the yearly exam season. This time, though, something has changed.

Read the rest of this entry »

Comments (2)

Design – a webcomic auto-update system

Two of my friends plan on starting webcomics in a few months time. Neither of them have reliable Internet access, so they both need to keep a buffer of comics on the server ahead of time. When the comic is due to be updated, the next stip from the buffer needs to be shown on the homepage. Then, when they next get online, they can top the buffer up with new strips.

As ‘the computer guy’, it’s up to me to create a system to allow them to do this.

Read the rest of this entry »

Comments

Starting to come together

I’ve done a bit more work on my website, now. It’s still very much a work in progress, but at least I’ve created the various sections that I plan on writing. I’ve also uploaded a game I wrote – Animal, Vegetable, Mineral, which can be found in the code section. It’s based on an old Amstrad game that I used to play, which in turn was based on 20 questions. The code is fairly basic -it runs in a command line, the user has to decide whether an object should be prefixed with ‘a’ or ‘an’ (if the user forgets then it isn’t handled) and it only knows a handfull of animals, vegetables and minerals- but it’s still a pretty fun little game.

Back to the website, the sections I’ve created are Code and Guides, to suppliment the About, Blog and Photo Gallery sections, all of which are fairly standard.

The Code section is where programs I’ve written will go. The aforementioned AVM game lives in the Code section, as will the C++ wordcount tool I wrote, when I get around to uploading it. Revision has to take priority over working on my website. Eventually, I plan on uploading my final year project to the Code section. It needs a little more work before I release it to the world, though.

The Guides section is where I plan on writing short intro guides to various technical things. Take LaTeX, for example. My University department recommends the use of LaTeX for both second and third year projects, but doesn’t give us any pointers as to learning it. Not that learning it is that difficult, but I feel that the guides I used could have been a bit more helpful in places. The guide I plan on writing will basically say “This is what you need to install, use this program and not that one, this is what you need to do, this is what this error message means.” It won’t be a replacement for more fully featured guides, such as the LaTeX WikiBook, but it will act as a good primer for newbies, I hope.

More: Some stuff about AVM

Read the rest of this entry »

Comments

« Previous Page« Previous entries « Previous Page · Next Page » Next entries »Next Page »