Tag Archives: java

Updates and Android app

I’ve made a bunch of updates to the site.

  • First of all, I made the header smaller, so there’s more screenspace
  • I updated my photo on the about page to a more recent version
  • I organized the programming page to be by date, with the most recent at top
  • I added my first solo Android app to the site. You can view the details here

There reason I say firstĀ solo app is because I already have an app on the Google Play store which I made with a friend of mine. I want to make some updates to it before adding it to this site billigastemobilabonnemang.nu.

I have a bunch of other things in the works, so I will add them here as they develop.

Posted in Programming, Updates | Tagged , | Leave a comment | 11,350 views

Reversi

In my Artifical Intelligence class, we were asked to create two multiplayer games using the MiniMax algorithm. This algorithm has a computer player choose intelligent moves to play based off the current game state. The games we made weren’t very fun and highly unusual, so I decided to implement the classic game of Reversi to test out the algorithm.

Continue reading

Posted in Programming | Tagged , , , | Leave a comment | 2,781 views

Snake Game and AI Search

For my fourth year Artificial Intelligence course, our first assignment was to implement the classic game Snake. The hard part was then to implement three different search algorithms so the snake will find the food by itself. The three search algorithms were Breadth First Search, Depth First Search, and A* Search.

Continue reading

Posted in Programming | Tagged , , , | Leave a comment | 3,050 views