aaron-kelley.net

My little corner of the Internet

Archive for the ‘Development’ Category

Getting Started with JNI and C++ under Windows

This is a step-by-step guide to getting started at using JNI with C++ under Windows.

(more…)

Building a DLL in Microsoft Visual C++ 2005 Express Edition

For class, I need to take some C++ code and compile it to a .dll file to use with JNI. I have MS Visual C++ 2005 Express (hey, it was free!). Searching around online, I found plenty of things that implied that it was possible to build a DLL with this version of Visual C++, but no specific instructions on how to do it. I actually found some forum posts by other people who were confused like me. Thus this post.

(more…)

Floyd–Warshall Flash

I finished my first graduate course earlier this summer. Part of the course was this, to implement a graph algorithm in ActionScript. I chose the Floyd–Warshall algorithm and I thought I’d post what I came up with.

(more…)