Game Dev, Graphics, Physics, Software Engineering, and more!
Home
 

February, 2010

Moved blog over to joomla

So i moved all of my blog articles over to joomla. At first it felt joomla was pretty limited, but apparently I just didn’t know how to do it. I’ll have to move my blog roll over too which will be way better because then I can have a single link for the blog roll …Continue reading

Projects in the future

I realize that I’ve attempted to blog about certain things, then failed to deliver. I’ve been rather busy lately. Usually I’ll get on a kick to do something, then get caught up in something else. I’m sorry about that. So, for now, I’ve decided to NOT continue the multi-threading stuff. Instead, I’ll be posting my …Continue reading

Indie Game Team

It has been a long time since I’ve updated my blog, so I thought I should update it. No one probably reads it anyways, but I’ll just keep blogging anyways. So I am currently developing a game (xbla probably) with a team of people. We have 2 designers, 2 engineers (me included), & 2 artists. …Continue reading

Missing iPhone icons

If you are missing icons on your springboard, using ssh, navigate yourself over to /var/mobile/Library/Preferences and delete com.apple.springboard.plist. Respring your iPhone by typing killall SpringBoard into SSH. Problem solved.

What is endianness?

What am I doing?

I’ve decided to keep people informed, if anyone actually cares besides me, as to what I’m doing. Mainly it’s to keep me focused and to keep me learning. So what am I doing / learning right now? 1) Linkers and Loaders, libraries 2) Multithreading, I’ve learned the techniques, but I’ve never really used them in …Continue reading

Beginning win32 multithreading

In an attempt to understand windows multithreading a little more thoroughly, I’ve decided to write about the simple concepts associated with multithreading. This is mainly to clarify it in my own head but maybe it will help someone else out too. If any of this information is wrong, don’t yell at me.Please just post a …Continue reading

Notes on library files

A few notes regarding library files. Shared library: Not the same as a dynamic library. Only used in linux. A .so file extension. Can be shared across processes, not loaded into a process’s address space, loaded globally. (i believe) Note: It is loaded at application startup. Static library: Also known as an object library, contains …Continue reading

The hidden default constructor in C++

I think I’m going to start posting about general C++ stuff too and since C++ is my favorite language (aside from assembly) I thought it would be interesting to post obscure C++ things that I find. Today I’m going to talk about a blog post that I found a while ago regarding constructors. The fellow …Continue reading

Intellipoint – restore maximize toggle app

I bought a new mouse (Microsoft) but the Intellipoint software doesn’t allow you to perform a “Restore / Maximize” toggle. You can either restore it, or maximize the window, but not toggle. So I made a very simple app that performs the toggle. Just set Intellipoint to execute the program and it will maximize or …Continue reading

Useful links / blog roll

If you’ll look to the right side I put up a “useful links” section. It contains a lot of valuable links to current research and useful game dev sites. I’ll be updating it as time goes on. Also, for those still looking for a game dev job, I stumbled across this guy’s blog posting regarding …Continue reading

Too many white papers, too little time

I’ve been hearing quite a bit aboutO3Dfrom Google, but I’ve just sorta blown it off as another Google thing. Kind of like their Chrome Browser which I wasn’t too fond of. But I actually got a chance to check it out and I must say that I’m impressed. This demo shows some interesting bits:Beach Demo …Continue reading

Linux Documentation

I’ve been using linux for years now, mainly redhat/fedora and now ubuntu. But a long time ago I found some really good linux documentation (besides the documentation installed /w linux.) It is located here:http://www.redhat.com/docs/manuals/enterprise/ It says it’s for enterprise, but it mostly doesn’t matter.

My Current Status

Woohoo, I finally am able to use ICS through my laptop… that’s a big achievement for me… a couple of my computers haven’t been able to access the internet in a long time.. But I finally figured it all out.. Now I can use a third monitor with Synergy and actually make it be productive. …Continue reading

A Few Code Snippets

Periodically I’ll stumble across a small but useful piece of code. I have a small list right now, but as I stumble across them, I’ll post them here. Note: I do not take credit for any of this code. Pausing your application __asm int 3; or __debugbreak(); Convert any data type to a std::string object …Continue reading

Top